MAX_PCI_DEVICES 64 is not enough on my system (even though lspci only shows 25 device...
[mplayer/greg.git] / configure
blobbbd26dc69dd762450bfc9e59c892d2196ea437bc
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 "ARMv5TE (Enhanced DSP Extensions)"
2444 if test $_armv5te = "auto" ; then
2445 cat > $TMPC << EOF
2446 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2448 _armv5te=no
2449 cc_check && _armv5te=yes
2451 echores "$_armv5te"
2453 echocheck "ARMv6 (SIMD instructions)"
2454 if test $_armv6 = "auto" ; then
2455 cat > $TMPC << EOF
2456 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2458 _armv6=no
2459 cc_check && _armv6=yes
2461 echores "$_armv6"
2463 echocheck "ARM VFP"
2464 if test $_armvfp = "auto" ; then
2465 cat > $TMPC << EOF
2466 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2468 _armvfp=no
2469 cc_check && _armvfp=yes
2471 echores "$_armvfp"
2473 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2474 if test $_iwmmxt = "auto" ; then
2475 cat > $TMPC << EOF
2476 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2478 _iwmmxt=no
2479 cc_check && _iwmmxt=yes
2481 echores "$_iwmmxt"
2484 _cpuexts_all='ALTIVEC MMX MMX2 3DNOW 3DNOWEX SSE SSE2 SSSE3 FAST_CMOV CMOV ARMV5TE ARMV6 ARMVFP IWMMXT MLIB MMI SH4 VIS MVI'
2485 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2486 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2487 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2488 test "$_3dnow" = yes && _cpuexts="3DNOW $_cpuexts"
2489 test "$_3dnowext" = yes && _cpuexts="3DNOWEX $_cpuexts"
2490 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2491 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2492 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2493 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2494 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2495 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2496 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2497 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2498 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2499 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2500 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2502 # Checking kernel version...
2503 if x86_32 && linux ; then
2504 _k_verc_problem=no
2505 kernel_version=`uname -r 2>&1`
2506 echocheck "$system_name kernel version"
2507 case "$kernel_version" in
2508 '') kernel_version="?.??"; _k_verc_fail=yes;;
2509 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2510 _k_verc_problem=yes;;
2511 esac
2512 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2513 _k_verc_fail=yes
2515 if test "$_k_verc_fail" ; then
2516 echores "$kernel_version, fail"
2517 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2518 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2519 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2520 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2521 echo "2.2.x you must upgrade it to get SSE support!"
2522 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2523 else
2524 echores "$kernel_version, ok"
2528 ######################
2529 # MAIN TESTS GO HERE #
2530 ######################
2533 echocheck "-lposix"
2534 cat > $TMPC <<EOF
2535 int main(void) { return 0; }
2537 if cc_check -lposix ; then
2538 _ld_extra="$_ld_extra -lposix"
2539 echores "yes"
2540 else
2541 echores "no"
2544 echocheck "-lm"
2545 cat > $TMPC <<EOF
2546 int main(void) { return 0; }
2548 if cc_check -lm ; then
2549 _ld_lm="-lm"
2550 echores "yes"
2551 else
2552 _ld_lm=""
2553 echores "no"
2557 echocheck "langinfo"
2558 if test "$_langinfo" = auto ; then
2559 cat > $TMPC <<EOF
2560 #include <langinfo.h>
2561 int main(void) { nl_langinfo(CODESET); return 0; }
2563 _langinfo=no
2564 cc_check && _langinfo=yes
2566 if test "$_langinfo" = yes ; then
2567 _def_langinfo='#define HAVE_LANGINFO 1'
2568 else
2569 _def_langinfo='#undef HAVE_LANGINFO'
2571 echores "$_langinfo"
2574 echocheck "language"
2575 test -z "$_language" && _language=$LINGUAS
2576 _language=`echo $_language | tr , " "`
2577 if $(echo $_language | grep -q all) ; then
2578 doc_lang=en ; doc_langs=$doc_lang_all
2579 man_lang=en ; man_langs=$man_lang_all
2580 msg_lang=en
2581 else
2582 for lang in $_language ; do
2583 if test -d DOCS/man/$lang ; then
2584 tmp_man_langs="$tmp_man_langs $lang"
2586 if test -d DOCS/xml/$lang ; then
2587 tmp_doc_langs="$tmp_doc_langs $lang"
2589 done
2590 man_langs=$tmp_man_langs
2591 doc_langs=$tmp_man_langs
2592 for lang in $_language ; do
2593 if test -f "help/help_mp-${lang}.h" ; then
2594 msg_lang=$lang
2595 break
2596 else
2597 echo ${_echo_n} "$lang not found, ${_echo_c}"
2598 _language=`echo $_language | sed "s/$lang *//"`
2600 done
2602 test -z "$doc_langs" && doc_langs=en
2603 test -z "$man_langs" && man_langs=en
2604 test -z "$doc_lang" && doc_lang=$(echo $doc_langs | cut -f1 -d" ")
2605 test -z "$man_lang" && man_lang=$(echo $man_langs | cut -f1 -d" ")
2606 test -z "$msg_lang" && msg_lang=en
2607 _mp_help="help/help_mp-${msg_lang}.h"
2608 echores "messages: $msg_lang - man pages: $man_langs - documentation: $doc_langs"
2611 echocheck "enable sighandler"
2612 if test "$_sighandler" = yes ; then
2613 _def_sighandler='#define CONFIG_SIGHANDLER 1'
2614 else
2615 _def_sighandler='#undef CONFIG_SIGHANDLER'
2617 echores "$_sighandler"
2619 echocheck "runtime cpudetection"
2620 if test "$_runtime_cpudetection" = yes ; then
2621 _optimizing="Runtime CPU-Detection enabled"
2622 _def_runtime_cpudetection='#define RUNTIME_CPUDETECT 1'
2623 else
2624 _def_runtime_cpudetection='#undef RUNTIME_CPUDETECT'
2626 echores "$_runtime_cpudetection"
2629 echocheck "restrict keyword"
2630 for restrict_keyword in restrict __restrict __restrict__ ; do
2631 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2632 if cc_check; then
2633 _def_restrict_keyword=$restrict_keyword
2634 break;
2636 done
2637 if [ -n "$_def_restrict_keyword" ]; then
2638 echores "$_def_restrict_keyword"
2639 else
2640 echores "none"
2642 # Avoid infinite recursion loop ("#define restrict restrict")
2643 if [ "$_def_restrict_keyword" != "restrict" ]; then
2644 _def_restrict_keyword="#define restrict $_def_restrict_keyword"
2645 else
2646 _def_restrict_keyword=""
2650 echocheck "__builtin_expect"
2651 # GCC branch prediction hint
2652 cat > $TMPC << EOF
2653 int foo (int a) {
2654 a = __builtin_expect (a, 10);
2655 return a == 10 ? 0 : 1;
2657 int main(void) { return foo(10) && foo(0); }
2659 _builtin_expect=no
2660 cc_check && _builtin_expect=yes
2661 if test "$_builtin_expect" = yes ; then
2662 _def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2663 else
2664 _def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2666 echores "$_builtin_expect"
2669 echocheck "kstat"
2670 cat > $TMPC << EOF
2671 #include <kstat.h>
2672 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2674 _kstat=no
2675 cc_check -lkstat && _kstat=yes
2676 if test "$_kstat" = yes ; then
2677 _def_kstat="#define HAVE_LIBKSTAT 1"
2678 _ld_extra="$_ld_extra -lkstat"
2679 else
2680 _def_kstat="#undef HAVE_LIBKSTAT"
2682 echores "$_kstat"
2685 echocheck "posix4"
2686 # required for nanosleep on some systems
2687 cat > $TMPC << EOF
2688 #include <time.h>
2689 int main(void) { (void) nanosleep(0, 0); return 0; }
2691 _posix4=no
2692 cc_check -lposix4 && _posix4=yes
2693 if test "$_posix4" = yes ; then
2694 _ld_extra="$_ld_extra -lposix4"
2696 echores "$_posix4"
2698 for func in llrint lrint lrintf round roundf; do
2699 echocheck $func
2700 cat > $TMPC << EOF
2701 #include <math.h>
2702 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2704 eval _$func=no
2705 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2706 if eval test "x\$_$func" = "xyes"; then
2707 eval _def_$func="\"#define HAVE_`echo $func | tr '[a-z]' '[A-Z]'` 1\""
2708 echores yes
2709 else
2710 eval _def_$func="\"#undef HAVE_`echo $func | tr '[a-z]' '[A-Z]'`\""
2711 echores no
2713 done
2716 echocheck "mkstemp"
2717 cat > $TMPC << EOF
2718 #include <stdlib.h>
2719 int main(void) { char a; mkstemp(&a); return 0; }
2721 _mkstemp=no
2722 cc_check && _mkstemp=yes
2723 if test "$_mkstemp" = yes ; then
2724 _def_mkstemp='#define HAVE_MKSTEMP 1'
2725 else
2726 _def_mkstemp='#undef HAVE_MKSTEMP'
2728 echores "$_mkstemp"
2731 echocheck "nanosleep"
2732 # also check for nanosleep
2733 cat > $TMPC << EOF
2734 #include <time.h>
2735 int main(void) { (void) nanosleep(0, 0); return 0; }
2737 _nanosleep=no
2738 cc_check && _nanosleep=yes
2739 if test "$_nanosleep" = yes ; then
2740 _def_nanosleep='#define HAVE_NANOSLEEP 1'
2741 else
2742 _def_nanosleep='#undef HAVE_NANOSLEEP'
2744 echores "$_nanosleep"
2747 echocheck "socklib"
2748 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2749 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2750 cat > $TMPC << EOF
2751 #include <netdb.h>
2752 #include <sys/socket.h>
2753 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
2755 _socklib=no
2756 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2757 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2758 done
2759 if test $_winsock2_h = auto && ! cygwin ; then
2760 _winsock2_h=no
2761 cat > $TMPC << EOF
2762 #include <winsock2.h>
2763 int main(void) { (void) gethostbyname(0); return 0; }
2765 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2767 test "$_ld_sock" && _res_comment="using $_ld_sock"
2768 echores "$_socklib"
2771 if test $_winsock2_h = yes ; then
2772 _ld_sock="-lws2_32"
2773 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2774 else
2775 def_winsock2_h='#undef HAVE_WINSOCK2_H'
2779 _use_aton=no
2780 echocheck "inet_pton()"
2781 cat > $TMPC << EOF
2782 #include <sys/types.h>
2783 #include <sys/socket.h>
2784 #include <arpa/inet.h>
2785 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
2787 if test "$_winsock2_h" = yes ; then
2788 _res_comment="using winsock2 functions instead"
2789 echores "no"
2790 elif cc_check $_ld_sock ; then
2791 # NOTE: Linux has libresolv but does not need it
2793 _res_comment="using $_ld_sock"
2794 echores "yes"
2795 elif cc_check $_ld_sock -lresolv ; then
2796 # NOTE: needed for SunOS at least
2797 _ld_sock="$_ld_sock -lresolv"
2798 _res_comment="using $_ld_sock"
2799 echores "yes"
2800 else
2801 _res_comment="trying inet_aton next"
2802 echores "no"
2804 echocheck "inet_aton()"
2805 cat > $TMPC << EOF
2806 #include <sys/types.h>
2807 #include <sys/socket.h>
2808 #include <arpa/inet.h>
2809 int main(void) { (void) inet_aton(0, 0); return 0; }
2811 _use_aton=yes
2812 if cc_check $_ld_sock ; then
2813 # NOTE: Linux has libresolv but does not need it
2815 _res_comment="using $_ld_sock"
2816 elif cc_check $_ld_sock -lresolv ; then
2817 # NOTE: needed for SunOS at least
2818 _ld_sock="$_ld_sock -lresolv"
2819 _res_comment="using $_ld_sock"
2820 else
2821 _use_aton=no
2822 _network=no
2823 _res_comment="network support disabled"
2825 echores "$_use_aton"
2828 _def_use_aton='#undef HAVE_ATON'
2829 if test "$_use_aton" = yes; then
2830 _def_use_aton='#define HAVE_ATON 1'
2834 echocheck "socklen_t"
2835 _socklen_t=no
2836 for header in "sys/socket.h" "ws2tcpip.h" ; do
2837 cat > $TMPC << EOF
2838 #include <$header>
2839 int main(void) { socklen_t v = 0; return v; }
2841 cc_check && _socklen_t=yes && break
2842 done
2843 if test "$_socklen_t" = yes ; then
2844 _def_socklen_t='#define HAVE_SOCKLEN_T 1'
2845 else
2846 _def_socklen_t='#undef HAVE_SOCKLEN_T'
2848 echores "$_socklen_t"
2851 echocheck "closesocket()"
2852 _closesocket=no
2853 cat > $TMPC << EOF
2854 #include <winsock2.h>
2855 int main(void) { closesocket(~0); return 0; }
2857 cc_check $_ld_sock && _closesocket=yes
2858 if test "$_closesocket" = yes ; then
2859 _def_closesocket='#define HAVE_CLOSESOCKET 1'
2860 else
2861 _def_closesocket='#undef HAVE_CLOSESOCKET'
2863 echores "$_closesocket"
2866 echocheck "network"
2867 # FIXME network check
2868 if test "$_network" = yes ; then
2869 _def_network='#define CONFIG_NETWORK 1'
2870 _ld_extra="$_ld_extra $_ld_sock"
2871 _inputmodules="network $_inputmodules"
2872 else
2873 _noinputmodules="network $_noinputmodules"
2874 _def_network='#undef CONFIG_NETWORK'
2875 _ftp=no
2877 echores "$_network"
2879 echocheck "inttypes.h (required)"
2880 cat > $TMPC << EOF
2881 #include <inttypes.h>
2882 int main(void) { return 0; }
2884 _inttypes=no
2885 cc_check && _inttypes=yes
2886 echores "$_inttypes"
2888 if test "$_inttypes" = no ; then
2889 echocheck "bitypes.h (inttypes.h predecessor)"
2890 cat > $TMPC << EOF
2891 #include <sys/bitypes.h>
2892 int main(void) { return 0; }
2894 cc_check && _inttypes=yes
2895 if test "$_inttypes" = yes ; then
2896 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."
2897 else
2898 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
2903 echocheck "int_fastXY_t in inttypes.h"
2904 cat > $TMPC << EOF
2905 #include <inttypes.h>
2906 int main(void) {
2907 volatile int_fast16_t v= 0;
2908 return v; }
2910 _fast_inttypes=no
2911 cc_check && _fast_inttypes=yes
2912 if test "$_fast_inttypes" = no ; then
2913 _def_fast_inttypes='
2914 typedef signed char int_fast8_t;
2915 typedef signed int int_fast16_t;
2916 typedef signed int int_fast32_t;
2917 typedef signed long long int_fast64_t;
2918 typedef unsigned char uint_fast8_t;
2919 typedef unsigned int uint_fast16_t;
2920 typedef unsigned int uint_fast32_t;
2921 typedef unsigned long long uint_fast64_t;'
2923 echores "$_fast_inttypes"
2926 echocheck "malloc.h"
2927 cat > $TMPC << EOF
2928 #include <malloc.h>
2929 int main(void) { (void) malloc(0); return 0; }
2931 _malloc=no
2932 cc_check && _malloc=yes
2933 if test "$_malloc" = yes ; then
2934 def_malloc_h='#define HAVE_MALLOC_H 1'
2935 else
2936 def_malloc_h='#undef HAVE_MALLOC_H'
2938 # malloc.h emits a warning in FreeBSD and OpenBSD
2939 freebsd || openbsd || dragonfly && def_malloc_h='#undef HAVE_MALLOC_H'
2940 echores "$_malloc"
2943 echocheck "memalign()"
2944 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
2945 cat > $TMPC << EOF
2946 #include <malloc.h>
2947 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
2949 _memalign=no
2950 cc_check && _memalign=yes
2951 if test "$_memalign" = yes ; then
2952 _def_memalign='#define HAVE_MEMALIGN 1'
2953 else
2954 _def_memalign='#undef HAVE_MEMALIGN'
2955 _def_map_memalign='#define memalign(a,b) malloc(b)'
2956 darwin || _def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
2958 echores "$_memalign"
2961 echocheck "alloca.h"
2962 cat > $TMPC << EOF
2963 #include <alloca.h>
2964 int main(void) { (void) alloca(0); return 0; }
2966 _alloca=no
2967 cc_check && _alloca=yes
2968 if cc_check ; then
2969 def_alloca_h='#define HAVE_ALLOCA_H 1'
2970 else
2971 def_alloca_h='#undef HAVE_ALLOCA_H'
2973 echores "$_alloca"
2976 echocheck "mman.h"
2977 cat > $TMPC << EOF
2978 #include <sys/types.h>
2979 #include <sys/mman.h>
2980 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
2982 _mman=no
2983 cc_check && _mman=yes
2984 if test "$_mman" = yes ; then
2985 def_mman_h='#define HAVE_SYS_MMAN_H 1'
2986 else
2987 def_mman_h='#undef HAVE_SYS_MMAN_H'
2988 os2 && _need_mmap=yes
2990 echores "$_mman"
2992 cat > $TMPC << EOF
2993 #include <sys/types.h>
2994 #include <sys/mman.h>
2995 int main(void) { void *p = MAP_FAILED; return 0; }
2997 _mman_has_map_failed=no
2998 cc_check && _mman_has_map_failed=yes
2999 if test "$_mman_has_map_failed" = yes ; then
3000 _def_mman_has_map_failed=''
3001 else
3002 _def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3005 echocheck "dynamic loader"
3006 cat > $TMPC << EOF
3007 #include <stddef.h>
3008 #include <dlfcn.h>
3009 int main(void) { dlopen(NULL, 0); dlclose(NULL); dlsym(NULL, NULL); return 0; }
3011 _dl=no
3012 for _ld_tmp in "" "-ldl" ; do
3013 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3014 done
3015 if test "$_dl" = yes ; then
3016 _def_dl='#define HAVE_LIBDL 1'
3017 else
3018 _def_dl='#undef HAVE_LIBDL'
3020 echores "$_dl"
3023 echocheck "dynamic a/v plugins support"
3024 if test "$_dl" = no ; then
3025 _dynamic_plugins=no
3027 if test "$_dynamic_plugins" = yes ; then
3028 _def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3029 else
3030 _def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3032 echores "$_dynamic_plugins"
3035 _def_threads='#undef HAVE_THREADS'
3037 echocheck "pthread"
3038 if test "$_pthreads" = auto ; then
3039 cat > $TMPC << EOF
3040 #include <pthread.h>
3041 void* func(void *arg) { return arg; }
3042 int main(void) { pthread_t tid; return pthread_create (&tid, 0, func, 0) == 0 ? 0 : 1; }
3044 _pthreads=no
3045 if ! hpux ; then
3046 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3047 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3048 cc_check $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3049 done
3052 if test "$_pthreads" = yes ; then
3053 _res_comment="using $_ld_pthread"
3054 _def_pthreads='#define HAVE_PTHREADS 1'
3055 _def_threads='#define HAVE_THREADS 1'
3056 else
3057 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3058 _def_pthreads='#undef HAVE_PTHREADS'
3059 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3060 mingw32 || _win32dll=no
3062 echores "$_pthreads"
3064 echocheck "w32threads"
3065 if test "$_pthreads" = yes ; then
3066 _res_comment="using pthread instead"
3067 _w32threads=no
3069 if test "$_w32threads" = auto ; then
3070 _w32threads=no
3071 mingw32 && _w32threads=yes
3073 test "$_w32threads" = yes && _def_threads='#define HAVE_THREADS 1'
3074 echores "$_w32threads"
3076 echocheck "rpath"
3077 netbsd &&_rpath=yes
3078 if test "$_rpath" = yes ; then
3079 for I in `echo $_ld_extra | sed 's/-L//g'` ; do
3080 tmp="$tmp ` echo $I | sed 's/.*/ -L& -Wl,-R&/'`"
3081 done
3082 _ld_extra=$tmp
3084 echores "$_rpath"
3086 echocheck "iconv"
3087 if test "$_iconv" = auto ; then
3088 cat > $TMPC << EOF
3089 #include <stdio.h>
3090 #include <unistd.h>
3091 #include <iconv.h>
3092 #define INBUFSIZE 1024
3093 #define OUTBUFSIZE 4096
3095 char inbuffer[INBUFSIZE];
3096 char outbuffer[OUTBUFSIZE];
3098 int main(void) {
3099 size_t numread;
3100 iconv_t icdsc;
3101 char *tocode="UTF-8";
3102 char *fromcode="cp1250";
3103 if ((icdsc = iconv_open (tocode, fromcode)) != (iconv_t)(-1)) {
3104 while ((numread = read (0, inbuffer, INBUFSIZE))) {
3105 char *iptr=inbuffer;
3106 char *optr=outbuffer;
3107 size_t inleft=numread;
3108 size_t outleft=OUTBUFSIZE;
3109 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3110 != (size_t)(-1)) {
3111 write (1, outbuffer, OUTBUFSIZE - outleft);
3114 if (iconv_close(icdsc) == -1)
3117 return 0;
3120 _iconv=no
3121 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3122 cc_check $_ld_lm $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && \
3123 _iconv=yes && break
3124 done
3126 if test "$_iconv" = yes ; then
3127 _def_iconv='#define CONFIG_ICONV 1'
3128 else
3129 _def_iconv='#undef CONFIG_ICONV'
3131 echores "$_iconv"
3134 echocheck "soundcard.h"
3135 _soundcard_h=no
3136 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3137 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3138 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3139 cat > $TMPC << EOF
3140 #include <$_soundcard_header>
3141 int main(void) { return 0; }
3143 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3144 done
3146 if test "$_soundcard_h" = yes ; then
3147 if test $_soundcard_header = "sys/soundcard.h"; then
3148 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3149 else
3150 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3153 echores "$_soundcard_h"
3156 echocheck "sys/dvdio.h"
3157 cat > $TMPC << EOF
3158 #include <unistd.h>
3159 #include <sys/dvdio.h>
3160 int main(void) { return 0; }
3162 _dvdio=no
3163 cc_check && _dvdio=yes
3164 if test "$_dvdio" = yes ; then
3165 _def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3166 else
3167 _def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3169 echores "$_dvdio"
3172 echocheck "sys/cdio.h"
3173 cat > $TMPC << EOF
3174 #include <unistd.h>
3175 #include <sys/cdio.h>
3176 int main(void) { return 0; }
3178 _cdio=no
3179 cc_check && _cdio=yes
3180 if test "$_cdio" = yes ; then
3181 _def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3182 else
3183 _def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3185 echores "$_cdio"
3188 echocheck "linux/cdrom.h"
3189 cat > $TMPC << EOF
3190 #include <sys/types.h>
3191 #include <linux/cdrom.h>
3192 int main(void) { return 0; }
3194 _cdrom=no
3195 cc_check && _cdrom=yes
3196 if test "$_cdrom" = yes ; then
3197 _def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3198 else
3199 _def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3201 echores "$_cdrom"
3204 echocheck "dvd.h"
3205 cat > $TMPC << EOF
3206 #include <dvd.h>
3207 int main(void) { return 0; }
3209 _dvd=no
3210 cc_check && _dvd=yes
3211 if test "$_dvd" = yes ; then
3212 _def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3213 else
3214 _def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3216 echores "$_dvd"
3219 if bsdos; then
3220 echocheck "BSDI dvd.h"
3221 cat > $TMPC << EOF
3222 #include <dvd.h>
3223 int main(void) { return 0; }
3225 _bsdi_dvd=no
3226 cc_check && _bsdi_dvd=yes
3227 if test "$_bsdi_dvd" = yes ; then
3228 _def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3229 else
3230 _def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3232 echores "$_bsdi_dvd"
3233 fi #if bsdos
3236 if hpux; then
3237 # also used by AIX, but AIX does not support VCD and/or libdvdread
3238 echocheck "HP-UX SCSI header"
3239 cat > $TMPC << EOF
3240 #include <sys/scsi.h>
3241 int main(void) { return 0; }
3243 _hpux_scsi_h=no
3244 cc_check && _hpux_scsi_h=yes
3245 if test "$_hpux_scsi_h" = yes ; then
3246 _def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3247 else
3248 _def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3250 echores "$_hpux_scsi_h"
3251 fi #if hpux
3254 if sunos; then
3255 echocheck "userspace SCSI headers (Solaris)"
3256 cat > $TMPC << EOF
3257 #include <unistd.h>
3258 #include <stropts.h>
3259 #include <sys/scsi/scsi_types.h>
3260 #include <sys/scsi/impl/uscsi.h>
3261 int main(void) { return 0; }
3263 _sol_scsi_h=no
3264 cc_check && _sol_scsi_h=yes
3265 if test "$_sol_scsi_h" = yes ; then
3266 _def_sol_scsi_h='#define SOLARIS_USCSI 1'
3267 else
3268 _def_sol_scsi_h='#undef SOLARIS_USCSI'
3270 echores "$_sol_scsi_h"
3271 fi #if sunos
3274 echocheck "termcap"
3275 if test "$_termcap" = auto ; then
3276 cat > $TMPC <<EOF
3277 #include <stddef.h>
3278 #include <term.h>
3279 int main(void) { tgetent(NULL, NULL); return 0; }
3281 _termcap=no
3282 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3283 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
3284 && _termcap=yes && break
3285 done
3287 if test "$_termcap" = yes ; then
3288 _def_termcap='#define HAVE_TERMCAP 1'
3289 _res_comment="using $_ld_tmp"
3290 else
3291 _def_termcap='#undef HAVE_TERMCAP'
3293 echores "$_termcap"
3296 echocheck "termios"
3297 _def_termios='#undef HAVE_TERMIOS'
3298 def_termios_h='#undef HAVE_TERMIOS_H'
3299 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3300 if test "$_termios" = auto ; then
3301 _termios=no
3302 for _termios_header in "sys/termios.h" "termios.h"; do
3303 cat > $TMPC <<EOF
3304 #include <$_termios_header>
3305 int main(void) { return 0; }
3307 cc_check && _termios=yes && _res_comment="$_termios_header" && break
3308 done
3311 if test "$_termios" = yes ; then
3312 _def_termios='#define HAVE_TERMIOS 1'
3313 if test "$_termios_header" = "termios.h" ; then
3314 def_termios_h='#define HAVE_TERMIOS_H 1'
3315 else
3316 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3319 echores "$_termios"
3322 echocheck "shm"
3323 if test "$_shm" = auto ; then
3324 cat > $TMPC << EOF
3325 #include <sys/types.h>
3326 #include <sys/shm.h>
3327 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3329 _shm=no
3330 cc_check && _shm=yes
3332 if test "$_shm" = yes ; then
3333 _def_shm='#define HAVE_SHM 1'
3334 else
3335 _def_shm='#undef HAVE_SHM'
3337 echores "$_shm"
3340 echocheck "strsep()"
3341 cat > $TMPC << EOF
3342 #include <string.h>
3343 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3345 _strsep=no
3346 cc_check && _strsep=yes
3347 if test "$_strsep" = yes ; then
3348 _def_strsep='#define HAVE_STRSEP 1'
3349 _need_strsep=no
3350 else
3351 _def_strsep='#undef HAVE_STRSEP'
3352 _need_strsep=yes
3354 echores "$_strsep"
3357 echocheck "vsscanf()"
3358 cat > $TMPC << EOF
3359 #define _ISOC99_SOURCE
3360 #include <stdarg.h>
3361 #include <stdio.h>
3362 int main(void) { vsscanf(0, 0, 0); return 0; }
3364 _vsscanf=no
3365 cc_check && _vsscanf=yes
3366 if test "$_vsscanf" = yes ; then
3367 _def_vsscanf='#define HAVE_VSSCANF 1'
3368 _need_vsscanf=no
3369 else
3370 _def_vsscanf='#undef HAVE_VSSCANF'
3371 _need_vsscanf=yes
3373 echores "$_vsscanf"
3376 echocheck "swab()"
3377 cat > $TMPC << EOF
3378 #include <unistd.h>
3379 int main(void) { swab(0, 0, 0); return 0; }
3381 _swab=no
3382 cc_check && _swab=yes
3383 if test "$_swab" = yes ; then
3384 _def_swab='#define HAVE_SWAB 1'
3385 _need_swab=no
3386 else
3387 _def_swab='#undef HAVE_SWAB'
3388 _need_swab=yes
3390 echores "$_swab"
3392 echocheck "POSIX select()"
3393 cat > $TMPC << EOF
3394 #include <stdio.h>
3395 #include <stdlib.h>
3396 #include <sys/types.h>
3397 #include <string.h>
3398 #include <sys/time.h>
3399 #include <unistd.h>
3400 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3402 _posix_select=no
3403 _def_posix_select='#undef HAVE_POSIX_SELECT'
3404 #select() of kLIBC (OS/2) supports socket only
3405 ! os2 && cc_check && _posix_select=yes \
3406 && _def_posix_select='#define HAVE_POSIX_SELECT 1'
3407 echores "$_posix_select"
3410 echocheck "gettimeofday()"
3411 cat > $TMPC << EOF
3412 #include <stdio.h>
3413 #include <sys/time.h>
3414 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3416 _gettimeofday=no
3417 cc_check && _gettimeofday=yes
3418 if test "$_gettimeofday" = yes ; then
3419 _def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3420 _need_gettimeofday=no
3421 else
3422 _def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3423 _need_gettimeofday=yes
3425 echores "$_gettimeofday"
3428 echocheck "glob()"
3429 cat > $TMPC << EOF
3430 #include <stdio.h>
3431 #include <glob.h>
3432 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3434 _glob=no
3435 cc_check && _glob=yes
3436 if test "$_glob" = yes ; then
3437 _def_glob='#define HAVE_GLOB 1'
3438 _need_glob=no
3439 else
3440 _def_glob='#undef HAVE_GLOB'
3441 _need_glob=yes
3443 echores "$_glob"
3446 echocheck "setenv()"
3447 cat > $TMPC << EOF
3448 #include <stdlib.h>
3449 int main(void) { setenv("","",0); return 0; }
3451 _setenv=no
3452 cc_check && _setenv=yes
3453 if test "$_setenv" = yes ; then
3454 _def_setenv='#define HAVE_SETENV 1'
3455 _need_setenv=no
3456 else
3457 _def_setenv='#undef HAVE_SETENV'
3458 _need_setenv=yes
3460 echores "$_setenv"
3463 if sunos; then
3464 echocheck "sysi86()"
3465 cat > $TMPC << EOF
3466 #include <sys/sysi86.h>
3467 int main(void) { sysi86(0); return 0; }
3469 _sysi86=no
3470 cc_check && _sysi86=yes
3471 if test "$_sysi86" = yes ; then
3472 _def_sysi86='#define HAVE_SYSI86 1'
3473 cat > $TMPC << EOF
3474 #include <sys/sysi86.h>
3475 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3477 cc_check && _def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3478 else
3479 _def_sysi86='#undef HAVE_SYSI86'
3481 echores "$_sysi86"
3482 fi #if sunos
3485 echocheck "sys/sysinfo.h"
3486 cat > $TMPC << EOF
3487 #include <sys/sysinfo.h>
3488 int main(void) {
3489 struct sysinfo s_info;
3490 sysinfo(&s_info);
3491 return 0;
3494 _sys_sysinfo=no
3495 cc_check && _sys_sysinfo=yes
3496 if test "$_sys_sysinfo" = yes ; then
3497 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3498 else
3499 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3501 echores "$_sys_sysinfo"
3504 if darwin; then
3506 echocheck "Mac OS X APIs"
3507 if test "$_macosx" = auto ; then
3508 productName=`/usr/bin/sw_vers -productName`
3509 if test "$productName" = "Mac OS X" ||
3510 test "$productName" = "Mac OS X Server" ; then
3511 _macosx=yes
3512 else
3513 _macosx=no
3514 _noaomodules="macosx $_noaomodules"
3515 _novomodules="quartz $_novomodules"
3518 if test "$_macosx" = yes ; then
3519 cat > $TMPC <<EOF
3520 #include <Carbon/Carbon.h>
3521 #include <QuickTime/QuickTime.h>
3522 #include <CoreAudio/CoreAudio.h>
3523 int main(void) {
3524 EnterMovies();
3525 ExitMovies();
3526 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
3527 return 0;
3530 if cc_check -framework Carbon -framework QuickTime -framework CoreAudio; then
3531 _ld_extra="$_ld_extra -framework Carbon -framework QuickTime -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
3532 _coreaudio=yes
3533 _def_coreaudio='#define CONFIG_COREAUDIO 1'
3534 _aosrc="$_aosrc ao_macosx.c"
3535 _aomodules="macosx $_aomodules"
3536 _def_quartz='#define CONFIG_QUARTZ 1'
3537 _vosrc="$_vosrc vo_quartz.c"
3538 _vomodules="quartz $_vomodules"
3539 _def_quicktime='#define CONFIG_QUICKTIME 1'
3540 else
3541 _macosx=no
3542 _coreaudio=no
3543 _def_coreaudio='#undef CONFIG_COREAUDIO'
3544 _noaomodules="macosx $_noaomodules"
3545 _def_quartz='#undef CONFIG_QUARTZ'
3546 _novomodules="quartz $_novomodules"
3547 _def_quicktime='#undef CONFIG_QUICKTIME'
3549 cat > $TMPC <<EOF
3550 #include <Carbon/Carbon.h>
3551 #include <QuartzCore/CoreVideo.h>
3552 int main(void) { return 0; }
3554 if cc_check -framework Carbon -framework QuartzCore -framework OpenGL; then
3555 _vosrc="$_vosrc vo_macosx.m"
3556 _vomodules="macosx $_vomodules"
3557 _ld_extra="$_ld_extra -framework Cocoa -framework QuartzCore -framework OpenGL"
3558 _def_corevideo='#define CONFIG_COREVIDEO 1'
3559 _corevideo=yes
3560 else
3561 _novomodules="macosx $_novomodules"
3562 _def_corevideo='#undef CONFIG_COREVIDEO'
3563 _corevideo=no
3566 echores "$_macosx"
3568 echocheck "Mac OS X Finder Support"
3569 if test "$_macosx_finder" = auto ; then
3570 _macosx_finder=$_macosx
3572 if test "$_macosx_finder" = yes; then
3573 _def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3574 _macosx_finder=yes
3575 else
3576 _def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3577 _macosx_finder=no
3579 echores "$_macosx_finder"
3581 echocheck "Mac OS X Bundle file locations"
3582 if test "$_macosx_bundle" = auto ; then
3583 _macosx_bundle=$_macosx_finder
3585 if test "$_macosx_bundle" = yes; then
3586 _def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3587 else
3588 _def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3589 _macosx_bundle=no
3591 echores "$_macosx_bundle"
3593 echocheck "Apple Remote"
3594 if test "$_apple_remote" = auto ; then
3595 _apple_remote=no
3596 cat > $TMPC <<EOF
3597 #include <stdio.h>
3598 #include <IOKit/IOCFPlugIn.h>
3599 int main(void) {
3600 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3601 CFMutableDictionaryRef hidMatchDictionary;
3602 IOReturn ioReturnValue;
3604 // Set up a matching dictionary to search the I/O Registry by class.
3605 // name for all HID class devices
3606 hidMatchDictionary = IOServiceMatching("AppleIRController");
3608 // Now search I/O Registry for matching devices.
3609 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3610 hidMatchDictionary, &hidObjectIterator);
3612 // If search is unsuccessful, return nonzero.
3613 if (ioReturnValue != kIOReturnSuccess ||
3614 !IOIteratorIsValid(hidObjectIterator)) {
3615 return 1;
3617 return 0;
3620 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3622 if test "$_apple_remote" = yes ; then
3623 _def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3624 _ld_extra="$_ld_extra -framework IOKit"
3625 else
3626 _def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3628 echores "$_apple_remote"
3630 fi #if darwin
3632 if linux; then
3634 echocheck "Apple IR"
3635 if test "$_apple_ir" = auto ; then
3636 _apple_ir=no
3637 cat > $TMPC <<EOF
3638 #include <linux/types.h>
3639 #include <linux/input.h>
3640 int main(void) {
3641 struct input_event ev;
3642 struct input_id id;
3643 return 0;
3646 cc_check && tmp_run && _apple_ir=yes
3648 if test "$_apple_ir" = yes ; then
3649 _def_apple_ir='#define CONFIG_APPLE_IR 1'
3650 else
3651 _def_apple_ir='#undef CONFIG_APPLE_IR'
3653 echores "$_apple_ir"
3654 fi #if linux
3656 echocheck "pkg-config"
3657 _pkg_config=pkg-config
3658 if `$_pkg_config --version > /dev/null 2>&1`; then
3659 if test "$_ld_static"; then
3660 _pkg_config="$_pkg_config --static"
3662 echores "yes"
3663 else
3664 _pkg_config=false
3665 echores "no"
3669 echocheck "Samba support (libsmbclient)"
3670 if test "$_smb" = yes; then
3671 _ld_extra="$_ld_extra -lsmbclient"
3673 if test "$_smb" = auto; then
3674 _smb=no
3675 cat > $TMPC << EOF
3676 #include <libsmbclient.h>
3677 int main(void) { smbc_opendir("smb://"); return 0; }
3679 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3680 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && \
3681 _smb=yes && break
3682 done
3685 if test "$_smb" = yes; then
3686 _def_smb="#define CONFIG_LIBSMBCLIENT"
3687 _inputmodules="smb $_inputmodules"
3688 else
3689 _def_smb="#undef CONFIG_LIBSMBCLIENT"
3690 _noinputmodules="smb $_noinputmodules"
3692 echores "$_smb"
3695 #########
3696 # VIDEO #
3697 #########
3700 echocheck "tdfxfb"
3701 if test "$_tdfxfb" = yes ; then
3702 _def_tdfxfb='#define CONFIG_TDFXFB 1'
3703 _vosrc="$_vosrc vo_tdfxfb.c"
3704 _vomodules="tdfxfb $_vomodules"
3705 else
3706 _def_tdfxfb='#undef CONFIG_TDFXFB'
3707 _novomodules="tdfxfb $_novomodules"
3709 echores "$_tdfxfb"
3711 echocheck "s3fb"
3712 if test "$_s3fb" = yes ; then
3713 _def_s3fb='#define CONFIG_S3FB 1'
3714 _vosrc="$_vosrc vo_s3fb.c"
3715 _vomodules="s3fb $_vomodules"
3716 else
3717 _def_s3fb='#undef CONFIG_S3FB'
3718 _novomodules="s3fb $_novomodules"
3720 echores "$_s3fb"
3722 echocheck "wii"
3723 if test "$_wii" = yes ; then
3724 _def_wii='#define CONFIG_WII 1'
3725 _vosrc="$_vosrc vo_wii.c"
3726 _vomodules="wii $_vomodules"
3727 else
3728 _def_wii='#undef CONFIG_WII'
3729 _novomodules="wii $_novomodules"
3731 echores "$_wii"
3733 echocheck "tdfxvid"
3734 if test "$_tdfxvid" = yes ; then
3735 _def_tdfxvid='#define CONFIG_TDFX_VID 1'
3736 _vosrc="$_vosrc vo_tdfx_vid.c"
3737 _vomodules="tdfx_vid $_vomodules"
3738 else
3739 _def_tdfxvid='#undef CONFIG_TDFX_VID'
3740 _novomodules="tdfx_vid $_novomodules"
3742 echores "$_tdfxvid"
3744 echocheck "xvr100"
3745 if test "$_xvr100" = auto ; then
3746 cat > $TMPC << EOF
3747 #include <unistd.h>
3748 #include <sys/fbio.h>
3749 #include <sys/visual_io.h>
3750 int main(void) {
3751 struct vis_identifier ident;
3752 struct fbgattr attr;
3753 ioctl(0, VIS_GETIDENTIFIER, &ident);
3754 ioctl(0, FBIOGATTR, &attr);
3755 return 0;
3758 _xvr100=no
3759 cc_check && _xvr100=yes
3761 if test "$_xvr100" = yes ; then
3762 _def_xvr100='#define CONFIG_XVR100 1'
3763 _vosrc="$_vosrc vo_xvr100.c"
3764 _vomodules="xvr100 $_vomodules"
3765 else
3766 _def_tdfxvid='#undef CONFIG_XVR100'
3767 _novomodules="xvr100 $_novomodules"
3769 echores "$_xvr100"
3771 echocheck "tga"
3772 if test "$_tga" = yes ; then
3773 _def_tga='#define CONFIG_TGA 1'
3774 _vosrc="$_vosrc vo_tga.c"
3775 _vomodules="tga $_vomodules"
3776 else
3777 _def_tga='#undef CONFIG_TGA'
3778 _novomodules="tga $_novomodules"
3780 echores "$_tga"
3783 echocheck "md5sum support"
3784 if test "$_md5sum" = yes; then
3785 _def_md5sum="#define CONFIG_MD5SUM"
3786 _vosrc="$_vosrc vo_md5sum.c"
3787 _vomodules="md5sum $_vomodules"
3788 else
3789 _def_md5sum="#undef CONFIG_MD5SUM"
3790 _novomodules="md5sum $_novomodules"
3792 echores "$_md5sum"
3795 echocheck "yuv4mpeg support"
3796 if test "$_yuv4mpeg" = yes; then
3797 _def_yuv4mpeg="#define CONFIG_YUV4MPEG"
3798 _vosrc="$_vosrc vo_yuv4mpeg.c"
3799 _vomodules="yuv4mpeg $_vomodules"
3800 else
3801 _def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3802 _novomodules="yuv4mpeg $_novomodules"
3804 echores "$_yuv4mpeg"
3807 echocheck "bl"
3808 if test "$_bl" = yes ; then
3809 _def_bl='#define CONFIG_BL 1'
3810 _vosrc="$_vosrc vo_bl.c"
3811 _vomodules="bl $_vomodules"
3812 else
3813 _def_bl='#undef CONFIG_BL'
3814 _novomodules="bl $_novomodules"
3816 echores "$_bl"
3819 echocheck "DirectFB"
3820 if test "$_directfb" = auto ; then
3821 _directfb=no
3822 cat > $TMPC <<EOF
3823 #include <directfb.h>
3824 int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
3826 for _inc_tmp in "" -I/usr/local/include/directfb \
3827 -I/usr/include/directfb -I/usr/local/include; do
3828 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
3829 _inc_extra="$_inc_extra $_inc_tmp" && break
3830 done
3833 dfb_version() {
3834 expr $1 \* 65536 + $2 \* 256 + $3
3837 if test "$_directfb" = yes; then
3838 cat > $TMPC << EOF
3839 #include <directfb_version.h>
3841 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
3844 if $_cc -E $TMPC $_inc_extra > "$TMPEXE"; then
3845 _directfb_version=`sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()'`
3846 _dfb_major=`echo $_directfb_version | cut -d . -f 1`
3847 _dfb_minor=`echo $_directfb_version | cut -d . -f 2`
3848 _dfb_micro=`echo $_directfb_version | cut -d . -f 3`
3849 _dfb_version=`dfb_version $_dfb_major $_dfb_minor $_dfb_micro`
3850 if test "$_dfb_version" -ge `dfb_version 0 9 13`; then
3851 _def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
3852 _res_comment="$_directfb_version"
3853 test "$_dfb_version" -ge `dfb_version 0 9 15` && _dfbmga=yes
3854 else
3855 _def_directfb_version='#undef DIRECTFBVERSION'
3856 _directfb=no
3857 _res_comment="version >=0.9.13 required"
3859 else
3860 _directfb=no
3861 _res_comment="failed to get version"
3864 echores "$_directfb"
3866 if test "$_directfb" = yes ; then
3867 _def_directfb='#define CONFIG_DIRECTFB 1'
3868 _vosrc="$_vosrc vo_directfb2.c"
3869 _vomodules="directfb $_vomodules"
3870 _libs_mplayer="$_libs_mplayer -ldirectfb"
3871 else
3872 _def_directfb='#undef CONFIG_DIRECTFB'
3873 _novomodules="directfb $_novomodules"
3875 if test "$_dfbmga" = yes; then
3876 _vosrc="$_vosrc vo_dfbmga.c"
3877 _vomodules="dfbmga $_vomodules"
3878 _def_dfbmga='#define CONFIG_DFBMGA 1'
3879 else
3880 _novomodules="dfbmga $_novomodules"
3881 _def_dfbmga='#undef CONFIG_DFBMGA'
3885 echocheck "X11 headers presence"
3886 _x11_headers="no"
3887 _res_comment="check if the dev(el) packages are installed"
3888 for I in `echo $_inc_extra | sed s/-I//g` /usr/include ; do
3889 if test -f "$I/X11/Xlib.h" ; then
3890 _x11_headers="yes"
3891 _res_comment=""
3892 break
3894 done
3895 if test $_cross_compile = no; then
3896 for I in /usr/X11/include /usr/X11R6/include /usr/include/X11R6 /usr/openwin/include ; do
3897 if test -f "$I/X11/Xlib.h" ; then
3898 _inc_extra="$_inc_extra -I$I"
3899 _x11_headers="yes"
3900 _res_comment="using $I"
3901 break
3903 done
3905 echores "$_x11_headers"
3908 echocheck "X11"
3909 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3910 cat > $TMPC <<EOF
3911 #include <X11/Xlib.h>
3912 #include <X11/Xutil.h>
3913 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
3915 for I in "" -L/usr/X11R6/lib -L/usr/lib/X11R6 -L/usr/X11/lib \
3916 -L/usr/lib32 -L/usr/openwin/lib -L/usr/X11R6/lib64 -L/usr/lib ; do
3917 if netbsd; then
3918 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R`echo $I | sed s/^-L//`"
3919 else
3920 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3922 cc_check $_ld_tmp && _libs_mplayer="$_libs_mplayer $_ld_tmp" \
3923 && _x11=yes && break
3924 done
3926 if test "$_x11" = yes ; then
3927 _def_x11='#define CONFIG_X11 1'
3928 _vosrc="$_vosrc x11_common.c vo_x11.c vo_xover.c"
3929 _vomodules="x11 xover $_vomodules"
3930 else
3931 _x11=no
3932 _def_x11='#undef CONFIG_X11'
3933 _novomodules="x11 $_novomodules"
3934 _res_comment="check if the dev(el) packages are installed"
3935 # disable stuff that depends on X
3936 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no
3938 echores "$_x11"
3940 echocheck "Xss screensaver extensions"
3941 if test "$_xss" = auto ; then
3942 cat > $TMPC << EOF
3943 #include <X11/Xlib.h>
3944 #include <X11/extensions/scrnsaver.h>
3945 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
3947 _xss=no
3948 cc_check -lXss && _xss=yes
3950 if test "$_xss" = yes ; then
3951 _def_xss='#define CONFIG_XSS 1'
3952 _libs_mplayer="$_libs_mplayer -lXss"
3953 else
3954 _def_xss='#undef CONFIG_XSS'
3956 echores "$_xss"
3958 echocheck "DPMS"
3959 _xdpms3=no
3960 _xdpms4=no
3961 if test "$_x11" = yes ; then
3962 cat > $TMPC <<EOF
3963 #include <X11/Xmd.h>
3964 #include <X11/Xlib.h>
3965 #include <X11/Xutil.h>
3966 #include <X11/Xatom.h>
3967 #include <X11/extensions/dpms.h>
3968 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
3970 cc_check -lXdpms && _xdpms3=yes
3971 cat > $TMPC <<EOF
3972 #include <X11/Xlib.h>
3973 #include <X11/extensions/dpms.h>
3974 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
3976 cc_check -lXext && _xdpms4=yes
3978 if test "$_xdpms4" = yes ; then
3979 _def_xdpms='#define CONFIG_XDPMS 1'
3980 _res_comment="using Xdpms 4"
3981 echores "yes"
3982 elif test "$_xdpms3" = yes ; then
3983 _def_xdpms='#define CONFIG_XDPMS 1'
3984 _libs_mplayer="$_libs_mplayer -lXdpms"
3985 _res_comment="using Xdpms 3"
3986 echores "yes"
3987 else
3988 _def_xdpms='#undef CONFIG_XDPMS'
3989 echores "no"
3993 echocheck "Xv"
3994 if test "$_xv" = auto ; then
3995 cat > $TMPC <<EOF
3996 #include <X11/Xlib.h>
3997 #include <X11/extensions/Xvlib.h>
3998 int main(void) {
3999 (void) XvGetPortAttribute(0, 0, 0, 0);
4000 (void) XvQueryPortAttributes(0, 0, 0);
4001 return 0; }
4003 _xv=no
4004 cc_check -lXv && _xv=yes
4007 if test "$_xv" = yes ; then
4008 _def_xv='#define CONFIG_XV 1'
4009 _libs_mplayer="$_libs_mplayer -lXv"
4010 _vosrc="$_vosrc vo_xv.c"
4011 _vomodules="xv $_vomodules"
4012 else
4013 _def_xv='#undef CONFIG_XV'
4014 _novomodules="xv $_novomodules"
4016 echores "$_xv"
4019 echocheck "XvMC"
4020 if test "$_xv" = yes && test "$_xvmc" != no ; then
4021 _xvmc=no
4022 cat > $TMPC <<EOF
4023 #include <X11/Xlib.h>
4024 #include <X11/extensions/Xvlib.h>
4025 #include <X11/extensions/XvMClib.h>
4026 int main(void) {
4027 (void) XvMCQueryExtension(0,0,0);
4028 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4029 return 0; }
4031 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4032 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4033 done
4035 if test "$_xvmc" = yes ; then
4036 _def_xvmc='#define HAVE_XVMC 1'
4037 _libs_mplayer="$_libs_mplayer -lXvMC -l$_xvmclib"
4038 _vosrc="$_vosrc vo_xvmc.c"
4039 _vomodules="xvmc $_vomodules"
4040 _res_comment="using $_xvmclib"
4041 else
4042 _def_xvmc='#undef HAVE_XVMC'
4043 _novomodules="xvmc $_novomodules"
4044 _libavdecoders=`echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER// `
4046 echores "$_xvmc"
4049 echocheck "Xinerama"
4050 if test "$_xinerama" = auto ; then
4051 cat > $TMPC <<EOF
4052 #include <X11/Xlib.h>
4053 #include <X11/extensions/Xinerama.h>
4054 int main(void) { (void) XineramaIsActive(0); return 0; }
4056 _xinerama=no
4057 cc_check -lXinerama && _xinerama=yes
4060 if test "$_xinerama" = yes ; then
4061 _def_xinerama='#define CONFIG_XINERAMA 1'
4062 _libs_mplayer="$_libs_mplayer -lXinerama"
4063 else
4064 _def_xinerama='#undef CONFIG_XINERAMA'
4066 echores "$_xinerama"
4069 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4070 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4071 # named 'X extensions' or something similar.
4072 # This check may be useful for future mplayer versions (to change resolution)
4073 # If you run into problems, remove '-lXxf86vm'.
4074 echocheck "Xxf86vm"
4075 if test "$_vm" = auto ; then
4076 cat > $TMPC <<EOF
4077 #include <X11/Xlib.h>
4078 #include <X11/extensions/xf86vmode.h>
4079 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4081 _vm=no
4082 cc_check -lXxf86vm && _vm=yes
4084 if test "$_vm" = yes ; then
4085 _def_vm='#define CONFIG_XF86VM 1'
4086 _libs_mplayer="$_libs_mplayer -lXxf86vm"
4087 else
4088 _def_vm='#undef CONFIG_XF86VM'
4090 echores "$_vm"
4092 # Check for the presence of special keycodes, like audio control buttons
4093 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4094 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4095 # have these new keycodes.
4096 echocheck "XF86keysym"
4097 if test "$_xf86keysym" = auto; then
4098 _xf86keysym=no
4099 cat > $TMPC <<EOF
4100 #include <X11/Xlib.h>
4101 #include <X11/XF86keysym.h>
4102 int main(void) { return XF86XK_AudioPause; }
4104 cc_check && _xf86keysym=yes
4106 if test "$_xf86keysym" = yes ; then
4107 _def_xf86keysym='#define CONFIG_XF86XK 1'
4108 else
4109 _def_xf86keysym='#undef CONFIG_XF86XK'
4111 echores "$_xf86keysym"
4113 echocheck "DGA"
4114 if test "$_dga2" = auto && test "$_x11" = yes ; then
4115 cat > $TMPC << EOF
4116 #include <X11/Xlib.h>
4117 #include <X11/extensions/xf86dga.h>
4118 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4120 _dga2=no
4121 cc_check -lXxf86dga && _dga2=yes
4123 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4124 cat > $TMPC << EOF
4125 #include <X11/Xlib.h>
4126 #include <X11/extensions/xf86dga.h>
4127 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4129 _dga1=no
4130 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4133 _dga=no
4134 _def_dga='#undef CONFIG_DGA'
4135 _def_dga1='#undef CONFIG_DGA1'
4136 _def_dga2='#undef CONFIG_DGA2'
4137 if test "$_dga1" = yes ; then
4138 _dga=yes
4139 _def_dga1='#define CONFIG_DGA1 1'
4140 _res_comment="using DGA 1.0"
4141 elif test "$_dga2" = yes ; then
4142 _dga=yes
4143 _def_dga2='#define CONFIG_DGA2 1'
4144 _res_comment="using DGA 2.0"
4146 if test "$_dga" = yes ; then
4147 _def_dga='#define CONFIG_DGA 1'
4148 _libs_mplayer="$_libs_mplayer -lXxf86dga"
4149 _vosrc="$_vosrc vo_dga.c"
4150 _vomodules="dga $_vomodules"
4151 else
4152 _novomodules="dga $_novomodules"
4154 echores "$_dga"
4157 echocheck "3dfx"
4158 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4159 _def_3dfx='#define CONFIG_3DFX 1'
4160 _vosrc="$_vosrc vo_3dfx.c"
4161 _vomodules="3dfx $_vomodules"
4162 else
4163 _def_3dfx='#undef CONFIG_3DFX'
4164 _novomodules="3dfx $_novomodules"
4166 echores "$_3dfx"
4169 echocheck "OpenGL"
4170 #Note: this test is run even with --enable-gl since we autodetect linker flags
4171 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4172 cat > $TMPC << EOF
4173 #include <GL/gl.h>
4174 #ifdef GL_WIN32
4175 #include <windows.h>
4176 #include <GL/glext.h>
4177 #else
4178 #include <X11/Xlib.h>
4179 #include <GL/glx.h>
4180 #endif
4181 int main(void) {
4182 #ifdef GL_WIN32
4183 HDC dc;
4184 wglCreateContext(dc);
4185 #else
4186 glXCreateContext(NULL, NULL, NULL, True);
4187 #endif
4188 glFinish();
4189 return 0;
4192 _gl=no
4193 if cc_check -lGL $_ld_lm ; then
4194 _gl=yes
4195 _libs_mplayer="$_libs_mplayer -lGL $_ld_dl"
4196 elif cc_check -lGL $_ld_lm $_ld_pthread ; then
4197 _gl=yes
4198 _libs_mplayer="$_libs_mplayer -lGL $_ld_pthread $_ld_dl"
4199 elif cc_check -DGL_WIN32 -lopengl32 ; then
4200 _gl=yes
4201 _gl_win32=yes
4202 _libs_mplayer="$_libs_mplayer -lopengl32 -lgdi32"
4204 else
4205 _gl=no
4207 if test "$_gl" = yes ; then
4208 _def_gl='#define CONFIG_GL 1'
4209 _vosrc="$_vosrc vo_gl.c vo_gl2.c gl_common.c"
4210 if test "$_gl_win32" = yes ; then
4211 _def_gl_win32='#define GL_WIN32 1'
4212 _vosrc="$_vosrc w32_common.c"
4213 _res_comment="win32 version"
4215 _vomodules="opengl $_vomodules"
4216 else
4217 _def_gl='#undef CONFIG_GL'
4218 _def_gl_win32='#undef GL_WIN32'
4219 _novomodules="opengl $_novomodules"
4221 echores "$_gl"
4224 echocheck "VIDIX"
4225 _def_vidix='#undef CONFIG_VIDIX'
4226 _def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4227 _vidix_drv_cyberblade=no
4228 _def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4229 _vidix_drv_ivtv=no
4230 _def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4231 _vidix_drv_ivtv=no
4232 _def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4233 _vidix_drv_mach64=no
4234 _def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4235 _vidix_drv_mga=no
4236 _def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4237 _vidix_drv_mga_crtc2=no
4238 _def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4239 _vidix_drv_nvidia=no
4240 _def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4241 _vidix_drv_pm2=no
4242 _def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4243 _vidix_drv_pm3=no
4244 _def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4245 _vidix_drv_radeon=no
4246 _def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4247 _vidix_drv_rage128=no
4248 _def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4249 _vidix_drv_s3=no
4250 _def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4251 _vidix_drv_sh_veu=no
4252 _def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4253 _vidix_drv_sis=no
4254 _def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4255 _vidix_drv_unichrome=no
4256 if test "$_vidix" = auto ; then
4257 _vidix=no
4258 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4259 && _vidix=yes
4260 (ppc || alpha) && linux && _vidix=yes
4262 echores "$_vidix"
4264 if test "$_vidix" = yes ; then
4265 _def_vidix='#define CONFIG_VIDIX 1'
4266 _vosrc="$_vosrc vo_cvidix.c"
4267 _vomodules="cvidix $_vomodules"
4268 test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4269 test $_ivtv = "yes" || _vidix_drivers=`echo $_vidix_drivers | sed s/ivtv//`
4271 # some vidix drivers are architecture and os specific, discard them elsewhere
4272 x86 || _vidix_drivers=`echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//`
4273 (test $host_arch = "sh" && linux) || _vidix_drivers=`echo $_vidix_drivers | sed s/sh_veu//`
4275 for driver in $_vidix_drivers ; do
4276 uc_driver=`echo $driver | tr '[a-z]' '[A-Z]'`
4277 eval _vidix_drv_${driver}=yes
4278 eval _def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4279 done
4281 echocheck "VIDIX PCI device name database"
4282 echores "$_vidix_pcidb"
4283 if test "$_vidix_pcidb" = yes ; then
4284 _vidix_pcidb_val=1
4285 else
4286 _vidix_pcidb_val=0
4289 echocheck "VIDIX dhahelper support"
4290 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4291 echores "$_dhahelper"
4293 echocheck "VIDIX svgalib_helper support"
4294 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4295 echores "$_svgalib_helper"
4297 else
4298 _novomodules="cvidix $_novomodules"
4301 if test "$_vidix" = yes && win32; then
4302 _vosrc="$_vosrc vo_winvidix.c"
4303 _vomodules="winvidix $_vomodules"
4304 _libs_mplayer="$_libs_mplayer -lgdi32"
4305 else
4306 _novomodules="winvidix $_novomodules"
4308 if test "$_vidix" = yes && test "$_x11" = yes; then
4309 _vosrc="$_vosrc vo_xvidix.c"
4310 _vomodules="xvidix $_vomodules"
4311 else
4312 _novomodules="xvidix $_novomodules"
4315 echocheck "/dev/mga_vid"
4316 if test "$_mga" = auto ; then
4317 _mga=no
4318 test -c /dev/mga_vid && _mga=yes
4320 if test "$_mga" = yes ; then
4321 _def_mga='#define CONFIG_MGA 1'
4322 _vosrc="$_vosrc vo_mga.c"
4323 _vomodules="mga $_vomodules"
4324 else
4325 _def_mga='#undef CONFIG_MGA'
4326 _novomodules="mga $_novomodules"
4328 echores "$_mga"
4331 echocheck "xmga"
4332 if test "$_xmga" = auto ; then
4333 _xmga=no
4334 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
4336 if test "$_xmga" = yes ; then
4337 _def_xmga='#define CONFIG_XMGA 1'
4338 _vosrc="$_vosrc vo_xmga.c"
4339 _vomodules="xmga $_vomodules"
4340 else
4341 _def_xmga='#undef CONFIG_XMGA'
4342 _novomodules="xmga $_novomodules"
4344 echores "$_xmga"
4347 echocheck "GGI"
4348 if test "$_ggi" = auto ; then
4349 cat > $TMPC << EOF
4350 #include <ggi/ggi.h>
4351 int main(void) { ggiInit(); return 0; }
4353 _ggi=no
4354 cc_check -lggi && _ggi=yes
4356 if test "$_ggi" = yes ; then
4357 _def_ggi='#define CONFIG_GGI 1'
4358 _libs_mplayer="$_libs_mplayer -lggi"
4359 _vosrc="$_vosrc vo_ggi.c"
4360 _vomodules="ggi $_vomodules"
4361 else
4362 _def_ggi='#undef CONFIG_GGI'
4363 _novomodules="ggi $_novomodules"
4365 echores "$_ggi"
4367 echocheck "GGI extension: libggiwmh"
4368 if test "$_ggiwmh" = auto ; then
4369 _ggiwmh=no
4370 cat > $TMPC << EOF
4371 #include <ggi/ggi.h>
4372 #include <ggi/wmh.h>
4373 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4375 cc_check -lggi -lggiwmh && _ggiwmh=yes
4377 # needed to get right output on obscure combination
4378 # like --disable-ggi --enable-ggiwmh
4379 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4380 _def_ggiwmh='#define CONFIG_GGIWMH 1'
4381 _libs_mplayer="$_libs_mplayer -lggiwmh"
4382 else
4383 _ggiwmh=no
4384 _def_ggiwmh='#undef CONFIG_GGIWMH'
4386 echores "$_ggiwmh"
4389 echocheck "AA"
4390 if test "$_aa" = auto ; then
4391 cat > $TMPC << EOF
4392 #include <aalib.h>
4393 extern struct aa_hardware_params aa_defparams;
4394 extern struct aa_renderparams aa_defrenderparams;
4395 int main(void) {
4396 aa_context *c;
4397 aa_renderparams *p;
4398 (void) aa_init(0, 0, 0);
4399 c = aa_autoinit(&aa_defparams);
4400 p = aa_getrenderparams();
4401 aa_autoinitkbd(c,0);
4402 return 0; }
4404 _aa=no
4405 for _ld_tmp in "-laa" ; do
4406 cc_check $_ld_tmp && _libs_mplayer="$_libs_mplayer $_ld_tmp" && _aa=yes && break
4407 done
4409 if test "$_aa" = yes ; then
4410 _def_aa='#define CONFIG_AA 1'
4411 if cygwin ; then
4412 _libs_mplayer="$_libs_mplayer `aalib-config --libs | cut -d " " -f 2,5,6`"
4414 _vosrc="$_vosrc vo_aa.c"
4415 _vomodules="aa $_vomodules"
4416 else
4417 _def_aa='#undef CONFIG_AA'
4418 _novomodules="aa $_novomodules"
4420 echores "$_aa"
4423 echocheck "CACA"
4424 if test "$_caca" = auto ; then
4425 _caca=no
4426 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4427 cat > $TMPC << EOF
4428 #include <caca.h>
4429 #ifdef CACA_API_VERSION_1
4430 #include <caca0.h>
4431 #endif
4432 int main(void) { (void) caca_init(); return 0; }
4434 cc_check `caca-config --libs` && _caca=yes
4437 if test "$_caca" = yes ; then
4438 _def_caca='#define CONFIG_CACA 1'
4439 _inc_extra="$_inc_extra `caca-config --cflags`"
4440 _libs_mplayer="$_libs_mplayer `caca-config --libs`"
4441 _vosrc="$_vosrc vo_caca.c"
4442 _vomodules="caca $_vomodules"
4443 else
4444 _def_caca='#undef CONFIG_CACA'
4445 _novomodules="caca $_novomodules"
4447 echores "$_caca"
4450 echocheck "SVGAlib"
4451 if test "$_svga" = auto ; then
4452 cat > $TMPC << EOF
4453 #include <vga.h>
4454 int main(void) { return 0; }
4456 _svga=no
4457 cc_check -lvga $_ld_lm && _svga=yes
4459 if test "$_svga" = yes ; then
4460 _def_svga='#define CONFIG_SVGALIB 1'
4461 _libs_mplayer="$_libs_mplayer -lvga"
4462 _vosrc="$_vosrc vo_svga.c"
4463 _vomodules="svga $_vomodules"
4464 else
4465 _def_svga='#undef CONFIG_SVGALIB'
4466 _novomodules="svga $_novomodules"
4468 echores "$_svga"
4471 echocheck "FBDev"
4472 if test "$_fbdev" = auto ; then
4473 _fbdev=no
4474 linux && _fbdev=yes
4476 if test "$_fbdev" = yes ; then
4477 _def_fbdev='#define CONFIG_FBDEV 1'
4478 _vosrc="$_vosrc vo_fbdev.c vo_fbdev2.c"
4479 _vomodules="fbdev $_vomodules"
4480 else
4481 _def_fbdev='#undef CONFIG_FBDEV'
4482 _novomodules="fbdev $_novomodules"
4484 echores "$_fbdev"
4488 echocheck "DVB"
4489 if test "$_dvb" = auto ; then
4490 _dvb=no
4491 cat >$TMPC << EOF
4492 #include <poll.h>
4493 #include <sys/ioctl.h>
4494 #include <stdio.h>
4495 #include <time.h>
4496 #include <unistd.h>
4497 #include <ost/dmx.h>
4498 #include <ost/frontend.h>
4499 #include <ost/sec.h>
4500 #include <ost/video.h>
4501 #include <ost/audio.h>
4502 int main(void) {return 0;}
4504 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4505 cc_check $_inc_tmp && _dvb=yes && \
4506 _inc_extra="$_inc_extra $_inc_tmp" && break
4507 done
4509 echores "$_dvb"
4510 if test "$_dvb" = yes ; then
4511 _def_dvb='#define CONFIG_DVB 1'
4512 _def_dvbin='#define CONFIG_DVBIN 1'
4513 _aomodules="mpegpes(dvb) $_aomodules"
4514 _vomodules="mpegpes(dvb) $_vomodules"
4517 echocheck "DVB HEAD"
4518 if test "$_dvbhead" = auto ; then
4519 _dvbhead=no
4521 cat >$TMPC << EOF
4522 #include <poll.h>
4523 #include <sys/ioctl.h>
4524 #include <stdio.h>
4525 #include <time.h>
4526 #include <unistd.h>
4527 #include <linux/dvb/dmx.h>
4528 #include <linux/dvb/frontend.h>
4529 #include <linux/dvb/video.h>
4530 #include <linux/dvb/audio.h>
4531 int main(void) {return 0;}
4533 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4534 cc_check $_inc_tmp && _dvbhead=yes && \
4535 _inc_extra="$_inc_extra $_inc_tmp" && break
4536 done
4538 echores "$_dvbhead"
4539 if test "$_dvbhead" = yes ; then
4540 _def_dvb='#define CONFIG_DVB 1'
4541 _def_dvb_head='#define CONFIG_DVB_HEAD 1'
4542 _def_dvbin='#define CONFIG_DVBIN 1'
4543 _aomodules="mpegpes(dvb) $_aomodules"
4544 _vomodules="mpegpes(dvb) $_vomodules"
4547 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4548 _def_dvb='#undef CONFIG_DVB'
4549 _def_dvb_head='#undef CONFIG_DVB_HEAD'
4550 _def_dvbin='#undef CONFIG_DVBIN '
4551 _aomodules="mpegpes(file) $_aomodules"
4552 _vomodules="mpegpes(file) $_vomodules"
4555 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4556 _dvbin=yes
4557 _inputmodules="dvb $_inputmodules"
4558 else
4559 _dvbin=no
4560 _noinputmodules="dvb $_noinputmodules"
4566 echocheck "PNG support"
4567 if test "$_png" = auto ; then
4568 _png=no
4569 if irix ; then
4570 # Don't check for -lpng on irix since it has its own libpng
4571 # incompatible with the GNU libpng
4572 _res_comment="disabled on irix (not GNU libpng)"
4573 else
4574 cat > $TMPC << EOF
4575 #include <png.h>
4576 #include <string.h>
4577 int main(void) {
4578 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4579 printf("libpng: %s\n", png_libpng_ver);
4580 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4583 if cc_check -lpng -lz $_ld_lm ; then
4584 if tmp_run ; then
4585 _png=yes
4586 else
4587 _res_comment="mismatch of library and header versions"
4592 echores "$_png"
4593 if test "$_png" = yes ; then
4594 _def_png='#define CONFIG_PNG 1'
4595 _ld_extra="$_ld_extra -lpng -lz"
4596 _vosrc="$_vosrc vo_png.c"
4597 _vomodules="png $_vomodules"
4598 else
4599 _def_png='#undef CONFIG_PNG'
4600 _novomodules="png $_novomodules"
4603 echocheck "JPEG support"
4604 if test "$_jpeg" = auto ; then
4605 _jpeg=no
4606 cat > $TMPC << EOF
4607 #include <stdio.h>
4608 #include <stdlib.h>
4609 #include <setjmp.h>
4610 #include <string.h>
4611 #include <jpeglib.h>
4612 int main(void) { return 0; }
4614 if cc_check -ljpeg $_ld_lm ; then
4615 if tmp_run ; then
4616 _jpeg=yes
4620 echores "$_jpeg"
4622 if test "$_jpeg" = yes ; then
4623 _def_jpeg='#define CONFIG_JPEG 1'
4624 _vosrc="$_vosrc vo_jpeg.c"
4625 _vomodules="jpeg $_vomodules"
4626 _ld_extra="$_ld_extra -ljpeg"
4627 else
4628 _def_jpeg='#undef CONFIG_JPEG'
4629 _novomodules="jpeg $_novomodules"
4634 echocheck "PNM support"
4635 if test "$_pnm" = yes; then
4636 _def_pnm="#define CONFIG_PNM"
4637 _vosrc="$_vosrc vo_pnm.c"
4638 _vomodules="pnm $_vomodules"
4639 else
4640 _def_pnm="#undef CONFIG_PNM"
4641 _novomodules="pnm $_novomodules"
4643 echores "$_pnm"
4647 echocheck "GIF support"
4648 # This is to appease people who want to force gif support.
4649 # If it is forced to yes, then we still do checks to determine
4650 # which gif library to use.
4651 if test "$_gif" = yes ; then
4652 _force_gif=yes
4653 _gif=auto
4656 if test "$_gif" = auto ; then
4657 _gif=no
4658 cat > $TMPC << EOF
4659 #include <gif_lib.h>
4660 int main(void) { return 0; }
4662 for _ld_gif in "-lungif" "-lgif" ; do
4663 cc_check $_ld_gif && tmp_run && _gif=yes && break
4664 done
4667 # If no library was found, and the user wants support forced,
4668 # then we force it on with libgif, as this is the safest
4669 # assumption IMHO. (libungif & libregif both create symbolic
4670 # links to libgif. We also assume that no x11 support is needed,
4671 # because if you are forcing this, then you _should_ know what
4672 # you are doing. [ Besides, package maintainers should never
4673 # have compiled x11 deps into libungif in the first place. ] )
4674 # </rant>
4675 # --Joey
4676 if test "$_force_gif" = yes && test "$_gif" = no ; then
4677 _gif=yes
4678 _ld_gif="-lgif"
4681 if test "$_gif" = yes ; then
4682 _def_gif='#define CONFIG_GIF 1'
4683 _vosrc="$_vosrc vo_gif89a.c"
4684 _codecmodules="gif $_codecmodules"
4685 _vomodules="gif89a $_vomodules"
4686 _res_comment="old version, some encoding functions disabled"
4687 _def_gif_4='#undef CONFIG_GIF_4'
4688 _ld_extra="$_ld_extra $_ld_gif"
4690 cat > $TMPC << EOF
4691 #include <signal.h>
4692 #include <gif_lib.h>
4693 void catch() { exit(1); }
4694 int main(void) {
4695 signal(SIGSEGV, catch); // catch segfault
4696 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4697 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4698 return 0;
4701 if cc_check "$_ld_gif" && tmp_run ; then
4702 _def_gif_4='#define CONFIG_GIF_4 1'
4703 _res_comment=""
4705 else
4706 _def_gif='#undef CONFIG_GIF'
4707 _def_gif_4='#undef CONFIG_GIF_4'
4708 _novomodules="gif89a $_novomodules"
4709 _nocodecmodules="gif $_nocodecmodules"
4711 echores "$_gif"
4714 case "$_gif" in yes*)
4715 echocheck "broken giflib workaround"
4716 _def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4718 cat > $TMPC << EOF
4719 #include <gif_lib.h>
4720 int main(void) {
4721 GifFileType gif;
4722 printf("UserData is at address %p\n", gif.UserData);
4723 return 0;
4726 if cc_check "$_ld_gif" && tmp_run ; then
4727 _def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4728 echores "disabled"
4729 else
4730 echores "enabled"
4733 esac
4736 echocheck "VESA support"
4737 if test "$_vesa" = auto ; then
4738 cat > $TMPC << EOF
4739 #include <vbe.h>
4740 int main(void) { vbeVersion(); return 0; }
4742 _vesa=no
4743 cc_check -lvbe -llrmi && _vesa=yes
4745 if test "$_vesa" = yes ; then
4746 _def_vesa='#define CONFIG_VESA 1'
4747 _libs_mplayer="$_libs_mplayer -lvbe -llrmi"
4748 _vosrc="$_vosrc vo_vesa.c vesa_lvo.c gtf.c"
4749 _vomodules="vesa $_vomodules"
4750 else
4751 _def_vesa='#undef CONFIG_VESA'
4752 _novomodules="vesa $_novomodules"
4754 echores "$_vesa"
4756 #################
4757 # VIDEO + AUDIO #
4758 #################
4761 echocheck "SDL"
4762 if test -z "$_sdlconfig" ; then
4763 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4764 _sdlconfig="sdl-config"
4765 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4766 _sdlconfig="sdl11-config"
4767 else
4768 _sdlconfig=false
4771 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4772 cat > $TMPC << EOF
4773 #include <SDL.h>
4774 int main(void) {
4775 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4776 return 0;
4779 _sdl=no
4780 if "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4781 if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` >>"$TMPLOG" 2>&1 ; then
4782 _sdlversion=`$_sdlconfig --version | sed 's/[^0-9]//g'`
4783 if test "$_sdlversion" -gt 116 ; then
4784 if test "$_sdlversion" -lt 121 ; then
4785 _def_sdlbuggy='#define BUGGY_SDL'
4786 else
4787 _def_sdlbuggy='#undef BUGGY_SDL'
4789 _sdl=yes
4794 if test "$_sdl" = yes ; then
4795 _def_sdl='#define CONFIG_SDL 1'
4796 if cygwin ; then
4797 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/`"
4798 _inc_extra="$_inc_extra `$_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/`"
4799 elif mingw32 ; then
4800 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//`"
4801 _inc_extra="$_inc_extra `$_sdlconfig --cflags | sed s/-Dmain=SDL_main//`"
4802 else
4803 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs`"
4804 _inc_extra="$_inc_extra `$_sdlconfig --cflags | sed s/-D_GNU_SOURCE=1//`"
4806 _vosrc="$_vosrc vo_sdl.c"
4807 _vomodules="sdl $_vomodules"
4808 _aosrc="$_aosrc ao_sdl.c"
4809 _aomodules="sdl $_aomodules"
4810 _res_comment="using $_sdlconfig"
4811 else
4812 _def_sdl='#undef CONFIG_SDL'
4813 _novomodules="sdl $_novomodules"
4814 _noaomodules="sdl $_noaomodules"
4816 echores "$_sdl"
4819 if win32; then
4821 echocheck "Windows waveout"
4822 if test "$_win32waveout" = auto ; then
4823 cat > $TMPC << EOF
4824 #include <windows.h>
4825 #include <mmsystem.h>
4826 int main(void) { return 0; }
4828 _win32waveout=no
4829 cc_check -lwinmm && _win32waveout=yes
4831 if test "$_win32waveout" = yes ; then
4832 _def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
4833 _libs_mplayer="$_libs_mplayer -lwinmm"
4834 _aosrc="$_aosrc ao_win32.c"
4835 _aomodules="win32 $_aomodules"
4836 else
4837 _def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
4838 _noaomodules="win32 $_noaomodules"
4840 echores "$_win32waveout"
4842 echocheck "Directx"
4843 if test "$_directx" = auto ; then
4844 cat > $TMPC << EOF
4845 #include <windows.h>
4846 #include <ddraw.h>
4847 #include <dsound.h>
4848 int main(void) { return 0; }
4850 _directx=no
4851 cc_check -lgdi32 && _directx=yes
4853 if test "$_directx" = yes ; then
4854 _def_directx='#define CONFIG_DIRECTX 1'
4855 _libs_mplayer="$_libs_mplayer -lgdi32"
4856 _vosrc="$_vosrc vo_directx.c"
4857 _vomodules="directx $_vomodules"
4858 _aosrc="$_aosrc ao_dsound.c"
4859 _aomodules="dsound $_aomodules"
4860 else
4861 _def_directx='#undef CONFIG_DIRECTX'
4862 _novomodules="directx $_novomodules"
4863 _noaomodules="dsound $_noaomodules"
4865 echores "$_directx"
4867 fi #if win32; then
4870 echocheck "NAS"
4871 if test "$_nas" = auto ; then
4872 cat > $TMPC << EOF
4873 #include <audio/audiolib.h>
4874 int main(void) { return 0; }
4876 _nas=no
4877 cc_check $_ld_lm -laudio -lXt && _nas=yes
4879 if test "$_nas" = yes ; then
4880 _def_nas='#define CONFIG_NAS 1'
4881 _libs_mplayer="$_libs_mplayer -laudio -lXt"
4882 _aosrc="$_aosrc ao_nas.c"
4883 _aomodules="nas $_aomodules"
4884 else
4885 _noaomodules="nas $_noaomodules"
4886 _def_nas='#undef CONFIG_NAS'
4888 echores "$_nas"
4890 echocheck "DXR2"
4891 if test "$_dxr2" = auto; then
4892 _dxr2=no
4893 cat > $TMPC << EOF
4894 #include <dxr2ioctl.h>
4895 int main(void) { return 0; }
4897 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
4898 cc_check $_inc_tmp && _dxr2=yes && \
4899 _inc_extra="$_inc_extra $_inc_tmp" && break
4900 done
4902 if test "$_dxr2" = yes; then
4903 _def_dxr2='#define CONFIG_DXR2 1'
4904 _vosrc="$_vosrc vo_dxr2.c"
4905 _aosrc="$_aosrc ao_dxr2.c"
4906 _aomodules="dxr2 $_aomodules"
4907 _vomodules="dxr2 $_vomodules"
4908 else
4909 _def_dxr2='#undef CONFIG_DXR2'
4910 _noaomodules="dxr2 $_noaomodules"
4911 _novomodules="dxr2 $_novomodules"
4913 echores "$_dxr2"
4915 echocheck "DXR3/H+"
4916 if test "$_dxr3" = auto ; then
4917 cat > $TMPC << EOF
4918 #include <linux/em8300.h>
4919 int main(void) { return 0; }
4921 _dxr3=no
4922 cc_check && _dxr3=yes
4924 if test "$_dxr3" = yes ; then
4925 _def_dxr3='#define CONFIG_DXR3 1'
4926 _vosrc="$_vosrc vo_dxr3.c"
4927 _vomodules="dxr3 $_vomodules"
4928 else
4929 _def_dxr3='#undef CONFIG_DXR3'
4930 _novomodules="dxr3 $_novomodules"
4932 echores "$_dxr3"
4935 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4936 if test "$_ivtv" = auto ; then
4937 cat > $TMPC << EOF
4938 #include <stdlib.h>
4939 #include <inttypes.h>
4940 #include <linux/types.h>
4941 #include <linux/videodev2.h>
4942 #include <linux/ivtv.h>
4943 #include <sys/ioctl.h>
4944 int main(void) {
4945 struct ivtv_cfg_stop_decode sd;
4946 struct ivtv_cfg_start_decode sd1;
4947 ioctl (0, IVTV_IOC_START_DECODE, &sd1);
4948 ioctl (0, IVTV_IOC_STOP_DECODE, &sd);
4949 return 0; }
4951 _ivtv=no
4952 cc_check && _ivtv=yes
4954 if test "$_ivtv" = yes ; then
4955 _def_ivtv='#define CONFIG_IVTV 1'
4956 _vosrc="$_vosrc vo_ivtv.c"
4957 _vomodules="ivtv $_vomodules"
4958 _aosrc="$_aosrc ao_ivtv.c"
4959 _aomodules="ivtv $_aomodules"
4960 else
4961 _def_ivtv='#undef CONFIG_IVTV'
4962 _novomodules="ivtv $_novomodules"
4963 _noaomodules="ivtv $_noaomodules"
4965 echores "$_ivtv"
4968 echocheck "V4L2 MPEG Decoder"
4969 if test "$_v4l2" = auto ; then
4970 cat > $TMPC << EOF
4971 #include <stdlib.h>
4972 #include <inttypes.h>
4973 #include <linux/types.h>
4974 #include <linux/videodev2.h>
4975 #include <linux/version.h>
4976 int main(void) {
4977 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
4978 #error kernel headers too old, need 2.6.22
4979 bad_kernel_version();
4980 #endif
4981 struct v4l2_ext_controls ctrls;
4982 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
4983 return 0;
4986 _v4l2=no
4987 cc_check && _v4l2=yes
4989 if test "$_v4l2" = yes ; then
4990 _def_v4l2='#define CONFIG_V4L2_DECODER 1'
4991 _vosrc="$_vosrc vo_v4l2.c"
4992 _vomodules="v4l2 $_vomodules"
4993 _aosrc="$_aosrc ao_v4l2.c"
4994 _aomodules="v4l2 $_aomodules"
4995 else
4996 _def_v4l2='#undef CONFIG_V4L2_DECODER'
4997 _novomodules="v4l2 $_novomodules"
4998 _noaomodules="v4l2 $_noaomodules"
5000 echores "$_v4l2"
5004 #########
5005 # AUDIO #
5006 #########
5009 echocheck "OSS Audio"
5010 if test "$_ossaudio" = auto ; then
5011 cat > $TMPC << EOF
5012 #include <sys/ioctl.h>
5013 #include <$_soundcard_header>
5014 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5016 _ossaudio=no
5017 cc_check && _ossaudio=yes
5019 if test "$_ossaudio" = yes ; then
5020 _def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5021 _aosrc="$_aosrc ao_oss.c"
5022 _aomodules="oss $_aomodules"
5023 if test "$_linux_devfs" = yes; then
5024 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5025 _def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5026 else
5027 cat > $TMPC << EOF
5028 #include <sys/ioctl.h>
5029 #include <$_soundcard_header>
5030 #ifdef OPEN_SOUND_SYSTEM
5031 int main(void) { return 0; }
5032 #else
5033 #error Not the real thing
5034 #endif
5036 _real_ossaudio=no
5037 cc_check && _real_ossaudio=yes
5038 if test "$_real_ossaudio" = yes; then
5039 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5040 elif netbsd || openbsd ; then
5041 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5042 _ld_extra="$_ld_extra -lossaudio"
5043 else
5044 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5046 _def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5048 else
5049 _def_ossaudio='#undef CONFIG_OSS_AUDIO'
5050 _def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5051 _def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5052 _noaomodules="oss $_noaomodules"
5054 echores "$_ossaudio"
5057 echocheck "aRts"
5058 if test "$_arts" = auto ; then
5059 _arts=no
5060 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5062 cat > $TMPC << EOF
5063 #include <artsc.h>
5064 int main(void) { return 0; }
5066 cc_check `artsc-config --libs` `artsc-config --cflags` && tmp_run && _arts=yes
5071 if test "$_arts" = yes ; then
5072 _def_arts='#define CONFIG_ARTS 1'
5073 _aosrc="$_aosrc ao_arts.c"
5074 _aomodules="arts $_aomodules"
5075 _libs_mplayer="$_libs_mplayer `artsc-config --libs`"
5076 _inc_extra="$_inc_extra `artsc-config --cflags`"
5077 else
5078 _noaomodules="arts $_noaomodules"
5080 echores "$_arts"
5083 echocheck "EsounD"
5084 if test "$_esd" = auto ; then
5085 _esd=no
5086 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5088 cat > $TMPC << EOF
5089 #include <esd.h>
5090 int main(void) { int fd = esd_open_sound("test"); return fd; }
5092 cc_check `esd-config --libs` `esd-config --cflags` && _esd=yes
5096 echores "$_esd"
5098 if test "$_esd" = yes ; then
5099 _def_esd='#define CONFIG_ESD 1'
5100 _aosrc="$_aosrc ao_esd.c"
5101 _aomodules="esd $_aomodules"
5102 _libs_mplayer="$_libs_mplayer `esd-config --libs`"
5103 _inc_extra="$_inc_extra `esd-config --cflags`"
5105 echocheck "esd_get_latency()"
5106 cat > $TMPC << EOF
5107 #include <esd.h>
5108 int main(void) { return esd_get_latency(0); }
5110 cc_check `esd-config --libs` `esd-config --cflags` && _esd_latency=yes && _def_esd_latency='#define CONFIG_ESD_LATENCY'
5111 echores "$_esd_latency"
5112 else
5113 _def_esd='#undef CONFIG_ESD'
5114 _def_esd_latency='#undef CONFIG_ESD_LATENCY'
5115 _noaomodules="esd $_noaomodules"
5118 echocheck "pulse"
5119 if test "$_pulse" = auto ; then
5120 _pulse=no
5121 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5123 cat > $TMPC << EOF
5124 #include <pulse/pulseaudio.h>
5125 int main(void) { return 0; }
5127 cc_check `$_pkg_config --libs --cflags libpulse` && tmp_run && _pulse=yes
5131 echores "$_pulse"
5133 if test "$_pulse" = yes ; then
5134 _def_pulse='#define CONFIG_PULSE 1'
5135 _aosrc="$_aosrc ao_pulse.c"
5136 _aomodules="pulse $_aomodules"
5137 _libs_mplayer="$_libs_mplayer `$_pkg_config --libs libpulse`"
5138 _inc_extra="$_inc_extra `$_pkg_config --cflags libpulse`"
5139 else
5140 _def_pulse='#undef CONFIG_PULSE'
5141 _noaomodules="pulse $_noaomodules"
5145 echocheck "JACK"
5146 if test "$_jack" = auto ; then
5147 _jack=yes
5149 cat > $TMPC << EOF
5150 #include <jack/jack.h>
5151 int main(void) { jack_client_new("test"); return 0; }
5153 if cc_check -ljack ; then
5154 _libs_mplayer="$_libs_mplayer -ljack"
5155 elif cc_check `$_pkg_config --libs --cflags --silence-errors jack` ; then
5156 _libs_mplayer="$_libs_mplayer `$_pkg_config --libs jack`"
5157 _inc_extra="$_inc_extra "`$_pkg_config --cflags jack`""
5158 else
5159 _jack=no
5163 if test "$_jack" = yes ; then
5164 _def_jack='#define CONFIG_JACK 1'
5165 _aosrc="$_aosrc ao_jack.c"
5166 _aomodules="jack $_aomodules"
5167 else
5168 _noaomodules="jack $_noaomodules"
5170 echores "$_jack"
5172 echocheck "OpenAL"
5173 if test "$_openal" = auto ; then
5174 _openal=no
5175 cat > $TMPC << EOF
5176 #ifdef OPENAL_AL_H
5177 #include <OpenAL/al.h>
5178 #else
5179 #include <AL/al.h>
5180 #endif
5181 int main(void) {
5182 alSourceQueueBuffers(0, 0, 0);
5183 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5184 return 0;
5187 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5188 cc_check $I && _openal=yes && break
5189 cc_check -DOPENAL_AL_H=1 $I && _def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5190 done
5191 test "$_openal" = yes && _libs_mplayer="$_libs_mplayer $I"
5193 if test "$_openal" = yes ; then
5194 _def_openal='#define CONFIG_OPENAL 1'
5195 _aosrc="$_aosrc ao_openal.c"
5196 _aomodules="openal $_aomodules"
5197 else
5198 _noaomodules="openal $_noaomodules"
5200 echores "$_openal"
5202 echocheck "ALSA audio"
5203 if test "$_alloca" != yes ; then
5204 _alsa=no
5205 _res_comment="alloca missing"
5207 if test "$_alsa" != no ; then
5208 _alsa=no
5209 cat > $TMPC << EOF
5210 #include <sys/time.h>
5211 #include <sys/asoundlib.h>
5212 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5213 #error "alsa version != 0.5.x"
5214 #endif
5215 int main(void) { return 0; }
5217 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5219 cat > $TMPC << EOF
5220 #include <sys/time.h>
5221 #include <sys/asoundlib.h>
5222 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5223 #error "alsa version != 0.9.x"
5224 #endif
5225 int main(void) { return 0; }
5227 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5228 cat > $TMPC << EOF
5229 #include <sys/time.h>
5230 #include <alsa/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-alsa'
5238 cat > $TMPC << EOF
5239 #include <sys/time.h>
5240 #include <sys/asoundlib.h>
5241 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5242 #error "alsa version != 1.0.x"
5243 #endif
5244 int main(void) { return 0; }
5246 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5247 cat > $TMPC << EOF
5248 #include <sys/time.h>
5249 #include <alsa/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-alsa'
5257 _def_alsa='#undef CONFIG_ALSA'
5258 _def_alsa5='#undef CONFIG_ALSA5'
5259 _def_alsa9='#undef CONFIG_ALSA9'
5260 _def_alsa1x='#undef CONFIG_ALSA1X'
5261 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5262 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5263 if test "$_alsaver" ; then
5264 _alsa=yes
5265 if test "$_alsaver" = '0.5.x' ; then
5266 _alsa5=yes
5267 _aosrc="$_aosrc ao_alsa5.c"
5268 _aomodules="alsa5 $_aomodules"
5269 _def_alsa5='#define CONFIG_ALSA5 1'
5270 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5271 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5272 elif test "$_alsaver" = '0.9.x-sys' ; then
5273 _alsa9=yes
5274 _aosrc="$_aosrc ao_alsa.c"
5275 _aomodules="alsa $_aomodules"
5276 _def_alsa='#define CONFIG_ALSA 1'
5277 _def_alsa9='#define CONFIG_ALSA9 1'
5278 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5279 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5280 elif test "$_alsaver" = '0.9.x-alsa' ; then
5281 _alsa9=yes
5282 _aosrc="$_aosrc ao_alsa.c"
5283 _aomodules="alsa $_aomodules"
5284 _def_alsa='#define CONFIG_ALSA 1'
5285 _def_alsa9='#define CONFIG_ALSA9 1'
5286 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5287 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5288 elif test "$_alsaver" = '1.0.x-sys' ; then
5289 _alsa1x=yes
5290 _aosrc="$_aosrc ao_alsa.c"
5291 _aomodules="alsa $_aomodules"
5292 _def_alsa='#define CONFIG_ALSA 1'
5293 _def_alsa1x="#define CONFIG_ALSA1X 1"
5294 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5295 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5296 elif test "$_alsaver" = '1.0.x-alsa' ; then
5297 _alsa1x=yes
5298 _aosrc="$_aosrc ao_alsa.c"
5299 _aomodules="alsa $_aomodules"
5300 _def_alsa='#define CONFIG_ALSA 1'
5301 _def_alsa1x="#define CONFIG_ALSA1X 1"
5302 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5303 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5304 else
5305 _alsa=no
5306 _res_comment="unknown version"
5308 _ld_extra="$_ld_extra -lasound $_ld_dl $_ld_pthread"
5309 else
5310 _noaomodules="alsa $_noaomodules"
5312 echores "$_alsa"
5315 echocheck "Sun audio"
5316 if test "$_sunaudio" = auto ; then
5317 cat > $TMPC << EOF
5318 #include <sys/types.h>
5319 #include <sys/audioio.h>
5320 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5322 _sunaudio=no
5323 cc_check && _sunaudio=yes
5325 if test "$_sunaudio" = yes ; then
5326 _def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5327 _aosrc="$_aosrc ao_sun.c"
5328 _aomodules="sun $_aomodules"
5329 else
5330 _def_sunaudio='#undef CONFIG_SUN_AUDIO'
5331 _noaomodules="sun $_noaomodules"
5333 echores "$_sunaudio"
5336 if sunos; then
5337 echocheck "Sun mediaLib"
5338 if test "$_mlib" = auto ; then
5339 _mlib=no
5340 cat > $TMPC << EOF
5341 #include <mlib.h>
5342 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5344 cc_check -lmlib && _mlib=yes
5346 test "$_mlib" = yes && _cpuexts="MLIB $_cpuexts"
5347 echores "$_mlib"
5348 fi #if sunos
5351 if irix; then
5352 echocheck "SGI audio"
5353 if test "$_sgiaudio" = auto ; then
5354 # check for SGI audio
5355 cat > $TMPC << EOF
5356 #include <dmedia/audio.h>
5357 int main(void) { return 0; }
5359 _sgiaudio=no
5360 cc_check && _sgiaudio=yes
5362 if test "$_sgiaudio" = "yes" ; then
5363 _def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5364 _libs_mplayer="$_libs_mplayer -laudio"
5365 _aosrc="$_aosrc ao_sgi.c"
5366 _aomodules="sgi $_aomodules"
5367 else
5368 _def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5369 _noaomodules="sgi $_noaomodules"
5371 echores "$_sgiaudio"
5372 fi #if irix
5375 echocheck "VCD support"
5376 if linux || freebsd || netbsd || dragonfly || bsdos || darwin || sunos || mingw32; then
5377 _inputmodules="vcd $_inputmodules"
5378 _def_vcd='#define CONFIG_VCD 1'
5379 _vcd="yes"
5380 else
5381 _def_vcd='#undef CONFIG_VCD'
5382 _noinputmodules="vcd $_noinputmodules"
5383 _res_comment="not supported on this OS"
5384 _vcd="no"
5386 echores "$_vcd"
5390 echocheck "dvdread"
5391 if test "$_dvdread_internal" = auto ; then
5392 _dvdread_internal=no
5393 _dvdread=no
5394 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5395 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5396 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5397 || darwin || win32; then
5398 _dvdread_internal=yes
5399 _dvdread=yes
5401 elif test "$_dvdread" = auto ; then
5402 _dvdread=no
5403 if test "$_dl" = yes; then
5404 cat > $TMPC << EOF
5405 #include <inttypes.h>
5406 #include <dvdread/dvd_reader.h>
5407 #include <dvdread/ifo_types.h>
5408 #include <dvdread/ifo_read.h>
5409 #include <dvdread/nav_read.h>
5410 int main(void) { return 0; }
5413 _dvdreadcflags=`$_dvdreadconfig --cflags`
5414 _dvdreadlibs=`$_dvdreadconfig --libs`
5415 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5416 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5417 _dvdread=yes
5418 _inc_extra="$_inc_extra $_dvdreadcflags"
5419 _ld_extra="$_ld_extra $_dvdreadlibs"
5420 _res_comment="external"
5424 if test "$_dvdread_internal" = yes; then
5425 _def_dvdread_internal="#define CONFIG_DVDREAD_INTERNAL 1"
5426 _def_dvdread='#define CONFIG_DVDREAD 1'
5427 _inputmodules="dvdread(internal) $_inputmodules"
5428 _largefiles=yes
5429 _res_comment="internal"
5430 elif test "$_dvdread" = yes; then
5431 _def_dvdread='#define CONFIG_DVDREAD 1'
5432 _largefiles=yes
5433 _ld_extra="$_ld_extra -ldvdread"
5434 _inputmodules="dvdread(external) $_inputmodules"
5435 _res_comment="external"
5436 else
5437 _def_dvdread_internal="#undef CONFIG_DVDREAD_INTERNAL"
5438 _def_dvdread='#undef CONFIG_DVDREAD'
5439 _noinputmodules="dvdread $_noinputmodules"
5441 echores "$_dvdread"
5444 echocheck "internal libdvdcss"
5445 if test "$_libdvdcss_internal" = auto ; then
5446 _libdvdcss_internal=no
5447 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5448 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5450 if test "$_libdvdcss_internal" = yes ; then
5451 if linux || netbsd || openbsd || bsdos ; then
5452 _def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5453 openbsd && _def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5454 elif freebsd || dragonfly ; then
5455 _def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5456 elif darwin ; then
5457 _def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5458 _ld_extra="$_ld_extra -framework IOKit"
5459 elif cygwin ; then
5460 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5461 elif beos ; then
5462 cflags_libdvdcss="-DSYS_BEOS"
5463 elif os2 ; then
5464 cflags_libdvdcss="-DSYS_OS2"
5466 cflags_libdvdcss_dvdread="-Ilibdvdcss -DHAVE_DVDCSS_DVDCSS_H"
5467 _inputmodules="libdvdcss(internal) $_inputmodules"
5468 _largefiles=yes
5469 else
5470 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5472 echores "$_libdvdcss_internal"
5475 echocheck "cdparanoia"
5476 if test "$_cdparanoia" = auto ; then
5477 cat > $TMPC <<EOF
5478 #include <cdda_interface.h>
5479 #include <cdda_paranoia.h>
5480 // This need a better test. How ?
5481 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5483 _cdparanoia=no
5484 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5485 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5486 _cdparanoia=yes && _inc_extra="$_inc_extra $_inc_tmp" && break
5487 done
5489 if test "$_cdparanoia" = yes ; then
5490 _cdda='yes'
5491 _ld_extra="$_ld_extra -lcdda_interface -lcdda_paranoia"
5492 openbsd && _ld_extra="$_ld_extra -lutil"
5494 echores "$_cdparanoia"
5497 echocheck "libcdio"
5498 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5499 cat > $TMPC << EOF
5500 #include <stdio.h>
5501 #include <cdio/version.h>
5502 #include <cdio/cdda.h>
5503 #include <cdio/paranoia.h>
5504 int main(void) {
5505 void *test = cdda_verbose_set;
5506 printf("%s\n", CDIO_VERSION);
5507 return test == (void *)1;
5510 _libcdio=no
5511 for _ld_tmp in "" "-lwinmm" ; do
5512 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5513 cc_check $_ld_tmp $_ld_lm \
5514 && _libcdio=yes && _ld_extra="$_ld_extra $_ld_tmp" && break
5515 done
5516 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5517 _inc_tmp=`$_pkg_config --cflags libcdio_paranoia`
5518 _ld_tmp=`$_pkg_config --libs libcdio_paranoia`
5519 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5520 && _ld_extra="$_ld_extra $_ld_tmp" && _inc_extra="$_inc_extra $_inc_tmp"
5523 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5524 _cdda='yes'
5525 _def_libcdio='#define CONFIG_LIBCDIO'
5526 _def_havelibcdio='yes'
5527 else
5528 if test "$_cdparanoia" = yes ; then
5529 _res_comment="using cdparanoia"
5531 _def_libcdio='#undef CONFIG_LIBCDIO'
5532 _def_havelibcdio='no'
5534 echores "$_libcdio"
5536 if test "$_cdda" = yes ; then
5537 test $_cddb = auto && test $_network = yes && _cddb=yes
5538 _def_cdparanoia='#define CONFIG_CDDA'
5539 _inputmodules="cdda $_inputmodules"
5540 else
5541 _def_cdparanoia='#undef CONFIG_CDDA'
5542 _noinputmodules="cdda $_noinputmodules"
5545 if test "$_cddb" = yes ; then
5546 _def_cddb='#define CONFIG_CDDB'
5547 _inputmodules="cddb $_inputmodules"
5548 else
5549 _cddb=no
5550 _def_cddb='#undef CONFIG_CDDB'
5551 _noinputmodules="cddb $_noinputmodules"
5554 echocheck "bitmap font support"
5555 if test "$_bitmap_font" = yes ; then
5556 _def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5557 else
5558 _def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5560 echores "$_bitmap_font"
5563 echocheck "freetype >= 2.0.9"
5565 # freetype depends on iconv
5566 if test "$_iconv" = no ; then
5567 _freetype=no
5568 _res_comment="iconv support needed"
5571 if test "$_freetype" = auto ; then
5572 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5573 cat > $TMPC << EOF
5574 #include <stdio.h>
5575 #include <ft2build.h>
5576 #include FT_FREETYPE_H
5577 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5578 #error "Need FreeType 2.0.9 or newer"
5579 #endif
5580 int main(void) {
5581 FT_Library library;
5582 FT_Int major=-1,minor=-1,patch=-1;
5583 int err=FT_Init_FreeType(&library);
5584 if(err){
5585 printf("Couldn't initialize freetype2 lib, err code: %d\n",err);
5586 exit(err);
5588 FT_Library_Version(library,&major,&minor,&patch); // in v2.1.0+ only :(((
5589 printf("freetype2 header version: %d.%d.%d library version: %d.%d.%d\n",
5590 FREETYPE_MAJOR,FREETYPE_MINOR,FREETYPE_PATCH,
5591 (int)major,(int)minor,(int)patch );
5592 if(major!=FREETYPE_MAJOR || minor!=FREETYPE_MINOR){
5593 printf("Library and header version mismatch! Fix it in your distribution!\n");
5594 exit(1);
5596 return 0;
5599 _freetype=no
5600 cc_check `$_freetypeconfig --cflags` `$_freetypeconfig --libs` && tmp_run && _freetype=yes
5601 else
5602 _freetype=no
5605 if test "$_freetype" = yes ; then
5606 _def_freetype='#define CONFIG_FREETYPE'
5607 _inc_extra="$_inc_extra `$_freetypeconfig --cflags`"
5608 _ld_extra="$_ld_extra `$_freetypeconfig --libs`"
5609 else
5610 _def_freetype='#undef CONFIG_FREETYPE'
5612 echores "$_freetype"
5614 if test "$_freetype" = no ; then
5615 _fontconfig=no
5616 _res_comment="freetype support needed"
5618 echocheck "fontconfig"
5619 if test "$_fontconfig" = auto ; then
5620 cat > $TMPC << EOF
5621 #include <stdio.h>
5622 #include <stdlib.h>
5623 #include <fontconfig/fontconfig.h>
5624 int main(void) {
5625 int err = FcInit();
5626 if(err == FcFalse){
5627 printf("Couldn't initialize fontconfig lib\n");
5628 exit(err);
5630 return 0;
5633 _fontconfig=no
5634 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" ; do
5635 _ld_tmp="-lfontconfig $_ld_tmp"
5636 cc_check $_ld_tmp && _fontconfig=yes && _ld_extra="$_ld_extra $_ld_tmp" && break
5637 done
5638 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5639 _inc_tmp=`$_pkg_config --cflags fontconfig`
5640 _ld_tmp=`$_pkg_config --libs fontconfig`
5641 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
5642 && _ld_extra="$_ld_extra $_ld_tmp" && _inc_extra="$_inc_extra $_inc_tmp"
5645 if test "$_fontconfig" = yes ; then
5646 _def_fontconfig='#define CONFIG_FONTCONFIG'
5647 else
5648 _def_fontconfig='#undef CONFIG_FONTCONFIG'
5650 echores "$_fontconfig"
5653 echocheck "SSA/ASS support"
5654 # libass depends on FreeType
5655 if test "$_freetype" = no ; then
5656 _ass=no
5657 _res_comment="FreeType support needed"
5660 if test "$_ass" = auto ; then
5661 cat > $TMPC << EOF
5662 #include <ft2build.h>
5663 #include FT_FREETYPE_H
5664 #if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 1) || ((FREETYPE_MINOR == 1) && (FREETYPE_PATCH < 8)))
5665 #error "Need FreeType 2.1.8 or newer"
5666 #endif
5667 int main(void) { return 0; }
5669 _ass=no
5670 cc_check `$_freetypeconfig --cflags` `$_freetypeconfig --libs` && tmp_run && _ass=yes
5671 if test "$_ass" = no ; then
5672 _res_comment="FreeType >= 2.1.8 needed"
5675 if test "$_ass" = yes ; then
5676 _def_ass='#define CONFIG_ASS'
5677 else
5678 _def_ass='#undef CONFIG_ASS'
5680 echores "$_ass"
5683 echocheck "fribidi with charsets"
5684 if test "$_fribidi" = auto ; then
5685 if ( $_fribidiconfig --version ) >/dev/null 2>&1 ; then
5686 cat > $TMPC << EOF
5687 #include <stdio.h>
5688 /* workaround for fribidi 0.10.4 and below */
5689 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5690 #include <fribidi/fribidi.h>
5691 int main(void) {
5692 if(fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
5693 printf("Fribidi headers are not consistents with the library!\n");
5694 exit(1);
5696 return 0;
5699 _fribidi=no
5700 cc_check `$_fribidiconfig --cflags` `$_fribidiconfig --libs` && tmp_run && _fribidi=yes
5701 else
5702 _fribidi=no
5705 if test "$_fribidi" = yes ; then
5706 _def_fribidi='#define CONFIG_FRIBIDI'
5707 _inc_extra="$_inc_extra `$_fribidiconfig --cflags`"
5708 _ld_extra="$_ld_extra `$_fribidiconfig --libs`"
5709 else
5710 _def_fribidi='#undef CONFIG_FRIBIDI'
5712 echores "$_fribidi"
5715 echocheck "ENCA"
5716 if test "$_enca" = auto ; then
5717 cat > $TMPC << EOF
5718 #include <sys/types.h>
5719 #include <enca.h>
5720 int main(void) {
5721 const char **langs;
5722 size_t langcnt;
5723 langs = enca_get_languages(&langcnt);
5724 return 0;
5727 _enca=no
5728 cc_check -lenca $_ld_lm && _enca=yes
5730 if test "$_enca" = yes ; then
5731 _def_enca='#define CONFIG_ENCA 1'
5732 _ld_extra="$_ld_extra -lenca"
5733 else
5734 _def_enca='#undef CONFIG_ENCA'
5736 echores "$_enca"
5739 echocheck "zlib"
5740 cat > $TMPC << EOF
5741 #include <zlib.h>
5742 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
5744 _zlib=no
5745 cc_check -lz && _zlib=yes
5746 if test "$_zlib" = yes ; then
5747 _def_zlib='#define CONFIG_ZLIB 1'
5748 _ld_extra="$_ld_extra -lz"
5749 else
5750 _def_zlib='#undef CONFIG_ZLIB'
5751 _libavdecoders=`echo $_libavdecoders | sed -e s/FLASHSV_DECODER// -e s/PNG_DECODER// -e s/ZMBV_DECODER// -e s/DXA_DECODER// `
5752 _libavencoders=`echo $_libavencoders | sed -e s/FLASHSV_ENCODER// -e s/PNG_ENCODER// -e s/ZMBV_ENCODER// `
5754 echores "$_zlib"
5757 echocheck "RTC"
5758 if test "$_rtc" = auto ; then
5759 cat > $TMPC << EOF
5760 #include <sys/ioctl.h>
5761 #ifdef __linux__
5762 #include <linux/rtc.h>
5763 #else
5764 #include <rtc.h>
5765 #define RTC_PIE_ON RTCIO_PIE_ON
5766 #endif
5767 int main(void) { return RTC_PIE_ON; }
5769 _rtc=no
5770 cc_check && _rtc=yes
5771 ppc && _rtc=no
5773 if test "$_rtc" = yes ; then
5774 _def_rtc='#define HAVE_RTC 1'
5775 else
5776 _def_rtc='#undef HAVE_RTC'
5778 echores "$_rtc"
5781 echocheck "liblzo2 support"
5782 if test "$_liblzo" = auto ; then
5783 _liblzo=no
5784 cat > $TMPC << EOF
5785 #include <lzo/lzo1x.h>
5786 int main(void) { lzo_init();return 0; }
5788 cc_check -llzo2 && _liblzo=yes
5790 if test "$_liblzo" = yes ; then
5791 _def_liblzo='#define CONFIG_LIBLZO 1'
5792 _ld_extra="$_ld_extra -llzo2"
5793 _codecmodules="liblzo $_codecmodules"
5794 else
5795 _def_liblzo='#undef CONFIG_LIBLZO'
5796 _nocodecmodules="liblzo $_nocodecmodules"
5798 echores "$_liblzo"
5801 echocheck "mad support"
5802 if test "$_mad" = auto ; then
5803 _mad=no
5804 cat > $TMPC << EOF
5805 #include <mad.h>
5806 int main(void) { return 0; }
5808 cc_check -lmad && _mad=yes
5810 if test "$_mad" = yes ; then
5811 _def_mad='#define CONFIG_LIBMAD 1'
5812 _ld_extra="$_ld_extra -lmad"
5813 _codecmodules="libmad $_codecmodules"
5814 else
5815 _def_mad='#undef CONFIG_LIBMAD'
5816 _nocodecmodules="libmad $_nocodecmodules"
5818 echores "$_mad"
5820 echocheck "Twolame"
5821 if test "$_twolame" = auto ; then
5822 cat > $TMPC <<EOF
5823 #include <twolame.h>
5824 int main(void) { twolame_init(); return 0; }
5826 _twolame=no
5827 cc_check -ltwolame $_ld_lm && _twolame=yes
5829 if test "$_twolame" = yes ; then
5830 _def_twolame='#define CONFIG_TWOLAME 1'
5831 _libs_mencoder="$_libs_mencoder -ltwolame"
5832 _codecmodules="twolame $_codecmodules"
5833 else
5834 _def_twolame='#undef CONFIG_TWOLAME'
5835 _nocodecmodules="twolame $_nocodecmodules"
5837 echores "$_twolame"
5839 echocheck "Toolame"
5840 if test "$_toolame" = auto ; then
5841 _toolame=no
5842 if test "$_twolame" = yes ; then
5843 _res_comment="disabled by twolame"
5844 else
5845 cat > $TMPC <<EOF
5846 #include <toolame.h>
5847 int main(void) { toolame_init(); return 0; }
5849 cc_check -ltoolame $_ld_lm && _toolame=yes
5852 if test "$_toolame" = yes ; then
5853 _def_toolame='#define CONFIG_TOOLAME 1'
5854 _libs_mencoder="$_libs_mencoder -ltoolame"
5855 _codecmodules="toolame $_codecmodules"
5856 else
5857 _def_toolame='#undef CONFIG_TOOLAME'
5858 _nocodecmodules="toolame $_nocodecmodules"
5860 if test "$_toolamedir" ; then
5861 _res_comment="using $_toolamedir"
5863 echores "$_toolame"
5865 echocheck "OggVorbis support"
5866 if test "$_tremor_internal" = yes; then
5867 _libvorbis=no
5868 elif test "$_tremor" = auto; then
5869 _tremor=no
5870 cat > $TMPC << EOF
5871 #include <tremor/ivorbiscodec.h>
5872 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
5874 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
5876 if test "$_libvorbis" = auto; then
5877 _libvorbis=no
5878 cat > $TMPC << EOF
5879 #include <vorbis/codec.h>
5880 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
5882 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
5884 if test "$_tremor_internal" = yes ; then
5885 _vorbis=yes
5886 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5887 _def_tremor='#define CONFIG_TREMOR 1'
5888 _codecmodules="tremor(internal) $_codecmodules"
5889 _res_comment="internal Tremor"
5890 if test "$_tremor_low" = yes ; then
5891 cflags_tremor_low="-D_LOW_ACCURACY_"
5892 _res_comment="internal low accuracy Tremor"
5894 elif test "$_tremor" = yes ; then
5895 _vorbis=yes
5896 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5897 _def_tremor='#define CONFIG_TREMOR 1'
5898 _codecmodules="tremor(external) $_codecmodules"
5899 _res_comment="external Tremor"
5900 _ld_extra="$_ld_extra -logg -lvorbisidec"
5901 elif test "$_libvorbis" = yes ; then
5902 _vorbis=yes
5903 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5904 _codecmodules="libvorbis $_codecmodules"
5905 _res_comment="libvorbis"
5906 _ld_extra="$_ld_extra -lvorbis -logg"
5907 else
5908 _vorbis=no
5909 _nocodecmodules="libvorbis $_nocodecmodules"
5911 echores "$_vorbis"
5913 echocheck "libspeex (version >= 1.1 required)"
5914 if test "$_speex" = auto ; then
5915 _speex=no
5916 cat > $TMPC << EOF
5917 #include <speex/speex.h>
5918 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
5920 cc_check -lspeex $_ld_lm && _speex=yes
5922 if test "$_speex" = yes ; then
5923 _def_speex='#define CONFIG_SPEEX 1'
5924 _ld_extra="$_ld_extra -lspeex"
5925 _codecmodules="speex $_codecmodules"
5926 else
5927 _def_speex='#undef CONFIG_SPEEX'
5928 _nocodecmodules="speex $_nocodecmodules"
5930 echores "$_speex"
5932 echocheck "OggTheora support"
5933 if test "$_theora" = auto ; then
5934 _theora=no
5935 cat > $TMPC << EOF
5936 #include <theora/theora.h>
5937 #include <string.h>
5938 int main(void) {
5939 /* Theora is in flux, make sure that all interface routines and datatypes
5940 * exist and work the way we expect it, so we don't break MPlayer. */
5941 ogg_packet op;
5942 theora_comment tc;
5943 theora_info inf;
5944 theora_state st;
5945 yuv_buffer yuv;
5946 int r;
5947 double t;
5949 theora_info_init (&inf);
5950 theora_comment_init (&tc);
5952 return 0;
5954 /* we don't want to execute this kind of nonsense; just for making sure
5955 * that compilation works... */
5956 memset(&op, 0, sizeof(op));
5957 r = theora_decode_header (&inf, &tc, &op);
5958 r = theora_decode_init (&st, &inf);
5959 t = theora_granule_time (&st, op.granulepos);
5960 r = theora_decode_packetin (&st, &op);
5961 r = theora_decode_YUVout (&st, &yuv);
5962 theora_clear (&st);
5964 return 0;
5967 for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora -logg"; do
5968 cc_check $_ld_theora && _ld_extra="$_ld_extra $_ld_theora" \
5969 && _theora=yes && break
5970 done
5971 if test "$_theora" = no && test "$_tremor_internal" = yes; then
5972 for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora -logg"; do
5973 cc_check tremor/bitwise.c $_ld_theora \
5974 && _ld_extra="$_ld_extra $_ld_theora" && theora=yes && break
5975 done
5978 if test "$_theora" = yes ; then
5979 _def_theora='#define CONFIG_OGGTHEORA 1'
5980 _codecmodules="libtheora $_codecmodules"
5981 # when --enable-theora is forced, we'd better provide a probably sane
5982 # $_ld_theora than nothing
5983 test -z "$_ld_theora" && _ld_extra="$_ld_extra -ltheora -logg"
5984 else
5985 _def_theora='#undef CONFIG_OGGTHEORA'
5986 _nocodecmodules="libtheora $_nocodecmodules"
5988 echores "$_theora"
5990 echocheck "internal mp3lib support"
5991 if test "$_mp3lib" = auto ; then
5992 test "$cc_vendor" = intel && _mp3lib=no || _mp3lib=yes
5994 if test "$_mp3lib" = yes ; then
5995 _def_mp3lib='#define CONFIG_MP3LIB 1'
5996 _codecmodules="mp3lib $_codecmodules"
5997 else
5998 _def_mp3lib='#undef CONFIG_MP3LIB'
5999 _nocodecmodules="mp3lib $_nocodecmodules"
6001 echores "$_mp3lib"
6003 echocheck "liba52 support"
6004 if test "$_liba52_internal" = auto ; then
6005 test "$cc_vendor" = intel && _liba52_internal=no || _liba52_internal=yes
6007 _def_liba52='#undef CONFIG_LIBA52'
6008 _def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6009 if test "$_liba52_internal" = yes ; then
6010 _liba52=yes
6011 _def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6012 _res_comment="internal"
6013 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6014 _liba52=no
6015 cat > $TMPC << EOF
6016 #include <inttypes.h>
6017 #include <a52dec/a52.h>
6018 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6020 cc_check -la52 && _liba52=yes && _res_comment="external" && _ld_extra="$_ld_extra -la52"
6022 if test "$_liba52" = yes ; then
6023 _def_liba52='#define CONFIG_LIBA52 1'
6024 _codecmodules="liba52($_res_comment) $_codecmodules"
6025 else
6026 _nocodecmodules="liba52 $_nocodecmodules"
6028 echores "$_liba52"
6030 echocheck "internal libmpeg2 support"
6031 if test "$_libmpeg2" = auto ; then
6032 _libmpeg2=yes
6033 if alpha && test cc_vendor=gnu; then
6034 case $cc_version in
6035 2*|3.0*|3.1*) # cannot compile MVI instructions
6036 _libmpeg2=no
6037 _res_comment="broken gcc"
6039 esac
6042 if test "$_libmpeg2" = yes ; then
6043 _def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6044 _codecmodules="libmpeg2 $_codecmodules"
6045 else
6046 _def_libmpeg2='#undef CONFIG_LIBMPEG2'
6047 _nocodecmodules="libmpeg2 $_nocodecmodules"
6049 echores "$_libmpeg2"
6051 echocheck "libdca support"
6052 if test "$_libdca" = auto ; then
6053 _libdca=no
6054 cat > $TMPC << EOF
6055 #include <inttypes.h>
6056 #include <dts.h>
6057 int main(void) { dts_init (0); return 0; }
6059 for _ld_dca in -ldts -ldca ; do
6060 cc_check $_ld_dca $_ld_lm && _ld_extra="$_ld_extra $_ld_dca" \
6061 && _libdca=yes && break
6062 done
6064 if test "$_libdca" = yes ; then
6065 _def_libdca='#define CONFIG_LIBDCA 1'
6066 _codecmodules="libdca $_codecmodules"
6067 else
6068 _def_libdca='#undef CONFIG_LIBDCA'
6069 _nocodecmodules="libdca $_nocodecmodules"
6071 echores "$_libdca"
6073 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6074 if test "$_musepack" = auto ; then
6075 _musepack=no
6076 cat > $TMPC << EOF
6077 #include <stddef.h>
6078 #include <mpcdec/mpcdec.h>
6079 int main(void) {
6080 mpc_streaminfo info;
6081 mpc_decoder decoder;
6082 mpc_decoder_set_streaminfo(&decoder, &info);
6083 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6084 return 0;
6087 cc_check -lmpcdec $_ld_lm && _musepack=yes
6089 if test "$_musepack" = yes ; then
6090 _def_musepack='#define CONFIG_MUSEPACK 1'
6091 _ld_extra="$_ld_extra -lmpcdec"
6092 _codecmodules="musepack $_codecmodules"
6093 else
6094 _def_musepack='#undef CONFIG_MUSEPACK'
6095 _nocodecmodules="musepack $_nocodecmodules"
6097 echores "$_musepack"
6100 echocheck "FAAC support"
6101 if test "$_faac" = auto ; then
6102 cat > $TMPC <<EOF
6103 #include <inttypes.h>
6104 #include <faac.h>
6105 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6107 _faac=no
6108 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6109 cc_check -O4 $_ld_faac $_ld_lm && _libs_mencoder="$_libs_mencoder $_ld_faac" && _faac=yes && break
6110 done
6112 if test "$_faac" = yes ; then
6113 _def_faac="#define CONFIG_FAAC 1"
6114 test "$_faac_lavc" = auto && _faac_lavc=yes
6115 if test "$_faac_lavc" = yes ; then
6116 _def_faac_lavc="#define CONFIG_LIBFAAC 1"
6117 _libs_mplayer="$_libs_mplayer $_ld_faac"
6118 _libavencoders="$_libavencoders LIBFAAC_ENCODER"
6120 _codecmodules="faac $_codecmodules"
6121 else
6122 _faac_lavc=no
6123 _def_faac="#undef CONFIG_FAAC"
6124 _def_faac_lavc="#undef CONFIG_LIBFAAC"
6125 _nocodecmodules="faac $_nocodecmodules"
6127 _res_comment="in libavcodec: $_faac_lavc"
6128 echores "$_faac"
6131 echocheck "FAAD2 support"
6132 if test "$_faad_internal" = auto ; then
6133 if x86_32 && test cc_vendor=gnu; then
6134 case $cc_version in
6135 3.1*|3.2) # ICE/insn with these versions
6136 _faad_internal=no
6137 _res_comment="broken gcc"
6140 _faad=yes
6141 _faad_internal=yes
6143 esac
6144 else
6145 _faad=yes
6146 _faad_internal=yes
6149 if test "$_faad" = auto ; then
6150 cat > $TMPC << EOF
6151 #include <faad.h>
6152 #ifndef FAAD_MIN_STREAMSIZE
6153 #error Too old version
6154 #endif
6155 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6156 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6158 cc_check -lfaad $_ld_lm && _faad=yes
6161 _def_faad='#undef CONFIG_FAAD'
6162 _def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6163 if test "$_faad_internal" = yes ; then
6164 _def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6165 _res_comment="internal floating-point"
6166 if test "$_faad_fixed" = yes ; then
6167 # The FIXED_POINT implementation of FAAD2 improves performance
6168 # on some platforms, especially for SBR files.
6169 cflags_faad_fixed="-DFIXED_POINT"
6170 _res_comment="internal fixed-point"
6172 elif test "$_faad" = yes ; then
6173 _ld_extra="$_ld_extra -lfaad"
6176 if test "$_faad" = yes ; then
6177 _def_faad='#define CONFIG_FAAD 1'
6178 _codecmodules="faad2 $_codecmodules"
6179 else
6180 _faad=no
6181 _nocodecmodules="faad2 $_nocodecmodules"
6183 echores "$_faad"
6186 echocheck "LADSPA plugin support"
6187 if test "$_ladspa" = auto ; then
6188 cat > $TMPC <<EOF
6189 #include <stdio.h>
6190 #include <ladspa.h>
6191 int main(void) {
6192 const LADSPA_Descriptor *ld = NULL;
6193 return 0;
6196 _ladspa=no
6197 cc_check && _ladspa=yes
6199 if test "$_ladspa" = yes; then
6200 _def_ladspa="#define CONFIG_LADSPA"
6201 else
6202 _def_ladspa="#undef CONFIG_LADSPA"
6204 echores "$_ladspa"
6207 if test -z "$_codecsdir" ; then
6208 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6209 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6210 if test -d "$dir" ; then
6211 _codecsdir="$dir"
6212 break;
6214 done
6216 # Fall back on default directory.
6217 if test -z "$_codecsdir" ; then
6218 _codecsdir="$_libdir/codecs"
6219 mingw32 && _codecsdir="codecs"
6220 os2 && _codecsdir="codecs"
6224 echocheck "Win32 codecs"
6225 if test "$_win32dll" = auto ; then
6226 _win32dll=no
6227 if x86_32 && ! qnx; then
6228 _win32dll=yes
6231 if test "$_win32dll" = yes ; then
6232 _def_win32dll='#define CONFIG_WIN32DLL 1'
6233 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6234 _res_comment="using $_win32codecsdir"
6235 if ! win32 ; then
6236 _def_win32_loader='#define WIN32_LOADER 1'
6237 _win32_emulation=yes
6238 else
6239 _ld_extra="$_ld_extra -ladvapi32 -lole32"
6240 _res_comment="using native windows"
6242 _codecmodules="win32 $_codecmodules"
6243 else
6244 _def_win32dll='#undef CONFIG_WIN32DLL'
6245 _def_win32_loader='#undef WIN32_LOADER'
6246 _nocodecmodules="win32 $_nocodecmodules"
6248 echores "$_win32dll"
6251 echocheck "XAnim codecs"
6252 if test "$_xanim" = auto ; then
6253 _xanim=no
6254 _res_comment="dynamic loader support needed"
6255 if test "$_dl" = yes ; then
6256 _xanim=yes
6259 if test "$_xanim" = yes ; then
6260 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6261 _def_xanim='#define CONFIG_XANIM 1'
6262 _def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6263 _codecmodules="xanim $_codecmodules"
6264 _res_comment="using $_xanimcodecsdir"
6265 else
6266 _def_xanim='#undef CONFIG_XANIM'
6267 _def_xanim_path='#undef XACODEC_PATH'
6268 _nocodecmodules="xanim $_nocodecmodules"
6270 echores "$_xanim"
6273 echocheck "RealPlayer codecs"
6274 if test "$_real" = auto ; then
6275 _real=no
6276 _res_comment="dynamic loader support needed"
6277 if test "$_dl" = yes || test "$_win32dll" = yes &&
6278 (linux || freebsd || netbsd || dragonfly || darwin || win32) ; then
6279 _real=yes
6282 if test "$_real" = yes ; then
6283 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6284 _def_real='#define CONFIG_REALCODECS 1'
6285 _def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6286 _codecmodules="real $_codecmodules"
6287 _res_comment="using $_realcodecsdir"
6288 else
6289 _def_real='#undef CONFIG_REALCODECS'
6290 _def_real_path="#undef REALCODEC_PATH"
6291 _nocodecmodules="real $_nocodecmodules"
6293 echores "$_real"
6296 echocheck "QuickTime codecs"
6297 _qtx_emulation=no
6298 _def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6299 if test "$_qtx" = auto ; then
6300 test "$_win32dll" = yes || darwin && _qtx=yes
6302 if test "$_qtx" = yes ; then
6303 _def_qtx='#define CONFIG_QTX_CODECS 1'
6304 win32 && _qtx_codecs_win32=yes && _def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6305 _codecmodules="qtx $_codecmodules"
6306 darwin || win32 || _qtx_emulation=yes
6307 else
6308 _def_qtx='#undef CONFIG_QTX_CODECS'
6309 _nocodecmodules="qtx $_nocodecmodules"
6311 echores "$_qtx"
6313 echocheck "Nemesi Streaming Media libraries"
6314 if test "$_nemesi" = auto && test "$_network" = yes ; then
6315 _nemesi=no
6316 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6317 _inc_extra="$_inc_extra `$_pkg_config --cflags libnemesi`"
6318 _ld_extra="$_ld_extra `$_pkg_config --libs libnemesi`"
6319 _nemesi=yes
6322 if test "$_nemesi" = yes; then
6323 _native_rtsp=no
6324 _def_nemesi='#define CONFIG_LIBNEMESI 1'
6325 _inputmodules="nemesi $_inputmodules"
6326 else
6327 _native_rtsp="$_network"
6328 _nemesi=no
6329 _def_nemesi='#undef CONFIG_LIBNEMESI'
6330 _noinputmodules="nemesi $_noinputmodules"
6332 echores "$_nemesi"
6334 echocheck "LIVE555 Streaming Media libraries"
6335 if test "$_live" = auto && test "$_network" = yes ; then
6336 cat > $TMPCPP << EOF
6337 #include <liveMedia.hh>
6338 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6339 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6340 #endif
6341 int main(void) { return 0; }
6344 _live=no
6345 for I in $_inc_extra "-I$_libdir/live" "-I/usr/lib/live" "-I/usr/local/live" "-I/usr/local/lib/live" ; do
6346 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6347 $I/groupsock/include && _livelibdir=`echo $I| sed s/-I//` && \
6348 _ld_extra="$_livelibdir/liveMedia/libliveMedia.a \
6349 $_livelibdir/groupsock/libgroupsock.a \
6350 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6351 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6352 $_ld_extra -lstdc++" \
6353 _inc_extraxx="-I$_livelibdir/liveMedia/include \
6354 -I$_livelibdir/UsageEnvironment/include \
6355 -I$_livelibdir/BasicUsageEnvironment/include \
6356 -I$_livelibdir/groupsock/include" && \
6357 _live=yes && break
6358 done
6359 if test "$_live" != yes ; then
6360 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock; then
6361 _live_dist=yes
6365 if test "$_live" = yes && test "$_network" = yes; then
6366 _res_comment="using $_livelibdir"
6367 _def_live='#define CONFIG_LIVE555 1'
6368 _inputmodules="live555 $_inputmodules"
6369 elif test "$_live_dist" = yes && test "$_network" = yes; then
6370 _res_comment="using distribution version"
6371 _live="yes"
6372 _def_live='#define CONFIG_LIVE555 1'
6373 _ld_extra="$_ld_extra -lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6374 _inc_extraxx="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6375 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6376 _inputmodules="live555 $_inputmodules"
6377 else
6378 _live=no
6379 _def_live='#undef CONFIG_LIVE555'
6380 _noinputmodules="live555 $_noinputmodules"
6382 echores "$_live"
6385 echocheck "FFmpeg libavutil"
6386 if test "$_libavutil_a" = auto ; then
6387 if test -d libavutil ; then
6388 _libavutil_a=yes
6389 _res_comment="static"
6390 else
6391 die "MPlayer will not compile without libavutil in the source tree."
6393 elif test "$_libavutil_so" = auto ; then
6394 _libavutil_so=no
6395 cat > $TMPC << EOF
6396 #include <libavutil/common.h>
6397 int main(void) { ff_gcd(1,1); return 0; }
6399 if $_pkg_config --exists libavutil ; then
6400 _inc_libavutil=`$_pkg_config --cflags libavutil`
6401 _ld_tmp=`$_pkg_config --libs libavutil`
6402 cc_check $_inc_libavutil $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6403 && _libavutil_so=yes
6404 elif cc_check -lavutil $_ld_lm ; then
6405 _ld_extra="$_ld_extra -lavutil"
6406 _libavutil_so=yes
6407 _res_comment="using libavutil.so, but static libavutil is recommended"
6410 _libavutil=no
6411 _def_libavutil='#undef CONFIG_LIBAVUTIL'
6412 _def_libavutil_a='#undef CONFIG_LIBAVUTIL_A'
6413 _def_libavutil_so='#undef CONFIG_LIBAVUTIL_SO'
6414 test "$_libavutil_a" = yes || test "$_libavutil_so" = yes && _libavutil=yes
6415 test "$_libavutil" = yes && _def_libavutil='#define CONFIG_LIBAVUTIL 1'
6416 test "$_libavutil_a" = yes && _def_libavutil_a='#define CONFIG_LIBAVUTIL_A 1'
6417 test "$_libavutil_so" = yes && _def_libavutil_so='#define CONFIG_LIBAVUTIL_SO 1'
6418 # neither static nor shared libavutil is available, but it is mandatory ...
6419 if test "$_libavutil" = no ; then
6420 die "You need static or shared libavutil, MPlayer will not compile without!"
6422 echores "$_libavutil"
6424 echocheck "FFmpeg libavcodec"
6425 if test "$_libavcodec_a" = auto ; then
6426 _libavcodec_a=no
6427 if test -d libavcodec && test -f libavcodec/utils.c ; then
6428 _libavcodec_a="yes"
6429 _res_comment="static"
6431 elif test "$_libavcodec_so" = auto ; then
6432 _libavcodec_so=no
6433 _res_comment="libavcodec.so is discouraged over static libavcodec"
6434 cat > $TMPC << EOF
6435 #include <libavcodec/avcodec.h>
6436 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6438 if $_pkg_config --exists libavcodec ; then
6439 _inc_libavcodec=`$_pkg_config --cflags libavcodec`
6440 _ld_tmp=`$_pkg_config --libs libavcodec`
6441 cc_check $_inc_libavcodec $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6442 && _libavcodec_so=yes
6443 elif cc_check -lavcodec $_ld_lm ; then
6444 _ld_extra="$_ld_extra -lavcodec"
6445 _libavcodec_so=yes
6446 _res_comment="using libavcodec.so, but static libavcodec is recommended"
6449 _libavcodec=no
6450 _def_libavcodec='#undef CONFIG_LIBAVCODEC'
6451 _def_libavcodec_a='#undef CONFIG_LIBAVCODEC_A'
6452 _def_libavcodec_so='#undef CONFIG_LIBAVCODEC_SO'
6453 test "$_libavcodec_a" = yes || test "$_libavcodec_so" = yes && _libavcodec=yes
6454 test "$_libavcodec" = yes && _def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6455 test "$_libavcodec_a" = yes && _def_libavcodec_a='#define CONFIG_LIBAVCODEC_A 1'
6456 test "$_libavcodec_so" = yes && _def_libavcodec_so='#define CONFIG_LIBAVCODEC_SO 1'
6457 test "$_libavcodec_mpegaudio_hp" = yes \
6458 && _def_libavcodec_mpegaudio_hp='#define CONFIG_MPEGAUDIO_HP 1'
6459 if test "$_libavcodec_a" = yes ; then
6460 _codecmodules="libavcodec $_codecmodules"
6461 elif test "$_libavcodec_so" = yes ; then
6462 _codecmodules="libavcodec.so $_codecmodules"
6463 else
6464 _nocodecmodules="libavcodec $_nocodecmodules"
6466 echores "$_libavcodec"
6468 echocheck "FFmpeg libavformat"
6469 if test "$_libavformat_a" = auto ; then
6470 _libavformat_a=no
6471 if test -d libavformat && test -f libavformat/utils.c ; then
6472 _libavformat_a=yes
6473 _res_comment="static"
6475 elif test "$_libavformat_so" = auto ; then
6476 _libavformat_so=no
6477 cat > $TMPC <<EOF
6478 #include <libavformat/avformat.h>
6479 #include <libavcodec/opt.h>
6480 int main(void) { av_alloc_format_context(); return 0; }
6482 if $_pkg_config --exists libavformat ; then
6483 _inc_libavformat=`$_pkg_config --cflags libavformat`
6484 _ld_tmp=`$_pkg_config --libs libavformat`
6485 cc_check $_inc_libavformat $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6486 && _libavformat_so=yes
6487 elif cc_check $_ld_lm -lavformat ; then
6488 _ld_extra="$_ld_extra -lavformat"
6489 _libavformat_so=yes
6490 _res_comment="using libavformat.so, but static libavformat is recommended"
6493 _libavformat=no
6494 _def_libavformat='#undef CONFIG_LIBAVFORMAT'
6495 _def_libavformat_a='#undef CONFIG_LIBAVFORMAT_A'
6496 _def_libavformat_so='#undef CONFIG_LIBAVFORMAT_SO'
6497 test "$_libavformat_a" = yes || test "$_libavformat_so" = yes && _libavformat=yes
6498 test "$_libavformat" = yes && _def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6499 test "$_libavformat_a" = yes && _def_libavformat_a='#define CONFIG_LIBAVFORMAT_A 1'
6500 test "$_libavformat_so" = yes \
6501 && _def_libavformat_so='#define CONFIG_LIBAVFORMAT_SO 1'
6502 echores "$_libavformat"
6504 echocheck "FFmpeg libpostproc"
6505 if test "$_libpostproc_a" = auto ; then
6506 _libpostproc_a=no
6507 if test -d libpostproc && test -f libpostproc/postprocess.h ; then
6508 _libpostproc_a='yes'
6509 _res_comment="static"
6511 elif test "$_libpostproc_so" = auto ; then
6512 _libpostproc_so=no
6513 cat > $TMPC << EOF
6514 #include <inttypes.h>
6515 #include <libpostproc/postprocess.h>
6516 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6518 if cc_check -lpostproc $_ld_lm ; then
6519 _ld_extra="$_ld_extra -lpostproc"
6520 _libpostproc_so=yes
6521 _res_comment="using libpostproc.so, but static libpostproc is recommended"
6524 _libpostproc=no
6525 _def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6526 _def_libpostproc_a='#undef CONFIG_LIBPOSTPROC_A'
6527 _def_libpostproc_so='#undef CONFIG_LIBPOSTPROC_SO'
6528 test "$_libpostproc_a" = yes || test "$_libpostproc_so" = yes && _libpostproc=yes
6529 test "$_libpostproc" = yes && _def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6530 test "$_libpostproc_a" = yes && _def_libpostproc_a='#define CONFIG_LIBPOSTPROC_A 1'
6531 test "$_libpostproc_so" = yes \
6532 && _def_libpostproc_so='#define CONFIG_LIBPOSTPROC_SO 1'
6533 echores "$_libpostproc"
6535 echocheck "FFmpeg libswscale"
6536 if test "$_libswscale_a" = auto ; then
6537 _libswscale_a=no
6538 if test -d libswscale && test -f libswscale/swscale.h ; then
6539 _libswscale_a='yes'
6540 _res_comment="static"
6542 elif test "$_libswscale_so" = auto ; then
6543 _libswscale_so=no
6544 _res_comment="using libswscale.so, but static libswscale is recommended"
6545 cat > $TMPC << EOF
6546 #include <libswscale/swscale.h>
6547 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6549 if $_pkg_config --exists libswscale ; then
6550 _inc_libswscale=`$_pkg_config --cflags libswscale`
6551 _ld_tmp=`$_pkg_config --libs libswscale`
6552 cc_check $_inc_libswscale $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6553 && _libswscale_so=yes
6554 elif cc_check -lswscale ; then
6555 _ld_extra="$_ld_extra -lswscale"
6556 _libswscale_so=yes
6559 _libswscale=no
6560 _def_libswscale='#undef CONFIG_LIBSWSCALE'
6561 _def_libswscale_a='#undef CONFIG_LIBSWSCALE_A'
6562 _def_libswscale_so='#undef CONFIG_LIBSWSCALE_SO'
6563 test "$_libswscale_a" = yes || test "$_libswscale_so" = yes && _libswscale=yes
6564 test "$_libswscale" = yes && _def_libswscale='#define CONFIG_LIBSWSCALE 1'
6565 test "$_libswscale_a" = yes && _def_libswscale_a='#define CONFIG_LIBSWSCALE_A 1'
6566 test "$_libswscale_so" = yes \
6567 && _def_libswscale_so='#define CONFIG_LIBSWSCALE_SO 1'
6568 echores "$_libswscale"
6570 echocheck "libamr narrowband"
6571 if test "$_libamr_nb" = auto ; then
6572 _libamr_nb=no
6573 cat > $TMPC << EOF
6574 #include <amrnb/sp_dec.h>
6575 int main(void) { Speech_Decode_Frame_init(); return 0; }
6577 cc_check -lamrnb && _libamr_nb=yes
6578 if test "$_libavcodec_a" != yes ; then
6579 _libamr_nb=no
6580 _res_comment="libavcodec (static) is required by libamr_nb, sorry"
6583 if test "$_libamr_nb" = yes ; then
6584 _libamr=yes
6585 _ld_extra="$_ld_extra -lamrnb"
6586 _def_libamr='#define CONFIG_LIBAMR 1'
6587 _def_libamr_nb='#define CONFIG_LIBAMR_NB 1'
6588 _libavdecoders="$_libavdecoders LIBAMR_NB_DECODER"
6589 _libavencoders="$_libavencoders LIBAMR_NB_ENCODER"
6590 _codecmodules="libamr_nb $_codecmodules"
6591 else
6592 _def_libamr_nb='#undef CONFIG_LIBAMR_NB'
6593 _nocodecmodules="libamr_nb $_nocodecmodules"
6595 echores "$_libamr_nb"
6598 echocheck "libamr wideband"
6599 if test "$_libamr_wb" = auto ; then
6600 _libamr_wb=no
6601 cat > $TMPC << EOF
6602 #include <amrwb/dec_if.h>
6603 int main(void) { D_IF_init(); return 0; }
6605 cc_check -lamrwb && _libamr_wb=yes
6606 if test "$_libavcodec_a" != yes ; then
6607 _libamr_wb=no
6608 _res_comment="libavcodec (static) is required by libamr_wb, sorry"
6611 if test "$_libamr_wb" = yes ; then
6612 _libamr=yes
6613 _ld_extra="$_ld_extra -lamrwb"
6614 _def_libamr='#define CONFIG_LIBAMR 1'
6615 _def_libamr_wb='#define CONFIG_LIBAMR_WB 1'
6616 _libavdecoders="$_libavdecoders LIBAMR_WB_DECODER"
6617 _libavencoders="$_libavencoders LIBAMR_WB_ENCODER"
6618 _codecmodules="libamr_wb $_codecmodules"
6619 else
6620 _def_libamr_wb='#undef CONFIG_LIBAMR_WB'
6621 _nocodecmodules="libamr_wb $_nocodecmodules"
6623 echores "$_libamr_wb"
6625 echocheck "libdv-0.9.5+"
6626 if test "$_libdv" = auto ; then
6627 _libdv=no
6628 cat > $TMPC <<EOF
6629 #include <libdv/dv.h>
6630 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
6632 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
6634 if test "$_libdv" = yes ; then
6635 _def_libdv='#define CONFIG_LIBDV095 1'
6636 _ld_extra="$_ld_extra -ldv"
6637 _codecmodules="libdv $_codecmodules"
6638 else
6639 _def_libdv='#undef CONFIG_LIBDV095'
6640 _nocodecmodules="libdv $_nocodecmodules"
6642 echores "$_libdv"
6645 echocheck "Xvid"
6646 if test "$_xvid" = auto ; then
6647 _xvid=no
6648 cat > $TMPC << EOF
6649 #include <xvid.h>
6650 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
6652 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6653 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && _xvid=yes && break
6654 done
6657 if test "$_xvid" = yes ; then
6658 _def_xvid='#define CONFIG_XVID4 1'
6659 _codecmodules="xvid $_codecmodules"
6660 else
6661 _def_xvid='#undef CONFIG_XVID4'
6662 _nocodecmodules="xvid $_nocodecmodules"
6664 echores "$_xvid"
6666 echocheck "Xvid two pass plugin"
6667 if test "$_xvid" = yes && test "$_xvid_lavc" = auto ; then
6668 cat > $TMPC << EOF
6669 #include <xvid.h>
6670 int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
6672 cc_check && _xvid_lavc=yes
6674 if test "$_xvid_lavc" = yes ; then
6675 _def_xvid_lavc='#define CONFIG_LIBXVID 1'
6676 _libavencoders="$_libavencoders LIBXVID_ENCODER"
6677 else
6678 _xvid_lavc=no
6679 _def_xvid_lavc='#undef CONFIG_LIBXVID'
6681 echores "$_xvid_lavc"
6684 echocheck "x264"
6685 if test "$_x264" = auto ; then
6686 cat > $TMPC << EOF
6687 #include <inttypes.h>
6688 #include <x264.h>
6689 #if X264_BUILD < 59
6690 #error We do not support old versions of x264. Get the latest from SVN.
6691 #endif
6692 int main(void) { x264_encoder_open((void*)0); return 0; }
6694 _x264=no
6695 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
6696 cc_check $_ld_x264 && _libs_mencoder="$_libs_mencoder $_ld_x264" && _x264=yes && break
6697 done
6700 if test "$_x264" = yes ; then
6701 _def_x264='#define CONFIG_X264 1'
6702 _codecmodules="x264 $_codecmodules"
6703 test "$_x264_lavc" = auto && _x264_lavc=yes
6704 if test "$_x264_lavc" = yes ; then
6705 _def_x264_lavc='#define CONFIG_LIBX264 1'
6706 _libs_mplayer="$_libs_mplayer $_ld_x264"
6707 _libavencoders="$_libavencoders LIBX264_ENCODER"
6709 else
6710 _x264_lavc=no
6711 _def_x264='#undef CONFIG_X264'
6712 _def_x264_lavc='#undef CONFIG_LIBX264'
6713 _nocodecmodules="x264 $_nocodecmodules"
6715 _res_comment="in libavcodec: $_x264_lavc"
6716 echores "$_x264"
6719 echocheck "libdirac"
6720 if test "$_libdirac_lavc" = auto; then
6721 _libdirac_lavc=no
6722 if test "$_libavcodec_a" != yes; then
6723 _res_comment="libavcodec (static) is required by libdirac, sorry"
6724 else
6725 cat > $TMPC << EOF
6726 #include <libdirac_encoder/dirac_encoder.h>
6727 #include <libdirac_decoder/dirac_parser.h>
6728 int main(void)
6730 dirac_encoder_context_t enc_ctx;
6731 dirac_decoder_t *dec_handle;
6732 dirac_encoder_context_init(&enc_ctx, VIDEO_FORMAT_SD_576I50);
6733 dec_handle = dirac_decoder_init(0);
6734 if (dec_handle)
6735 dirac_decoder_close(dec_handle);
6736 return 0;
6739 if $_pkg_config --exists dirac ; then
6740 _inc_dirac=`$_pkg_config --silence-errors --cflags dirac`
6741 _ld_dirac=`$_pkg_config --silence-errors --libs dirac`
6742 cc_check $_inc_dirac $_ld_dirac &&
6743 _libdirac_lavc=yes &&
6744 _inc_extra="$_inc_extra $_inc_dirac" &&
6745 _ld_extra="$_ld_extra $_ld_dirac"
6749 if test "$_libdirac_lavc" = yes ; then
6750 _def_libdirac_lavc='#define CONFIG_LIBDIRAC 1'
6751 _libavencoders="$_libavencoders LIBDIRAC_ENCODER"
6752 _libavdecoders="$_libavdecoders LIBDIRAC_DECODER"
6753 _codecmodules="libdirac $_codecmodules"
6754 else
6755 _def_libdirac_lavc='#undef CONFIG_LIBDIRAC'
6756 _nocodecmodules="libdirac $_nocodecmodules"
6758 echores "$_libdirac_lavc"
6761 echocheck "libschroedinger"
6762 if test "$_libschroedinger_lavc" = auto ; then
6763 _libschroedinger_lavc=no
6764 if test "$_libavcodec_a" != yes; then
6765 _res_comment="libavcodec (static) is required by libschroedinger, sorry"
6766 else
6767 cat > $TMPC << EOF
6768 #include <schroedinger/schro.h>
6769 int main(void) { schro_init(); return 0; }
6771 if $_pkg_config --exists schroedinger-1.0 ; then
6772 _inc_schroedinger=`$_pkg_config --silence-errors --cflags schroedinger-1.0`
6773 _ld_schroedinger=`$_pkg_config --silence-errors --libs schroedinger-1.0`
6774 cc_check $_inc_schroedinger $_ld_schroedinger &&
6775 _libschroedinger_lavc=yes &&
6776 _inc_extra="$_inc_extra $_inc_schroedinger" &&
6777 _ld_extra="$_ld_extra $_ld_schroedinger"
6781 if test "$_libschroedinger_lavc" = yes ; then
6782 _def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 1'
6783 _libavencoders="$_libavencoders LIBSCHROEDINGER_ENCODER"
6784 _libavdecoders="$_libavdecoders LIBSCHROEDINGER_DECODER"
6785 _codecmodules="libschroedinger $_codecmodules"
6786 else
6787 _def_libschroedinger_lavc='#undef CONFIG_LIBSCHROEDINGER'
6788 _nocodecmodules="libschroedinger $_nocodecmodules"
6790 echores "$_libschroedinger_lavc"
6792 echocheck "libnut"
6793 if test "$_libnut" = auto ; then
6794 cat > $TMPC << EOF
6795 #include <stdio.h>
6796 #include <stdlib.h>
6797 #include <inttypes.h>
6798 #include <libnut.h>
6799 int main(void) { (void)nut_error(0); return 0; }
6801 _libnut=no
6802 cc_check -lnut && _libnut=yes
6805 if test "$_libnut" = yes ; then
6806 _def_libnut='#define CONFIG_LIBNUT 1'
6807 _ld_extra="$_ld_extra -lnut"
6808 else
6809 _def_libnut='#undef CONFIG_LIBNUT'
6811 echores "$_libnut"
6813 #check must be done after libavcodec one
6814 echocheck "zr"
6815 if test "$_zr" = auto ; then
6816 #36067's seem to identify themselves as 36057PQC's, so the line
6817 #below should work for 36067's and 36057's.
6818 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
6819 _zr=yes
6820 else
6821 _zr=no
6824 if test "$_zr" = yes ; then
6825 if test "$_libavcodec_a" = yes ; then
6826 _def_zr='#define CONFIG_ZR 1'
6827 _vosrc="$_vosrc vo_zr2.c vo_zr.c jpeg_enc.c"
6828 _vomodules="zr zr2 $_vomodules"
6829 else
6830 _res_comment="libavcodec (static) is required by zr, sorry"
6831 _novomodules="zr $_novomodules"
6832 _def_zr='#undef CONFIG_ZR'
6834 else
6835 _def_zr='#undef CONFIG_ZR'
6836 _novomodules="zr zr2 $_novomodules"
6838 echores "$_zr"
6840 # mencoder requires (optional) those libs: libmp3lame
6841 if test "$_mencoder" != no ; then
6843 echocheck "libmp3lame (for mencoder)"
6844 _def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
6845 _def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
6846 if test "$_mp3lame" = auto ; then
6847 _mp3lame=no
6848 cat > $TMPC <<EOF
6849 #include <lame/lame.h>
6850 int main(void) { lame_version_t lv; (void) lame_init();
6851 get_lame_version_numerical(&lv); printf("%d%d\n",lv.major,lv.minor);
6852 return 0; }
6854 cc_check -lmp3lame $_ld_lm && tmp_run && _mp3lame=yes
6856 if test "$_mp3lame" = yes ; then
6857 _def_mp3lame="#define CONFIG_MP3LAME"
6858 _ld_mp3lame=-lmp3lame
6859 _libs_mencoder="$_libs_mencoder $_ld_mp3lame"
6860 cat > $TMPC << EOF
6861 #include <lame/lame.h>
6862 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
6864 cc_check $_ld_mp3lame $_ld_lm && _def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET"
6865 cat > $TMPC << EOF
6866 #include <lame/lame.h>
6867 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
6869 cc_check $_ld_mp3lame $_ld_lm && _def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM"
6870 test "$_mp3lame_lavc" = auto && _mp3lame_lavc=yes
6871 if test "$_mp3lame_lavc" = yes ; then
6872 _def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 1"
6873 _libavencoders="$_libavencoders LIBMP3LAME_ENCODER"
6874 _libs_mplayer="$_libs_mplayer $_ld_mp3lame"
6876 else
6877 _mp3lame_lavc=no
6878 _def_mp3lame='#undef CONFIG_MP3LAME'
6879 _def_mp3lame_lavc="#undef CONFIG_LIBMP3LAME"
6881 _res_comment="in libavcodec: $_mp3lame_lavc"
6882 echores "$_mp3lame"
6884 fi # test "$_mencoder" != no
6886 echocheck "mencoder"
6887 if test "$_mencoder" = yes ; then
6888 _def_muxers='#define CONFIG_MUXERS 1'
6889 else
6890 # mpeg1video for vf_lavc, snow for vf_uspp and vf_mcdeint, png for vf_screenshot
6891 _libavencoders="MPEG1VIDEO_ENCODER SNOW_ENCODER"
6892 test "$_zlib" = yes && _libavencoders="$_libavencoders PNG_ENCODER"
6893 _libavmuxers=""
6895 echores "$_mencoder"
6897 echocheck "fastmemcpy"
6898 # fastmemcpy check is done earlier with tests of CPU & binutils features
6899 if test "$_fastmemcpy" = yes ; then
6900 _def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
6901 else
6902 _def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
6904 echores "$_fastmemcpy"
6907 echocheck "UnRAR executable"
6908 if test "$_unrar_exec" = auto ; then
6909 _unrar_exec="yes"
6910 mingw32 && _unrar_exec="no"
6912 if test "$_unrar_exec" = yes ; then
6913 _def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6914 else
6915 _def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6917 echores "$_unrar_exec"
6919 echocheck "TV interface"
6920 if test "$_tv" = yes ; then
6921 _def_tv='#define CONFIG_TV 1'
6922 _inputmodules="tv $_inputmodules"
6923 else
6924 _noinputmodules="tv $_noinputmodules"
6925 _def_tv='#undef CONFIG_TV'
6927 echores "$_tv"
6930 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6931 echocheck "*BSD BT848 bt8xx header"
6932 _ioctl_bt848_h=no
6933 for file in "machine/ioctl_bt848.h" \
6934 "dev/bktr/ioctl_bt848.h" \
6935 "dev/video/bktr/ioctl_bt848.h" \
6936 "dev/ic/bt8xx.h" ; do
6937 cat > $TMPC <<EOF
6938 #include <sys/types.h>
6939 #include <sys/ioctl.h>
6940 #include <$file>
6941 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6943 if cc_check ; then
6944 _ioctl_bt848_h=yes
6945 _ioctl_bt848_h_name="$file"
6946 break;
6948 done
6949 if test "$_ioctl_bt848_h" = yes ; then
6950 _def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6951 _res_comment="using $_ioctl_bt848_h_name"
6952 else
6953 _def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6955 echores "$_ioctl_bt848_h"
6957 echocheck "*BSD ioctl_meteor.h"
6958 _ioctl_meteor_h=no
6959 for file in "machine/ioctl_meteor.h" \
6960 "dev/bktr/ioctl_meteor.h" \
6961 "dev/video/bktr/ioctl_meteor.h" ; do
6962 cat > $TMPC <<EOF
6963 #include <sys/types.h>
6964 #include <$file>
6965 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
6967 if cc_check ; then
6968 _ioctl_meteor_h=yes
6969 _ioctl_meteor_h_name="$file"
6970 break;
6972 done
6973 if test "$_ioctl_meteor_h" = yes ; then
6974 _def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
6975 _res_comment="using $_ioctl_meteor_h_name"
6976 else
6977 _def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6979 echores "$_ioctl_meteor_h"
6981 echocheck "*BSD BrookTree 848 TV interface"
6982 if test "$_tv_bsdbt848" = auto ; then
6983 _tv_bsdbt848=no
6984 if test "$_tv" = yes ; then
6985 cat > $TMPC <<EOF
6986 #include <sys/types.h>
6987 $_def_ioctl_meteor_h_name
6988 $_def_ioctl_bt848_h_name
6989 #ifdef IOCTL_METEOR_H_NAME
6990 #include IOCTL_METEOR_H_NAME
6991 #endif
6992 #ifdef IOCTL_BT848_H_NAME
6993 #include IOCTL_BT848_H_NAME
6994 #endif
6995 int main(void) {
6996 ioctl(0, METEORSINPUT, 0);
6997 ioctl(0, TVTUNER_GETFREQ, 0);
6998 return 0;
7001 cc_check && _tv_bsdbt848=yes
7004 if test "$_tv_bsdbt848" = yes ; then
7005 _def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7006 _inputmodules="tv-bsdbt848 $_inputmodules"
7007 else
7008 _def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7009 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7011 echores "$_tv_bsdbt848"
7012 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7015 echocheck "DirectShow TV interface"
7016 if test "$_tv_dshow" = auto ; then
7017 _tv_dshow=no
7018 if test "$_tv" = yes && win32 ; then
7019 cat > $TMPC <<EOF
7020 #include <ole2.h>
7021 int main(void) {
7022 void* p;
7023 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7024 return 0;
7027 cc_check -lole32 -luuid && _tv_dshow=yes
7030 if test "$_tv_dshow" = yes ; then
7031 _inputmodules="tv-dshow $_inputmodules"
7032 _def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7033 _ld_extra="$_ld_extra -lole32 -luuid"
7034 else
7035 _noinputmodules="tv-dshow $_noinputmodules"
7036 _def_tv_dshow='#undef CONFIG_TV_DSHOW'
7038 echores "$_tv_dshow"
7041 echocheck "Video 4 Linux TV interface"
7042 if test "$_tv_v4l1" = auto ; then
7043 _tv_v4l1=no
7044 if test "$_tv" = yes && linux ; then
7045 cat > $TMPC <<EOF
7046 #include <stdlib.h>
7047 #include <linux/videodev.h>
7048 int main(void) { return 0; }
7050 cc_check && _tv_v4l1=yes
7053 if test "$_tv_v4l1" = yes ; then
7054 _audio_input=yes
7055 _tv_v4l=yes
7056 _def_tv_v4l='#define CONFIG_TV_V4L 1'
7057 _def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7058 _inputmodules="tv-v4l $_inputmodules"
7059 else
7060 _noinputmodules="tv-v4l1 $_noinputmodules"
7061 _def_tv_v4l='#undef CONFIG_TV_V4L'
7063 echores "$_tv_v4l1"
7066 echocheck "Video 4 Linux 2 TV interface"
7067 if test "$_tv_v4l2" = auto ; then
7068 _tv_v4l2=no
7069 if test "$_tv" = yes && linux ; then
7070 cat > $TMPC <<EOF
7071 #include <stdlib.h>
7072 #include <linux/types.h>
7073 #include <linux/videodev2.h>
7074 int main(void) { return 0; }
7076 cc_check && _tv_v4l2=yes
7079 if test "$_tv_v4l2" = yes ; then
7080 _audio_input=yes
7081 _tv_v4l=yes
7082 _def_tv_v4l='#define CONFIG_TV_V4L 1'
7083 _def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7084 _inputmodules="tv-v4l2 $_inputmodules"
7085 else
7086 _noinputmodules="tv-v4l2 $_noinputmodules"
7087 _def_tv_v4l2='#undef CONFIG_TV_V4L2'
7089 echores "$_tv_v4l2"
7092 echocheck "TV teletext interface"
7093 if test "$_tv_teletext" = auto ; then
7094 _tv_teletext=no
7095 if test "$_freetype" = yes && test "$_pthreads" = yes; then
7096 if test "$_tv_v4l2" = yes || test "$_v4l" = yes || test "$_tv_dshow" = yes; then
7097 _tv_teletext=yes
7101 if test "$_tv_teletext" = yes ; then
7102 _def_tv_teletext='#define CONFIG_TV_TELETEXT 1'
7103 _inputmodules="tv-teletext $_inputmodules"
7104 else
7105 _noinputmodules="tv-teletext $_noinputmodules"
7106 _def_tv_teletext='#undef CONFIG_TV_TELETEXT'
7108 echores "$_tv_teletext"
7111 echocheck "Radio interface"
7112 if test "$_radio" = yes ; then
7113 _def_radio='#define CONFIG_RADIO 1'
7114 _inputmodules="radio $_inputmodules"
7115 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7116 _radio_capture=no
7118 if test "$_radio_capture" = yes ; then
7119 _audio_input=yes
7120 _def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7121 else
7122 _def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7124 else
7125 _noinputmodules="radio $_noinputmodules"
7126 _def_radio='#undef CONFIG_RADIO'
7127 _def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7128 _radio_capture=no
7130 echores "$_radio"
7131 echocheck "Capture for Radio interface"
7132 echores "$_radio_capture"
7134 echocheck "Video 4 Linux 2 Radio interface"
7135 if test "$_radio_v4l2" = auto ; then
7136 _radio_v4l2=no
7137 if test "$_radio" = yes && linux ; then
7138 cat > $TMPC <<EOF
7139 #include <stdlib.h>
7140 #include <linux/types.h>
7141 #include <linux/videodev2.h>
7142 int main(void) { return 0; }
7144 cc_check && _radio_v4l2=yes
7147 if test "$_radio_v4l2" = yes ; then
7148 _def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7149 else
7150 _def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7152 echores "$_radio_v4l2"
7154 echocheck "Video 4 Linux Radio interface"
7155 if test "$_radio_v4l" = auto ; then
7156 _radio_v4l=no
7157 if test "$_radio" = yes && linux ; then
7158 cat > $TMPC <<EOF
7159 #include <stdlib.h>
7160 #include <linux/videodev.h>
7161 int main(void) { return 0; }
7163 cc_check && _radio_v4l=yes
7166 if test "$_radio_v4l" = yes ; then
7167 _def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7168 else
7169 _def_radio_v4l='#undef CONFIG_RADIO_V4L'
7171 echores "$_radio_v4l"
7173 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7174 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7175 echocheck "*BSD BrookTree 848 Radio interface"
7176 _radio_bsdbt848=no
7177 cat > $TMPC <<EOF
7178 #include <sys/types.h>
7179 $_def_ioctl_bt848_h_name
7180 #ifdef IOCTL_BT848_H_NAME
7181 #include IOCTL_BT848_H_NAME
7182 #endif
7183 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7185 cc_check && _radio_bsdbt848=yes
7186 echores "$_radio_bsdbt848"
7187 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7189 if test "$_radio_bsdbt848" = yes ; then
7190 _def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7191 else
7192 _def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7195 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7196 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7197 die "Radio driver requires BSD BT848, V4L or V4L2!"
7200 echocheck "Video 4 Linux 2 MPEG PVR interface"
7201 if test "$_pvr" = auto ; then
7202 _pvr=no
7203 if test "$_tv_v4l2" = yes && linux ; then
7204 cat > $TMPC <<EOF
7205 #include <stdlib.h>
7206 #include <inttypes.h>
7207 #include <linux/types.h>
7208 #include <linux/videodev2.h>
7209 int main(void) { struct v4l2_ext_controls ext; return 0; }
7211 cc_check && _pvr=yes
7214 if test "$_pvr" = yes ; then
7215 _def_pvr='#define CONFIG_PVR 1'
7216 _inputmodules="pvr $_inputmodules"
7217 else
7218 _noinputmodules="pvr $_noinputmodules"
7219 _def_pvr='#undef CONFIG_PVR'
7221 echores "$_pvr"
7224 echocheck "audio select()"
7225 if test "$_select" = no ; then
7226 _def_select='#undef HAVE_AUDIO_SELECT'
7227 elif test "$_select" = yes ; then
7228 _def_select='#define HAVE_AUDIO_SELECT 1'
7230 echores "$_select"
7233 echocheck "ftp"
7234 if ! beos && test "$_ftp" = yes ; then
7235 _def_ftp='#define CONFIG_FTP 1'
7236 _inputmodules="ftp $_inputmodules"
7237 else
7238 _noinputmodules="ftp $_noinputmodules"
7239 _def_ftp='#undef CONFIG_FTP'
7241 echores "$_ftp"
7243 echocheck "vstream client"
7244 if test "$_vstream" = auto ; then
7245 _vstream=no
7246 cat > $TMPC <<EOF
7247 #include <vstream-client.h>
7248 void vstream_error(const char *format, ... ) {}
7249 int main(void) { vstream_start(); return 0; }
7251 cc_check -lvstream-client && _vstream=yes
7253 if test "$_vstream" = yes ; then
7254 _def_vstream='#define CONFIG_VSTREAM 1'
7255 _inputmodules="vstream $_inputmodules"
7256 _ld_extra="$_ld_extra -lvstream-client"
7257 else
7258 _noinputmodules="vstream $_noinputmodules"
7259 _def_vstream='#undef CONFIG_VSTREAM'
7261 echores "$_vstream"
7263 # endian testing
7264 echocheck "byte order"
7265 if test "$_big_endian" = auto ; then
7266 cat > $TMPC <<EOF
7267 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
7268 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
7269 int main(void) { return (int)ascii_name; }
7271 if cc_check ; then
7272 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
7273 _big_endian=yes
7274 else
7275 _big_endian=no
7277 else
7278 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
7281 if test "$_big_endian" = yes ; then
7282 _byte_order='big-endian'
7283 _def_words_endian='#define WORDS_BIGENDIAN 1'
7284 else
7285 _byte_order='little-endian'
7286 _def_words_endian='#undef WORDS_BIGENDIAN'
7288 echores "$_byte_order"
7290 echocheck "OSD menu"
7291 if test "$_menu" = yes ; then
7292 _def_menu='#define CONFIG_MENU 1'
7293 test $_dvbin = "yes" && _menu_dvbin=yes
7294 else
7295 _def_menu='#undef CONFIG_MENU'
7296 _menu_dvbin=no
7298 echores "$_menu"
7301 echocheck "Subtitles sorting"
7302 if test "$_sortsub" = yes ; then
7303 _def_sortsub='#define CONFIG_SORTSUB 1'
7304 else
7305 _def_sortsub='#undef CONFIG_SORTSUB'
7307 echores "$_sortsub"
7310 echocheck "XMMS inputplugin support"
7311 if test "$_xmms" = yes ; then
7312 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7313 _xmmsplugindir=`xmms-config --input-plugin-dir`
7314 _xmmslibdir=`xmms-config --exec-prefix`/lib
7315 else
7316 _xmmsplugindir=/usr/lib/xmms/Input
7317 _xmmslibdir=/usr/lib
7320 _def_xmms='#define CONFIG_XMMS 1'
7321 if darwin ; then
7322 _ld_extra="$_ld_extra ${_xmmslibdir}/libxmms.dylib"
7323 else
7324 _ld_extra="$_ld_extra ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7326 else
7327 _def_xmms='#undef CONFIG_XMMS'
7329 echores "$_xmms"
7331 echocheck "inet6"
7332 if test "$_inet6" = auto ; then
7333 cat > $TMPC << EOF
7334 #include <sys/types.h>
7335 #if !defined(_WIN32) || defined(__CYGWIN__)
7336 #include <sys/socket.h>
7337 #include <netinet/in.h>
7338 #else
7339 #include <ws2tcpip.h>
7340 #endif
7341 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
7343 _inet6=no
7344 if cc_check $_ld_sock ; then
7345 _inet6=yes
7348 if test "$_inet6" = yes ; then
7349 _def_inet6='#define HAVE_AF_INET6 1'
7350 else
7351 _def_inet6='#undef HAVE_AF_INET6'
7353 echores "$_inet6"
7356 echocheck "gethostbyname2"
7357 if test "$_gethostbyname2" = auto ; then
7358 cat > $TMPC << EOF
7359 #include <sys/types.h>
7360 #include <sys/socket.h>
7361 #include <netdb.h>
7362 int main(void) { gethostbyname2("", AF_INET); return 0; }
7364 _gethostbyname2=no
7365 if cc_check ; then
7366 _gethostbyname2=yes
7370 if test "$_gethostbyname2" = yes ; then
7371 _def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
7372 else
7373 _def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
7375 echores "$_gethostbyname2"
7378 # --------------- GUI specific tests begin -------------------
7379 echocheck "GUI"
7380 echo "$_gui"
7381 if test "$_gui" = yes ; then
7383 # Required libraries
7384 if test "$_libavcodec" != yes ||
7385 ! echo $_libavdecoders | grep -q PNG_DECODER ; then
7386 die "The GUI requires libavcodec with PNG support (needs zlib)."
7388 test "$_freetype" = no && test "$_bitmap_font" = no && \
7389 die "The GUI requires either FreeType or bitmap font support."
7390 if ! win32 ; then
7391 _gui_gtk=yes
7392 test "$_x11" != yes && die "X11 support required for GUI compilation."
7394 echocheck "XShape extension"
7395 if test "$_xshape" = auto ; then
7396 _xshape=no
7397 cat > $TMPC << EOF
7398 #include <X11/Xlib.h>
7399 #include <X11/Xproto.h>
7400 #include <X11/Xutil.h>
7401 #include <X11/extensions/shape.h>
7402 #include <stdlib.h>
7403 int main(void) {
7404 char *name = ":0.0";
7405 Display *wsDisplay;
7406 int exitvar = 0;
7407 int eventbase, errorbase;
7408 if (getenv("DISPLAY"))
7409 name=getenv("DISPLAY");
7410 wsDisplay=XOpenDisplay(name);
7411 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase))
7412 exitvar=1;
7413 XCloseDisplay(wsDisplay);
7414 return exitvar;
7417 cc_check -lXext && _xshape=yes
7419 if test "$_xshape" = yes ; then
7420 _def_xshape='#define CONFIG_XSHAPE 1'
7421 else
7422 die "The GUI requires the X11 extension XShape (which was not found)."
7424 echores "$_xshape"
7426 #Check for GTK
7427 if test "$_gtk1" = no ; then
7428 #Check for GTK2 :
7429 echocheck "GTK+ version"
7431 if $_pkg_config gtk+-2.0 --exists ; then
7432 _gtk=`$_pkg_config gtk+-2.0 --modversion 2>/dev/null`
7433 _inc_extra="$_inc_extra `$_pkg_config gtk+-2.0 --cflags 2>/dev/null`"
7434 _libs_mplayer="$_libs_mplayer `$_pkg_config gtk+-2.0 --libs 2>/dev/null`"
7435 echores "$_gtk"
7437 # Check for GLIB2
7438 if $_pkg_config glib-2.0 --exists ; then
7439 echocheck "glib version"
7440 _glib=`$_pkg_config glib-2.0 --modversion 2>/dev/null`
7441 _libs_mplayer="$_libs_mplayer `$_pkg_config glib-2.0 --libs 2>/dev/null`"
7442 echores "$_glib"
7444 _def_gui='#define CONFIG_GUI 1'
7445 _def_gtk2='#define CONFIG_GTK2 1'
7446 else
7447 _gtk1=yes
7448 echo "GLIB-2 devel packages were not found, trying GTK 1.2"
7450 else
7451 echo "GTK-2 devel packages were not found, trying GTK 1.2"
7452 _gtk1=yes
7456 if test "$_gtk1" = yes ; then
7457 # Check for old GTK (1.2.x)
7458 echocheck "GTK version"
7459 if test -z "$_gtkconfig" ; then
7460 if ( gtk-config --version ) >/dev/null 2>&1 ; then
7461 _gtkconfig="gtk-config"
7462 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
7463 _gtkconfig="gtk12-config"
7464 else
7465 die "The GUI requires GTK devel packages (which were not found)."
7468 _gtk=`$_gtkconfig --version 2>&1`
7469 _inc_extra="$_inc_extra `$_gtkconfig --cflags 2>&1`"
7470 _libs_mplayer="$_libs_mplayer `$_gtkconfig --libs 2>&1`"
7471 echores "$_gtk (using $_gtkconfig)"
7473 # Check for GLIB
7474 echocheck "glib version"
7475 if test -z "$_glibconfig" ; then
7476 if ( glib-config --version ) >/dev/null 2>&1 ; then
7477 _glibconfig="glib-config"
7478 elif ( glib12-config --version ) >/dev/null 2>&1 ; then
7479 _glibconfig="glib12-config"
7480 else
7481 die "The GUI requires GLIB devel packages (which were not found)"
7484 _glib=`$_glibconfig --version 2>&1`
7485 _libs_mplayer="$_libs_mplayer `$_glibconfig --libs 2>&1`"
7486 echores "$_glib (using $_glibconfig)"
7488 _def_gui='#define CONFIG_GUI 1'
7489 _def_gtk2='#undef CONFIG_GTK2'
7492 else #if ! win32
7493 _gui_win32=yes
7494 _libs_mplayer="$_libs_mplayer -lcomdlg32 -lcomctl32 -lshell32 -lkernel32"
7495 _def_gui='#define CONFIG_GUI 1'
7496 _def_gtk2='#undef CONFIG_GTK2'
7497 fi #if ! win32
7499 else #if test "$_gui"
7500 _def_gui='#undef CONFIG_GUI'
7501 _def_gtk2='#undef CONFIG_GTK2'
7502 fi #if test "$_gui"
7503 # --------------- GUI specific tests end -------------------
7506 if test "$_charset" = "noconv" ; then
7507 _charset=""
7509 if test "$_charset" ; then
7510 _def_charset="#define MSG_CHARSET \"$_charset\""
7511 else
7512 _def_charset="#undef MSG_CHARSET"
7515 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
7516 echocheck "iconv program"
7517 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
7518 if test "$?" -ne 0 ; then
7519 echores "no"
7520 echo "No working iconv program found, use "
7521 echo "--charset=UTF-8 to continue anyway."
7522 echo "If you also have problems with iconv library functions use --charset=noconv."
7523 echo "Messages in the GTK-2 interface will be broken then."
7524 exit 1
7525 else
7526 echores "yes"
7530 #############################################################################
7532 echocheck "automatic gdb attach"
7533 if test "$_crash_debug" = yes ; then
7534 _def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7535 else
7536 _def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7537 _crash_debug=no
7539 echores "$_crash_debug"
7541 echocheck "compiler support for noexecstack"
7542 cat > $TMPC <<EOF
7543 int main(void) { return 0; }
7545 if cc_check -Wl,-z,noexecstack ; then
7546 _ld_extra="-Wl,-z,noexecstack $_ld_extra"
7547 echores "yes"
7548 else
7549 echores "no"
7553 # Dynamic linking flags
7554 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7555 _ld_dl_dynamic=''
7556 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7557 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 ; then
7558 _ld_dl_dynamic='-rdynamic'
7561 _ld_extra="$_ld_extra $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7562 bsdos && _ld_extra="$_ld_extra -ldvd"
7563 netbsd && x86_32 && _ld_extra="$_ld_extra -li386"
7564 openbsd && x86_32 && _ld_extra="$_ld_extra -li386"
7566 _def_debug='#undef MP_DEBUG'
7567 test "$_debug" != "" && _def_debug='#define MP_DEBUG 1'
7570 echocheck "joystick"
7571 _def_joystick='#undef CONFIG_JOYSTICK'
7572 if test "$_joystick" = yes ; then
7573 if linux ; then
7574 # TODO add some check
7575 _def_joystick='#define CONFIG_JOYSTICK 1'
7576 else
7577 _joystick="no"
7578 _res_comment="unsupported under $system_name"
7581 echores "$_joystick"
7583 echocheck "lirc"
7584 if test "$_lirc" = auto ; then
7585 _lirc=no
7586 cat > $TMPC <<EOF
7587 #include <lirc/lirc_client.h>
7588 int main(void) { return 0; }
7590 cc_check -llirc_client && _lirc=yes
7592 if test "$_lirc" = yes ; then
7593 _def_lirc='#define CONFIG_LIRC 1'
7594 _ld_extra="$_ld_extra -llirc_client"
7595 else
7596 _def_lirc='#undef CONFIG_LIRC'
7598 echores "$_lirc"
7600 echocheck "lircc"
7601 if test "$_lircc" = auto ; then
7602 _lircc=no
7603 cat > $TMPC <<EOF
7604 #include <lirc/lircc.h>
7605 int main(void) { return 0; }
7607 cc_check -llircc && _lircc=yes
7609 if test "$_lircc" = yes ; then
7610 _def_lircc='#define CONFIG_LIRCC 1'
7611 _ld_extra="$_ld_extra -llircc"
7612 else
7613 _def_lircc='#undef CONFIG_LIRCC'
7615 echores "$_lircc"
7617 if arm; then
7618 # Detect maemo development platform libraries availability (http://www.maemo.org),
7619 # they are used when run on Nokia 770|8x0
7620 echocheck "maemo (Nokia 770|8x0)"
7621 if test "$_maemo" = auto ; then
7622 _maemo=no
7623 cat > $TMPC << EOF
7624 #include <libosso.h>
7625 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7627 cc_check `$_pkg_config --cflags --libs libosso 2>/dev/null` && _maemo=yes
7629 if test "$_maemo" = yes ; then
7630 _def_maemo='#define CONFIG_MAEMO 1'
7631 _inc_extra="$_inc_extra `$_pkg_config --cflags libosso`"
7632 _ld_extra="$_ld_extra `$_pkg_config --libs libosso` -lXsp"
7633 else
7634 _def_maemo='#undef CONFIG_MAEMO'
7636 echores "$_maemo"
7639 #this must be the last test to be performed or the ones following it will likely fail
7640 #because libdvdnavmini is intentionally not linked against libdvdread (to permit mplayer
7641 # to use its own copy of the library)
7642 echocheck "DVD support (libdvdnav)"
7643 if test "$_dvdnav" = auto ; then
7644 if test "$_dvdread_internal" = yes ; then
7645 _dvdnav=no
7646 _res_comment="Disabled in favor of the internal copy of dvdread. Append --disable-dvdread-internal."
7647 else
7648 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7651 if test "$_dvdnav" = auto ; then
7652 cat > $TMPC <<EOF
7653 #include <inttypes.h>
7654 #include <dvdnav/dvdnav.h>
7655 int main(void) { dvdnav_t *dvd=0; return 0; }
7657 _dvdnav=no
7658 _dvdnavdir=`$_dvdnavconfig --cflags`
7659 _dvdnavlibs=`$_dvdnavconfig --libs`
7660 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7662 if test "$_dvdnav" = yes ; then
7663 _largefiles=yes
7664 _def_dvdnav='#define CONFIG_DVDNAV 1'
7665 _inc_extra="$_inc_extra `$_dvdnavconfig --cflags`"
7666 _ld_extra="$_ld_extra `$_dvdnavconfig --minilibs`"
7667 _inputmodules="dvdnav $_inputmodules"
7668 else
7669 _def_dvdnav='#undef CONFIG_DVDNAV'
7670 _noinputmodules="dvdnav $_noinputmodules"
7672 echores "$_dvdnav"
7675 #############################################################################
7677 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7678 # the OMF format needs to come after the 'extern symbol prefix' check, which
7679 # uses nm.
7680 if os2 ; then
7681 _ld_extra="$_ld_extra -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7684 # linker paths should be the same for mencoder and mplayer
7685 _ld_tmp=""
7686 for I in $_libs_mplayer ; do
7687 _tmp=`echo $I | sed -e 's/^-L.*$//'`
7688 if test -z "$_tmp" ; then
7689 _ld_extra="$I $_ld_extra"
7690 else
7691 _ld_tmp="$_ld_tmp $I"
7693 done
7694 _libs_mplayer=$_ld_tmp
7697 #############################################################################
7698 if darwin ; then
7699 CFLAGS="$CFLAGS -mdynamic-no-pic -falign-loops=16 -shared-libgcc"
7700 if [ "$_cc_major" = 3 ] && [ "$_cc_minor" -lt 1 ]; then
7701 CFLAGS="$CFLAGS -no-cpp-precomp"
7704 if amigaos ; then
7705 CFLAGS="$CFLAGS -DNEWLIB -D__USE_INLINE__"
7707 # Thread support
7708 if linux ; then
7709 CFLAGS="$CFLAGS -D_REENTRANT"
7710 elif freebsd || netbsd || openbsd || bsdos ; then
7711 # FIXME bsd needs this so maybe other OS'es
7712 CFLAGS="$CFLAGS -D_THREAD_SAFE"
7714 # 64 bit file offsets?
7715 if test "$_largefiles" = yes || freebsd ; then
7716 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7717 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7718 # dvdread support requires this (for off64_t)
7719 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7723 CXXFLAGS=" $CFLAGS -D__STDC_LIMIT_MACROS"
7725 cat > $TMPC << EOF
7726 int main(void) { return 0; }
7728 if test "$cc_vendor" = "gnu" ; then
7729 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
7730 cc_check -Wdeclaration-after-statement && CFLAGS="-Wdeclaration-after-statement $CFLAGS"
7731 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
7732 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
7735 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
7737 #############################################################################
7738 echo "Creating config.mak"
7739 cat > config.mak << EOF
7740 # -------- Generated by configure -----------
7742 # Ensure that locale settings do not interfere with shell commands.
7743 export LC_ALL = C
7745 CHARSET = $_charset
7746 DOC_LANG = $doc_lang
7747 DOC_LANGS = $doc_langs
7748 DOC_LANG_ALL = $doc_lang_all
7749 MAN_LANG = $man_lang
7750 MAN_LANGS = $man_langs
7751 MAN_LANG_ALL = $man_lang_all
7753 prefix = \$(DESTDIR)$_prefix
7754 BINDIR = \$(DESTDIR)$_bindir
7755 DATADIR = \$(DESTDIR)$_datadir
7756 LIBDIR = \$(DESTDIR)$_libdir
7757 MANDIR = \$(DESTDIR)$_mandir
7758 CONFDIR = \$(DESTDIR)$_confdir
7760 AR = $_ar
7761 CC = $_cc
7762 CXX = $_cc
7763 HOST_CC = $_host_cc
7764 INSTALL = $_install
7765 INSTALLSTRIP = $_install_strip
7766 RANLIB = $_ranlib
7767 WINDRES = $_windres
7769 EXTRA_INC = $_inc_extra
7770 EXTRAXX_INC = $_inc_extra $_inc_extraxx
7771 CFLAGS = $CFLAGS \$(EXTRA_INC)
7772 OPTFLAGS = $CFLAGS \$(EXTRA_INC)
7773 CXXFLAGS = $CXXFLAGS \$(EXTRAXX_INC)
7774 CFLAGS_DHAHELPER = $cflags_dhahelper
7775 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7776 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7777 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7778 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7779 CFLAGS_STACKREALIGN = $cflags_stackrealign
7780 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7781 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7783 EXTRALIBS = $_extra_libs
7784 EXTRA_LIB = $_ld_extra $_ld_static $_ld_lm
7785 EXTRALIBS_MPLAYER = $_libs_mplayer
7786 EXTRALIBS_MENCODER = $_libs_mencoder
7788 DEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.h,\$^) | sed "s,[0-9a-z._-]*: \(\$(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\\2&,"
7790 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 &,"
7791 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 &,"
7793 GETCH = $_getch
7794 HELP_FILE = $_mp_help
7795 TIMER = $_timer
7797 AO_SRCS = $_aosrc
7798 VO_SRCS = $_vosrc
7800 EXESUF = $_exesuf
7802 $_target_arch
7803 $_target_arch_x86
7804 `echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/'`
7806 MENCODER = $_mencoder
7807 MPLAYER = $_mplayer
7809 NEED_GETTIMEOFDAY = $_need_gettimeofday
7810 NEED_GLOB = $_need_glob
7811 NEED_MMAP = $_need_mmap
7812 NEED_SETENV = $_need_setenv
7813 NEED_SHMEM = $_need_shmem
7814 NEED_STRSEP = $_need_strsep
7815 NEED_SWAB = $_need_swab
7816 NEED_VSSCANF = $_need_vsscanf
7818 # features
7819 ALSA1X = $_alsa1x
7820 ALSA9 = $_alsa9
7821 APPLE_IR = $_apple_ir
7822 APPLE_REMOTE = $_apple_remote
7823 AUDIO_INPUT = $_audio_input
7824 BITMAP_FONT = $_bitmap_font
7825 CDDA = $_cdda
7826 CDDB = $_cddb
7827 COREAUDIO = $_coreaudio
7828 COREVIDEO = $_corevideo
7829 DVBIN = $_dvbin
7830 DVDNAV = $_dvdnav
7831 DVDREAD = $_dvdread
7832 DVDREAD_INTERNAL = $_dvdread_internal
7833 FAAC=$_faac
7834 FAAD = $_faad
7835 FAAD_INTERNAL = $_faad_internal
7836 FREETYPE = $_freetype
7837 FTP = $_ftp
7838 GIF = $_gif
7839 GUI = $_gui
7840 GUI_GTK = $_gui_gtk
7841 GUI_WIN32 = $_gui_win32
7842 HAVE_POSIX_SELECT = $_posix_select
7843 HAVE_SYS_MMAN_H = $_mman
7844 HAVE_XVMC = $_xvmc
7845 JOYSTICK = $_joystick
7846 JPEG = $_jpeg
7847 LADSPA = $_ladspa
7848 LIBA52 = $_liba52
7849 LIBA52_INTERNAL = $_liba52_internal
7850 LIBASS = $_ass
7851 LIBDCA = $_libdca
7852 LIBDV = $_libdv
7853 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7854 LIBLZO = $_liblzo
7855 LIBMAD = $_mad
7856 LIBMENU = $_menu
7857 LIBMENU_DVBIN = $_menu_dvbin
7858 LIBMPEG2 = $_libmpeg2
7859 LIBNEMESI = $_nemesi
7860 LIBNUT = $_libnut
7861 LIBSMBCLIENT = $_smb
7862 LIBTHEORA = $_theora
7863 LIBVORBIS = $_vorbis
7864 LIRC = $_lirc
7865 LIVE555 = $_live
7866 MACOSX_BUNDLE = $_macosx_bundle
7867 MACOSX_FINDER = $_macosx_finder
7868 MP3LAME = $_mp3lame
7869 MP3LIB = $_mp3lib
7870 MUSEPACK = $_musepack
7871 NATIVE_RTSP = $_native_rtsp
7872 NETWORK = $_network
7873 OSS = $_ossaudio
7874 PE_EXECUTABLE = $_pe_executable
7875 PNG = $_png
7876 PVR = $_pvr
7877 QTX_CODECS = $_qtx
7878 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7879 QTX_EMULATION = $_qtx_emulation
7880 QUARTZ = $_quartz
7881 RADIO=$_radio
7882 RADIO_CAPTURE=$_radio_capture
7883 REAL_CODECS = $_real
7884 SPEEX = $_speex
7885 STREAM_CACHE = $_stream_cache
7886 TOOLAME=$_toolame
7887 TREMOR_INTERNAL = $_tremor_internal
7888 TV = $_tv
7889 TV_BSDBT848 = $_tv_bsdbt848
7890 TV_DSHOW = $_tv_dshow
7891 TV_TELETEXT = $_tv_teletext
7892 TV_V4L = $_tv_v4l
7893 TV_V4L1 = $_tv_v4l1
7894 TV_V4L2 = $_tv_v4l2
7895 TWOLAME=$_twolame
7896 UNRAR_EXEC = $_unrar_exec
7897 VCD = $_vcd
7898 VIDIX = $_vidix
7899 VIDIX_PCIDB = $_vidix_pcidb_val
7900 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7901 VIDIX_IVTV=$_vidix_drv_ivtv
7902 VIDIX_MACH64=$_vidix_drv_mach64
7903 VIDIX_MGA=$_vidix_drv_mga
7904 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7905 VIDIX_NVIDIA=$_vidix_drv_nvidia
7906 VIDIX_PM2=$_vidix_drv_pm2
7907 VIDIX_PM3=$_vidix_drv_pm3
7908 VIDIX_RADEON=$_vidix_drv_radeon
7909 VIDIX_RAGE128=$_vidix_drv_rage128
7910 VIDIX_S3=$_vidix_drv_s3
7911 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7912 VIDIX_SIS=$_vidix_drv_sis
7913 VIDIX_UNICHROME=$_vidix_drv_unichrome
7914 VSTREAM = $_vstream
7915 WIN32DLL = $_win32dll
7916 WIN32_EMULATION = $_win32_emulation
7917 X264 = $_x264
7918 XANIM_CODECS = $_xanim
7919 XMMS_PLUGINS = $_xmms
7920 XVID4 = $_xvid
7921 ZORAN = $_zr
7923 # FFmpeg
7924 LIBAVUTIL = $_libavutil
7925 LIBAVUTIL_A = $_libavutil_a
7926 LIBAVUTIL_SO = $_libavutil_so
7927 LIBAVCODEC = $_libavcodec
7928 LIBAVCODEC_A = $_libavcodec_a
7929 LIBAVCODEC_SO = $_libavcodec_so
7930 LIBAVFORMAT = $_libavformat
7931 LIBAVFORMAT_A = $_libavformat_a
7932 LIBAVFORMAT_SO = $_libavformat_so
7933 LIBPOSTPROC = $_libpostproc
7934 LIBPOSTPROC_A = $_libpostproc_a
7935 LIBPOSTPROC_SO = $_libpostproc_so
7936 LIBSWSCALE = $_libswscale
7937 LIBSWSCALE_A = $_libswscale_a
7938 LIBSWSCALE_SO = $_libswscale_so
7940 BUILD_STATIC=yes
7941 SRC_PATH=..
7942 BUILD_ROOT=..
7943 LIBPREF=lib
7944 LIBSUF=.a
7945 LIBNAME=\$(LIBPREF)\$(NAME)\$(LIBSUF)
7947 CONFIG_ENCODERS=yes
7948 CONFIG_GPL=yes
7949 CONFIG_MUXERS=$_mencoder
7950 CONFIG_LIBAMR=$_libamr
7951 CONFIG_LIBAMR_NB=$_libamr_nb
7952 CONFIG_LIBAMR_WB=$_libamr_wb
7953 CONFIG_LIBDIRAC=$_libdirac_lavc
7954 CONFIG_LIBFAAC=$_faac_lavc
7955 CONFIG_LIBMP3LAME=$_mp3lame_lavc
7956 CONFIG_LIBSCHROEDINGER=$_libschroedinger_lavc
7957 CONFIG_LIBVORBIS=$_libvorbis
7958 CONFIG_LIBX264=$_x264_lavc
7959 CONFIG_LIBXVID=$_xvid_lavc
7960 CONFIG_MLIB = $_mlib
7961 CONFIG_POSTPROC = yes
7962 # Prevent building libavcodec/imgresample.c with conflicting symbols
7963 CONFIG_SWSCALE=yes
7964 CONFIG_ZLIB=$_zlib
7966 HAVE_PTHREADS = $_pthreads
7967 HAVE_W32THREADS = $_w32threads
7969 `echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7970 `echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7971 `echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7972 `echo $_libavdemuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7973 `echo $_libavmuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7974 `echo $_libavbsfs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7977 #############################################################################
7979 ff_config_enable () {
7980 _nprefix=$3;
7981 test -z "$_nprefix" && _nprefix='CONFIG'
7982 for part in $1; do
7983 if ` echo $2 | grep -q -E "(^| )$part($| )" `; then
7984 echo "#define ${_nprefix}_$part 1"
7985 echo "#define ENABLE_$part 1"
7986 else
7987 echo "#define ENABLE_$part 0"
7989 done
7992 echo "Creating config.h"
7993 cat > $TMPH << EOF
7994 /*----------------------------------------------------------------------------
7995 ** This file has been automatically generated by configure any changes in it
7996 ** will be lost when you run configure again.
7997 ** Instead of modifying definitions here, use the --enable/--disable options
7998 ** of the configure script! See ./configure --help for details.
7999 *---------------------------------------------------------------------------*/
8001 #ifndef MPLAYER_CONFIG_H
8002 #define MPLAYER_CONFIG_H
8004 /* Undefine this if you do not want to select mono audio (left or right)
8005 with a stereo MPEG layer 2/3 audio stream. The command line option
8006 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8007 right-only), with 0 being the default.
8009 #define CONFIG_FAKE_MONO 1
8011 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8012 #define MAX_OUTBURST 65536
8014 /* set up audio OUTBURST. Do not change this! */
8015 #define OUTBURST 512
8017 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8018 #undef FAST_OSD
8019 #undef FAST_OSD_TABLE
8021 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8022 #define MPEG12_POSTPROC 1
8023 #define ATTRIBUTE_ALIGNED_MAX 16
8027 #define CONFIGURATION "$_configuration"
8029 #define MPLAYER_DATADIR "$_datadir"
8030 #define MPLAYER_CONFDIR "$_confdir"
8031 #define MPLAYER_LIBDIR "$_libdir"
8033 /* definitions needed by included libraries */
8034 #define HAVE_INTTYPES_H 1
8035 /* libmpeg2 + FFmpeg */
8036 $_def_fast_inttypes
8037 /* libdvdcss */
8038 #define HAVE_ERRNO_H 1
8039 /* libdvdcss + libdvdread */
8040 #define HAVE_LIMITS_H 1
8041 /* libdvdcss + libfaad2 */
8042 #define HAVE_UNISTD_H 1
8043 /* libfaad2 + libdvdread */
8044 #define STDC_HEADERS 1
8045 #define HAVE_MEMCPY 1
8046 /* libdvdread */
8047 #define HAVE_UINTPTR_T 1
8050 /* system headers */
8051 $def_alloca_h
8052 $def_alsa_asoundlib_h
8053 $def_altivec_h
8054 $def_malloc_h
8055 $def_mman_h
8056 $_def_mman_has_map_failed
8057 $def_soundcard_h
8058 $def_sys_asoundlib_h
8059 $def_sys_soundcard_h
8060 $def_sys_sysinfo_h
8061 $def_termios_h
8062 $def_termios_sys_h
8063 $def_winsock2_h
8066 /* system functions */
8067 $_def_gethostbyname2
8068 $_def_gettimeofday
8069 $_def_glob
8070 $_def_langinfo
8071 $_def_llrint
8072 $_def_lrint
8073 $_def_lrintf
8074 $_def_map_memalign
8075 $_def_memalign
8076 $_def_memalign_hack
8077 $_def_nanosleep
8078 $_def_posix_select
8079 $_def_round
8080 $_def_roundf
8081 $_def_select
8082 $_def_setenv
8083 $_def_shm
8084 $_def_strsep
8085 $_def_swab
8086 $_def_sysi86
8087 $_def_sysi86_iv
8088 $_def_termcap
8089 $_def_termios
8090 $_def_vsscanf
8093 /* system-specific features */
8094 $_def_asmalign_pot
8095 $_def_builtin_expect
8096 $_def_dl
8097 $_def_iconv
8098 $_def_kstat
8099 $_def_macosx_bundle
8100 $_def_macosx_finder
8101 $_def_maemo
8102 $_def_named_asm_args
8103 $_def_quicktime
8104 $_def_restrict_keyword
8105 $_def_rtc
8106 $_def_unrar_exec
8109 /* configurable options */
8110 $_def_charset
8111 $_def_crash_debug
8112 $_def_debug
8113 $_def_dynamic_plugins
8114 $_def_fastmemcpy
8115 $_def_menu
8116 $_def_runtime_cpudetection
8117 $_def_sighandler
8118 $_def_sortsub
8119 $_def_stream_cache
8122 /* CPU stuff */
8123 #define __CPU__ $iproc
8124 $_def_words_endian
8125 `ff_config_enable "$_arch_all" "$_arch" "ARCH"`
8126 `ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE"`
8129 /* DVD/VCD/CD */
8130 $_def_bsdi_dvd
8131 $_def_cddb
8132 $_def_cdio
8133 $_def_cdparanoia
8134 $_def_cdrom
8135 $_def_dvd
8136 $_def_dvd_bsd
8137 $_def_dvd_darwin
8138 $_def_dvd_linux
8139 $_def_dvd_openbsd
8140 $_def_dvdio
8141 $_def_dvdnav
8142 $_def_dvdread
8143 $_def_dvdread_internal
8144 $_def_hpux_scsi_h
8145 $_def_libcdio
8146 $_def_sol_scsi_h
8147 $_def_vcd
8150 /* codec libraries */
8151 $_def_faac
8152 $_def_faad
8153 $_def_faad_internal
8154 $_def_liba52
8155 $_def_liba52_internal
8156 $_def_libdca
8157 $_def_libdv
8158 $_def_liblzo
8159 $_def_libmpeg2
8160 $_def_mad
8161 $_def_mp3lame
8162 $_def_mp3lame_preset
8163 $_def_mp3lame_preset_medium
8164 $_def_mp3lib
8165 $_def_musepack
8166 $_def_speex
8167 $_def_theora
8168 $_def_toolame
8169 $_def_tremor
8170 $_def_twolame
8171 $_def_vorbis
8172 $_def_x264
8173 $_def_xvid
8174 $_def_zlib
8176 $_def_libnut
8179 /* binary codecs */
8180 $_def_qtx
8181 $_def_qtx_win32
8182 $_def_real
8183 $_def_real_path
8184 $_def_win32_loader
8185 $_def_win32dll
8186 #define WIN32_PATH "$_win32codecsdir"
8187 $_def_xanim
8188 $_def_xanim_path
8189 $_def_xmms
8190 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8193 /* GUI */
8194 $_def_gtk2
8195 $_def_gui
8196 $_def_xshape
8199 /* Audio output drivers */
8200 $_def_alsa
8201 $_def_alsa1x
8202 $_def_alsa5
8203 $_def_alsa9
8204 $_def_arts
8205 $_def_coreaudio
8206 $_def_esd
8207 $_def_esd_latency
8208 $_def_jack
8209 $_def_nas
8210 $_def_openal
8211 $_def_openal_h
8212 $_def_ossaudio
8213 $_def_ossaudio_devdsp
8214 $_def_ossaudio_devmixer
8215 $_def_pulse
8216 $_def_sgiaudio
8217 $_def_sunaudio
8218 $_def_win32waveout
8220 $_def_ladspa
8223 /* input */
8224 $_def_apple_ir
8225 $_def_apple_remote
8226 $_def_ioctl_bt848_h_name
8227 $_def_ioctl_meteor_h_name
8228 $_def_joystick
8229 $_def_lirc
8230 $_def_lircc
8231 $_def_pvr
8232 $_def_radio
8233 $_def_radio_bsdbt848
8234 $_def_radio_capture
8235 $_def_radio_v4l
8236 $_def_radio_v4l2
8237 $_def_tv
8238 $_def_tv_bsdbt848
8239 $_def_tv_dshow
8240 $_def_tv_teletext
8241 $_def_tv_v4l
8242 $_def_tv_v4l1
8243 $_def_tv_v4l2
8246 /* font stuff */
8247 $_def_ass
8248 $_def_bitmap_font
8249 $_def_enca
8250 $_def_fontconfig
8251 $_def_freetype
8252 $_def_fribidi
8255 /* networking */
8256 $_def_closesocket
8257 $_def_ftp
8258 $_def_inet6
8259 $_def_live
8260 $_def_nemesi
8261 $_def_network
8262 $_def_smb
8263 $_def_socklen_t
8264 $_def_use_aton
8265 $_def_vstream
8268 /* libvo options */
8269 $_def_3dfx
8270 $_def_aa
8271 $_def_bl
8272 $_def_caca
8273 $_def_corevideo
8274 $_def_dfbmga
8275 $_def_dga
8276 $_def_dga1
8277 $_def_dga2
8278 $_def_directfb
8279 $_def_directfb_version
8280 $_def_directx
8281 $_def_dvb
8282 $_def_dvb_head
8283 $_def_dvbin
8284 $_def_dxr2
8285 $_def_dxr3
8286 $_def_fbdev
8287 $_def_ggi
8288 $_def_ggiwmh
8289 $_def_gif
8290 $_def_gif_4
8291 $_def_gif_tvt_hack
8292 $_def_gl
8293 $_def_gl_win32
8294 $_def_ivtv
8295 $_def_jpeg
8296 $_def_md5sum
8297 $_def_mga
8298 $_def_png
8299 $_def_pnm
8300 $_def_quartz
8301 $_def_s3fb
8302 $_def_sdl
8303 $_def_sdlbuggy
8304 $_def_svga
8305 $_def_tdfxfb
8306 $_def_tdfxvid
8307 $_def_tga
8308 $_def_v4l2
8309 $_def_vesa
8310 $_def_vidix
8311 $_def_vidix_drv_cyberblade
8312 $_def_vidix_drv_ivtv
8313 $_def_vidix_drv_mach64
8314 $_def_vidix_drv_mga
8315 $_def_vidix_drv_mga_crtc2
8316 $_def_vidix_drv_nvidia
8317 $_def_vidix_drv_pm3
8318 $_def_vidix_drv_radeon
8319 $_def_vidix_drv_rage128
8320 $_def_vidix_drv_s3
8321 $_def_vidix_drv_sh_veu
8322 $_def_vidix_drv_sis
8323 $_def_vidix_drv_unichrome
8324 $_def_vidix_pfx
8325 $_def_vm
8326 $_def_wii
8327 $_def_x11
8328 $_def_xdpms
8329 $_def_xf86keysym
8330 $_def_xinerama
8331 $_def_xmga
8332 $_def_xss
8333 $_def_xv
8334 $_def_xvmc
8335 $_def_xvr100
8336 $_def_yuv4mpeg
8337 $_def_zr
8340 /* FFmpeg */
8341 $_def_libavcodec
8342 $_def_libavcodec_a
8343 $_def_libavcodec_mpegaudio_hp
8344 $_def_libavcodec_so
8345 $_def_libavformat
8346 $_def_libavformat_a
8347 $_def_libavformat_so
8348 $_def_libavutil
8349 $_def_libavutil_a
8350 $_def_libavutil_so
8351 $_def_libpostproc
8352 $_def_libpostproc_a
8353 $_def_libpostproc_so
8354 $_def_libswscale
8355 $_def_libswscale_a
8356 $_def_libswscale_so
8358 $_def_dcbzl
8359 $_def_extern_prefix
8360 $_def_fast_unaligned
8361 $_def_mkstemp
8362 $_def_pthreads
8363 $_def_threads
8364 #ifdef HAVE_THREADS
8365 #define ENABLE_THREADS 1
8366 #else
8367 #define ENABLE_THREADS 0
8368 #endif
8370 #define CONFIG_GPL 1
8371 #define ENABLE_SMALL 0
8372 #define ENABLE_GRAY 0
8374 #define CONFIG_DECODERS 1
8375 #define ENABLE_DECODERS 1
8376 #define CONFIG_ENCODERS 1
8377 #define ENABLE_ENCODERS 1
8379 #define CONFIG_DEMUXERS 1
8380 #define ENABLE_DEMUXERS 1
8381 $_def_muxers
8383 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8384 #define HAVE_EBX_AVAILABLE 1
8385 #ifndef MP_DEBUG
8386 #define HAVE_EBP_AVAILABLE 1
8387 #endif
8389 /* External libraries used through libavcodec. */
8390 $_def_faac_lavc
8391 $_def_libamr
8392 $_def_libamr_nb
8393 $_def_libamr_wb
8394 $_def_libdirac_lavc
8395 $_def_libschroedinger_lavc
8396 $_def_mp3lame_lavc
8397 $_def_x264_lavc
8398 $_def_xvid_lavc
8400 `ff_config_enable "$_libavdecoders_all" "$_libavdecoders"`
8401 `ff_config_enable "$_libavencoders_all" "$_libavencoders"`
8402 `ff_config_enable "$_libavparsers_all" "$_libavparsers"`
8403 `ff_config_enable "$_libavdemuxers_all" "$_libavdemuxers"`
8404 `ff_config_enable "$_libavmuxers_all" "$_libavmuxers"`
8405 `ff_config_enable "$_libavprotocols_all" "$_libavprotocols"`
8406 `ff_config_enable "$_libavbsfs_all" "$_libavbsfs"`
8408 #endif /* MPLAYER_CONFIG_H */
8411 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8412 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8414 #############################################################################
8416 cat << EOF
8418 Config files successfully generated by ./configure $_configuration !
8420 Install prefix: $_prefix
8421 Data directory: $_datadir
8422 Config direct.: $_confdir
8424 Byte order: $_byte_order
8425 Optimizing for: $_optimizing
8427 Languages:
8428 Messages/GUI: $msg_lang
8429 Manual pages: $man_langs
8431 Enabled optional drivers:
8432 Input: $_inputmodules
8433 Codecs: $_codecmodules
8434 Audio output: $_aomodules
8435 Video output: $_vomodules
8437 Disabled optional drivers:
8438 Input: $_noinputmodules
8439 Codecs: $_nocodecmodules
8440 Audio output: $_noaomodules
8441 Video output: $_novomodules
8443 'config.h' and 'config.mak' contain your configuration options.
8444 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8445 compile *** DO NOT REPORT BUGS if you tweak these files ***
8447 'make' will now compile MPlayer and 'make install' will install it.
8448 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8453 if test "$_mtrr" = yes ; then
8454 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8455 echo
8458 if ! x86_32; then
8459 cat <<EOF
8460 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8461 operating system ($system_name). You may encounter a few files that cannot
8462 be played due to missing open source video/audio codec support.
8468 cat <<EOF
8469 Check $TMPLOG if you wonder why an autodetection failed (make sure
8470 development headers/packages are installed).
8472 NOTE: The --enable-* parameters unconditionally force options on, completely
8473 skipping autodetection. This behavior is unlike what you may be used to from
8474 autoconf-based configure scripts that can decide to override you. This greater
8475 level of control comes at a price. You may have to provide the correct compiler
8476 and linker flags yourself.
8477 If you used one of these options (except --enable-gui and similar ones that
8478 turn on internal features) and experience a compilation or linking failure,
8479 make sure you have passed the necessary compiler/linker flags to configure.
8481 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8485 if test "$_warn_CFLAGS" = yes; then
8486 cat <<EOF
8488 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS set by you, but:
8490 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8492 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8493 To do so, execute 'CFLAGS= ./configure <options>'
8498 # Last move:
8499 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"