Merge svn changes up to r30463
[mplayer/kovensky.git] / configure
blob519edaad26dd053f7b66c6fd3785a5515caa9a28
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, here is a simple skeleton:
24 # echocheck "$feature"
25 # if test "$_feature" = auto; then
26 # cat > $TMPC << EOF
27 # #include <feature.h>
28 # int main(void) { return 0; }
29 # EOF
30 # _feature=no
31 # cc_check && _feature=yes
32 # fi
33 # if test "$_feature" = yes ; then
34 # def_feature='#define CONFIG_FEATURE 1'
35 # else
36 # def_feature='#undef CONFIG_FEATURE'
37 # fi
38 # echores "$_feature"
40 # Furthermore you need to add the variable _feature to the list of default
41 # settings and set it to one of yes/no/auto. Also add appropriate
42 # --enable-feature/--disable-feature command line options.
43 # The results of the check should be written to config.h and config.mak
44 # at the end of this script. The variable names used for this should be
45 # uniform, i.e. if the option is named 'feature':
47 # _feature : should have a value of yes/no/auto
48 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
49 # _ld_feature : '-L/path/dir -lfeature' GCC options
51 #############################################################################
53 # Prevent locale nonsense from breaking basic text processing utils
54 export LC_ALL=C
56 # Store the configure line that was used
57 _configuration="$*"
59 # Prefer these macros to full length text !
60 # These macros only return an error code - NO display is done
61 compile_check() {
62 echo >> "$TMPLOG"
63 cat "$1" >> "$TMPLOG"
64 echo >> "$TMPLOG"
65 echo "$_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
66 rm -f "$TMPEXE"
67 $_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
68 TMPRES="$?"
69 echo >> "$TMPLOG"
70 echo >> "$TMPLOG"
71 return "$TMPRES"
74 cc_check() {
75 compile_check $TMPC $@
78 cxx_check() {
79 compile_check $TMPCPP $@ -lstdc++
82 yasm_check() {
83 echo >> "$TMPLOG"
84 cat "$TMPS" >> "$TMPLOG"
85 echo >> "$TMPLOG"
86 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
87 rm -f "$TMPEXE"
88 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
89 TMPRES="$?"
90 echo >> "$TMPLOG"
91 echo >> "$TMPLOG"
92 return "$TMPRES"
95 tmp_run() {
96 "$TMPEXE" >> "$TMPLOG" 2>&1
99 # Display error message, flushes tempfile, exit
100 die () {
101 echo
102 echo "Error: $@" >&2
103 echo >&2
104 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
105 echo "Check \"$TMPLOG\" if you do not understand why it failed."
106 exit 1
109 # OS test booleans functions
110 issystem() {
111 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
113 aix() { issystem "AIX"; }
114 amigaos() { issystem "AmigaOS"; }
115 beos() { issystem "BEOS"; }
116 bsdos() { issystem "BSD/OS"; }
117 cygwin() { issystem "CYGWIN"; }
118 darwin() { issystem "Darwin"; }
119 dragonfly() { issystem "DragonFly"; }
120 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
121 gnu() { issystem "GNU"; }
122 hpux() { issystem "HP-UX"; }
123 irix() { issystem "IRIX"; }
124 linux() { issystem "Linux"; }
125 mingw32() { issystem "MINGW32"; }
126 morphos() { issystem "MorphOS"; }
127 netbsd() { issystem "NetBSD"; }
128 openbsd() { issystem "OpenBSD"; }
129 os2() { issystem "OS/2"; }
130 qnx() { issystem "QNX"; }
131 sunos() { issystem "SunOS"; }
132 win32() { cygwin || mingw32; }
134 # arch test boolean functions
135 # x86/x86pc is used by QNX
136 x86_32() {
137 case "$host_arch" in
138 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
139 *) return 1 ;;
140 esac
143 x86_64() {
144 case "$host_arch" in
145 x86_64|amd64) return 0 ;;
146 *) return 1 ;;
147 esac
150 x86() {
151 x86_32 || x86_64
154 ppc() {
155 case "$host_arch" in
156 ppc|ppc64|powerpc|powerpc64) return 0;;
157 *) return 1;;
158 esac
161 alpha() {
162 case "$host_arch" in
163 alpha*) return 0;;
164 *) return 1;;
165 esac
168 arm() {
169 case "$host_arch" in
170 arm*) return 0;;
171 *) return 1;;
172 esac
175 # Use this before starting a check
176 echocheck() {
177 echo "============ Checking for $@ ============" >> "$TMPLOG"
178 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
181 # Use this to echo the results of a check
182 echores() {
183 if test "$_res_comment" ; then
184 _res_comment="($_res_comment)"
186 echo "Result is: $@ $_res_comment" >> "$TMPLOG"
187 echo "##########################################" >> "$TMPLOG"
188 echo "" >> "$TMPLOG"
189 echo "$@ $_res_comment"
190 _res_comment=""
192 #############################################################################
194 # Check how echo works in this /bin/sh
195 case $(echo -n) in
196 -n) _echo_n= _echo_c='\c' ;; # SysV echo
197 *) _echo_n='-n ' _echo_c= ;; # BSD echo
198 esac
200 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")
201 man_lang_all=$(echo DOCS/man/??/mplayer.1 DOCS/man/??_??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g" -e "s:DOCS/man/\(.._..\)/mplayer.1:\1:g")
202 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
204 show_help(){
205 cat << EOF
206 Usage: $0 [OPTIONS]...
208 Configuration:
209 -h, --help display this help and exit
211 Installation directories:
212 --prefix=DIR prefix directory for installation [/usr/local]
213 --bindir=DIR directory for installing binaries [PREFIX/bin]
214 --datadir=DIR directory for installing machine independent
215 data files (skins, etc) [PREFIX/share/mplayer]
216 --mandir=DIR directory for installing man pages [PREFIX/share/man]
217 --confdir=DIR directory for installing configuration files
218 [PREFIX/etc/mplayer]
219 --localedir=DIR directory for locale tree [PREFIX/share/locale]
220 --libdir=DIR directory for object code libraries [PREFIX/lib]
221 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
222 --win32codecsdir=DIR directory for Windows DLLs [LIBDIR/codecs]
223 --xanimcodecsdir=DIR directory for XAnim codecs [LIBDIR/codecs]
224 --realcodecsdir=DIR directory for RealPlayer codecs [LIBDIR/codecs]
226 Optional features:
227 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
228 --disable-mplayer disable MPlayer compilation [enable]
229 --disable-largefiles disable support for files > 2GB [enable]
230 --enable-linux-devfs set default devices to devfs [disable]
231 --enable-termcap use termcap database for key codes [autodetect]
232 --enable-termios use termios database for key codes [autodetect]
233 --disable-iconv disable iconv for encoding conversion [autodetect]
234 --disable-langinfo do not use langinfo [autodetect]
235 --enable-lirc enable LIRC (remote control) support [autodetect]
236 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
237 --enable-joystick enable joystick support [disable]
238 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
239 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
240 --disable-vm disable X video mode extensions [autodetect]
241 --disable-xf86keysym disable support for multimedia keys [autodetect]
242 --enable-radio enable radio interface [disable]
243 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
244 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
245 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
246 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
247 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
248 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
249 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
250 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
251 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
252 --disable-network disable networking [enable]
253 --enable-winsock2_h enable winsock2_h [autodetect]
254 --enable-smb enable Samba (SMB) input [autodetect]
255 --enable-live enable LIVE555 Streaming Media [autodetect]
256 --enable-nemesi enable Nemesi Streaming Media [autodetect]
257 --disable-vcd disable VCD support [autodetect]
258 --disable-dvdnav disable libdvdnav [autodetect]
259 --disable-dvdread disable libdvdread [autodetect]
260 --disable-dvdread-internal disable internal libdvdread [autodetect]
261 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
262 --disable-cdparanoia disable cdparanoia [autodetect]
263 --disable-cddb disable cddb [autodetect]
264 --disable-bitmap-font disable bitmap font support [enable]
265 --disable-freetype disable FreeType 2 font rendering [autodetect]
266 --disable-fontconfig disable fontconfig font lookup [autodetect]
267 --disable-unrarexec disable using of UnRAR executable [enabled]
268 --enable-menu enable OSD menu (not DVD menu) [disabled]
269 --disable-sortsub disable subtitle sorting [enabled]
270 --enable-fribidi enable the FriBiDi libs [autodetect]
271 --disable-enca disable ENCA charset oracle library [autodetect]
272 --disable-maemo disable maemo specific features [autodetect]
273 --enable-macosx-finder enable Mac OS X Finder invocation parameter
274 parsing [disabled]
275 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
276 --disable-inet6 disable IPv6 support [autodetect]
277 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
278 --disable-ftp disable FTP support [enabled]
279 --disable-vstream disable TiVo vstream client support [autodetect]
280 --disable-pthreads disable Posix threads support [autodetect]
281 --disable-w32threads disable Win32 threads support [autodetect]
282 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
283 --enable-rpath enable runtime linker path for extra libs [disabled]
285 Codecs:
286 --enable-gif enable GIF support [autodetect]
287 --enable-png enable PNG input/output support [autodetect]
288 --enable-mng enable MNG input support [autodetect]
289 --enable-jpeg enable JPEG input/output support [autodetect]
290 --enable-libcdio enable libcdio support [autodetect]
291 --enable-liblzo enable liblzo support [autodetect]
292 --disable-win32dll disable Win32 DLL support [enabled]
293 --disable-qtx disable QuickTime codecs support [enabled]
294 --disable-xanim disable XAnim codecs support [enabled]
295 --disable-real disable RealPlayer codecs support [enabled]
296 --disable-xvid disable Xvid [autodetect]
297 --disable-x264 disable x264 [autodetect]
298 --disable-libnut disable libnut [autodetect]
299 --disable-libavutil disable libavutil [autodetect]
300 --disable-libavcodec disable libavcodec [autodetect]
301 --disable-libavformat disable libavformat [autodetect]
302 --disable-libpostproc disable libpostproc [autodetect]
303 --disable-libswscale disable libswscale [autodetect]
304 --disable-tremor-internal disable internal Tremor [enabled]
305 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
306 --enable-tremor enable external Tremor [autodetect]
307 --disable-libvorbis disable libvorbis support [autodetect]
308 --disable-speex disable Speex support [autodetect]
309 --enable-theora enable OggTheora libraries [autodetect]
310 --enable-faad enable external FAAD2 (AAC) [autodetect]
311 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
312 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
313 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
314 --disable-ladspa disable LADSPA plugin support [autodetect]
315 --disable-libbs2b disable libbs2b audio filter support [autodetect]
316 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
317 --disable-mad disable libmad (MPEG audio) support [autodetect]
318 --disable-mp3lame disable LAME MP3 encoding support [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 --enable-liba52-internal enable builtin liba52 [disabled]
326 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
327 --disable-musepack disable musepack support [autodetect]
329 Video output:
330 --disable-vidix disable VIDIX [for x86 *nix]
331 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
332 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
333 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
334 --disable-vidix-pcidb disable VIDIX PCI device name database
335 --enable-dhahelper enable VIDIX dhahelper support
336 --enable-svgalib_helper enable VIDIX svgalib_helper support
337 --enable-gl enable OpenGL video output [autodetect]
338 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
339 --enable-dga2 enable DGA 2 support [autodetect]
340 --enable-dga1 enable DGA 1 support [autodetect]
341 --enable-vesa enable VESA video output [autodetect]
342 --enable-svga enable SVGAlib video output [autodetect]
343 --enable-sdl enable SDL video output [autodetect]
344 --enable-kva enable KVA video output [autodetect]
345 --enable-aa enable AAlib video output [autodetect]
346 --enable-caca enable CACA video output [autodetect]
347 --enable-ggi enable GGI video output [autodetect]
348 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
349 --enable-direct3d enable Direct3D video output [autodetect]
350 --enable-directx enable DirectX video output [autodetect]
351 --enable-dxr2 enable DXR2 video output [autodetect]
352 --enable-dxr3 enable DXR3/H+ video output [autodetect]
353 --enable-ivtv enable IVTV TV-Out video output [autodetect]
354 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
355 --enable-dvb enable DVB video output [autodetect]
356 --enable-dvbhead enable DVB video output (HEAD version) [autodetect]
357 --enable-mga enable mga_vid video output [autodetect]
358 --enable-xmga enable mga_vid X11 video output [autodetect]
359 --enable-xv enable Xv video output [autodetect]
360 --enable-xvmc enable XvMC acceleration [disable]
361 --enable-vdpau enable VDPAU acceleration [autodetect]
362 --enable-vm enable XF86VidMode support [autodetect]
363 --enable-xinerama enable Xinerama support [autodetect]
364 --enable-x11 enable X11 video output [autodetect]
365 --enable-xshape enable XShape support [autodetect]
366 --disable-xss disable screensaver support via xss [autodetect]
367 --enable-fbdev enable FBDev video output [autodetect]
368 --enable-mlib enable mediaLib video output (Solaris) [disable]
369 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
370 --enable-tdfxfb enable tdfxfb video output [disable]
371 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
372 --enable-wii enable Nintendo Wii/GameCube video output [disable]
373 --enable-directfb enable DirectFB video output [autodetect]
374 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
375 --enable-bl enable Blinkenlights video output [disable]
376 --enable-tdfxvid enable tdfx_vid video output [disable]
377 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
378 --disable-tga disable Targa video output [enable]
379 --disable-pnm disable PNM video output [enable]
380 --disable-md5sum disable md5sum video output [enable]
381 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
382 --disable-corevideo disable CoreVideo video output [autodetect]
383 --disable-quartz disable Quartz video output [autodetect]
385 Audio output:
386 --disable-alsa disable ALSA audio output [autodetect]
387 --disable-ossaudio disable OSS audio output [autodetect]
388 --disable-arts disable aRts audio output [autodetect]
389 --disable-esd disable esd audio output [autodetect]
390 --disable-pulse disable Pulseaudio audio output [autodetect]
391 --disable-jack disable JACK audio output [autodetect]
392 --enable-openal enable OpenAL audio output [disable]
393 --disable-nas disable NAS audio output [autodetect]
394 --disable-sgiaudio disable SGI audio output [autodetect]
395 --disable-sunaudio disable Sun audio output [autodetect]
396 --disable-dart disable DART audio output [autodetect]
397 --disable-win32waveout disable Windows waveout audio output [autodetect]
398 --disable-coreaudio disable CoreAudio audio output [autodetect]
399 --disable-select disable using select() on the audio device [enable]
401 Language options:
402 --enable-translation enable support for translated output [disable]
403 --charset=charset convert the console messages to this character set
404 --language-doc=lang language to use for the documentation [en]
405 --language-man=lang language to use for the man pages [en]
406 --language-msg=lang language to use for the messages [en]
407 --language=lang default language to use [en]
408 Specific options override --language. You can pass a list of languages separated
409 by whitespace or commas instead of a single language. Nonexisting translations
410 will be dropped from each list. All documentation and man page translations
411 available in the list will be installed, for the messages the first available
412 translation will be used. The value "all" will activate all translations. The
413 LINGUAS environment variable is honored. In all cases the fallback is English.
414 Available values are: all $msg_lang_all
416 Miscellaneous options:
417 --enable-runtime-cpudetection enable runtime CPU detection [disable]
418 --enable-cross-compile enable cross-compilation [autodetect]
419 --cc=COMPILER C compiler to build MPlayer [gcc]
420 --host-cc=COMPILER C compiler for tools needed while building [gcc]
421 --as=ASSEMBLER assembler to build MPlayer [as]
422 --nm=NM nm tool to build MPlayer [nm]
423 --yasm=YASM Yasm assembler to build MPlayer [yasm]
424 --ar=AR librarian to build MPlayer [ar]
425 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
426 --windres=WINDRES windres to build MPlayer [windres]
427 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
428 --enable-static build a statically linked binary
429 --with-install=PATH path to a custom install program
431 Advanced options:
432 --enable-mmx enable MMX [autodetect]
433 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
434 --enable-3dnow enable 3DNow! [autodetect]
435 --enable-3dnowext enable extended 3DNow! [autodetect]
436 --enable-sse enable SSE [autodetect]
437 --enable-sse2 enable SSE2 [autodetect]
438 --enable-ssse3 enable SSSE3 [autodetect]
439 --enable-shm enable shm [autodetect]
440 --enable-altivec enable AltiVec (PowerPC) [autodetect]
441 --enable-armv5te enable DSP extensions (ARM) [autodetect]
442 --enable-armv6 enable ARMv6 (ARM) [autodetect]
443 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
444 --enable-armvfp enable ARM VFP (ARM) [autodetect]
445 --enable-neon enable NEON (ARM) [autodetect]
446 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
447 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
448 --enable-big-endian force byte order to big-endian [autodetect]
449 --enable-debug[=1-3] compile-in debugging information [disable]
450 --enable-profile compile-in profiling information [disable]
451 --disable-sighandler disable sighandler for crashes [enable]
452 --enable-crash-debug enable automatic gdb attach on crash [disable]
453 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
454 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
456 Use these options if autodetection fails:
457 --extra-cflags=FLAGS extra CFLAGS
458 --extra-ldflags=FLAGS extra LDFLAGS
459 --extra-libs=FLAGS extra linker flags
460 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
461 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
462 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
464 --with-freetype-config=PATH path to freetype-config
465 --with-fribidi-config=PATH path to fribidi-config
466 --with-glib-config=PATH path to glib*-config
467 --with-gtk-config=PATH path to gtk*-config
468 --with-sdl-config=PATH path to sdl*-config
469 --with-dvdnav-config=PATH path to dvdnav-config
470 --with-dvdread-config=PATH path to dvdread-config
472 This configure script is NOT autoconf-based, even though its output is similar.
473 It will try to autodetect all configuration options. If you --enable an option
474 it will be forcefully turned on, skipping autodetection. This can break
475 compilation, so you need to know what you are doing.
477 exit 0
478 } #show_help()
480 # GOTCHA: the variables below defines the default behavior for autodetection
481 # and have - unless stated otherwise - at least 2 states : yes no
482 # If autodetection is available then the third state is: auto
483 _mmx=auto
484 _3dnow=auto
485 _3dnowext=auto
486 _mmxext=auto
487 _sse=auto
488 _sse2=auto
489 _ssse3=auto
490 _cmov=auto
491 _fast_cmov=auto
492 _fast_clz=auto
493 _armv5te=auto
494 _armv6=auto
495 _armv6t2=auto
496 _armvfp=auto
497 neon=auto
498 _iwmmxt=auto
499 _mtrr=auto
500 _altivec=auto
501 _install=install
502 _ranlib=ranlib
503 _windres=windres
504 _cc=cc
505 _ar=ar
506 test "$CC" && _cc="$CC"
507 _as=auto
508 _nm=auto
509 _yasm=yasm
510 _runtime_cpudetection=no
511 _cross_compile=auto
512 _prefix="/usr/local"
513 _libavutil=auto
514 _libavcodec=auto
515 _libavformat=auto
516 _libpostproc=auto
517 _libswscale=auto
518 _libavcodec_internals=no
519 _libswscale_internals=no
520 _mencoder=yes
521 _mplayer=yes
522 _x11=auto
523 _xshape=auto
524 _xss=auto
525 _dga1=auto
526 _dga2=auto
527 _xv=auto
528 _xvmc=no #auto when complete
529 _vdpau=auto
530 _sdl=auto
531 _kva=auto
532 _direct3d=auto
533 _directx=auto
534 _win32waveout=auto
535 _nas=auto
536 _png=auto
537 _mng=auto
538 _jpeg=auto
539 _pnm=yes
540 _md5sum=yes
541 _yuv4mpeg=yes
542 _gif=auto
543 _gl=auto
544 matrixview=yes
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 _dart=auto
567 _openal=no
568 _libcdio=auto
569 _liblzo=auto
570 _mad=auto
571 _mp3lame=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=no
583 _libdca=auto
584 _libmpeg2=auto
585 _faad=auto
586 _faad_internal=auto
587 _faad_fixed=no
588 _faac=auto
589 _ladspa=auto
590 _libbs2b=auto
591 _xmms=no
592 _vcd=auto
593 _dvdnav=auto
594 _dvdnavconfig=dvdnav-config
595 _dvdreadconfig=dvdread-config
596 _dvdread=auto
597 _dvdread_internal=auto
598 _libdvdcss_internal=auto
599 _xanim=auto
600 _real=auto
601 _live=auto
602 _nemesi=auto
603 _native_rtsp=yes
604 _xinerama=auto
605 _mga=auto
606 _xmga=auto
607 _vm=auto
608 _xf86keysym=auto
609 _mlib=no #broken, thus disabled
610 _sgiaudio=auto
611 _sunaudio=auto
612 _alsa=auto
613 _fastmemcpy=yes
614 _unrar_exec=auto
615 _win32dll=auto
616 _select=yes
617 _radio=no
618 _radio_capture=no
619 _radio_v4l=auto
620 _radio_v4l2=auto
621 _radio_bsdbt848=auto
622 _tv=yes
623 _tv_v4l1=auto
624 _tv_v4l2=auto
625 _tv_bsdbt848=auto
626 _tv_dshow=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 _x264=auto
638 _libnut=auto
639 _lirc=auto
640 _lircc=auto
641 _apple_remote=auto
642 _apple_ir=auto
643 _gui=no
644 _gtk1=no
645 _termcap=auto
646 _termios=auto
647 _3dfx=no
648 _s3fb=no
649 _wii=no
650 _tdfxfb=no
651 _tdfxvid=no
652 _xvr100=auto
653 _tga=yes
654 _directfb=auto
655 _zr=auto
656 _bl=no
657 _largefiles=yes
658 #language=en
659 _shm=auto
660 _linux_devfs=no
661 _translation=no
662 _charset="UTF-8"
663 _dynamic_plugins=no
664 _crash_debug=no
665 _sighandler=yes
666 _libdv=auto
667 _cdparanoia=auto
668 _cddb=auto
669 _big_endian=auto
670 _bitmap_font=yes
671 _freetype=auto
672 _fontconfig=auto
673 _menu=no
674 _qtx=auto
675 _maemo=auto
676 _coreaudio=auto
677 _corevideo=auto
678 _quartz=auto
679 quicktime=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 _priority=no
699 def_dos_paths="#define HAVE_DOS_PATHS 0"
700 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
701 def_priority="#undef CONFIG_PRIORITY"
702 def_pthread_cache="#undef PTHREAD_CACHE"
703 _need_shmem=yes
704 for ac_option do
705 case "$ac_option" in
706 --help|-help|-h)
707 show_help
709 --prefix=*)
710 _prefix=$(echo $ac_option | cut -d '=' -f 2)
712 --bindir=*)
713 _bindir=$(echo $ac_option | cut -d '=' -f 2)
715 --datadir=*)
716 _datadir=$(echo $ac_option | cut -d '=' -f 2)
718 --mandir=*)
719 _mandir=$(echo $ac_option | cut -d '=' -f 2)
721 --confdir=*)
722 _confdir=$(echo $ac_option | cut -d '=' -f 2)
724 --libdir=*)
725 _libdir=$(echo $ac_option | cut -d '=' -f 2)
727 --codecsdir=*)
728 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
730 --win32codecsdir=*)
731 _win32codecsdir=$(echo $ac_option | cut -d '=' -f 2)
733 --xanimcodecsdir=*)
734 _xanimcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
736 --realcodecsdir=*)
737 _realcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
739 --localedir=*)
740 _localedir=$(echo $ac_option | cut -d '=' -f 2)
743 --with-install=*)
744 _install=$(echo $ac_option | cut -d '=' -f 2 )
746 --with-xvmclib=*)
747 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
750 --with-sdl-config=*)
751 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
753 --with-freetype-config=*)
754 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
756 --with-fribidi-config=*)
757 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
759 --with-gtk-config=*)
760 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
762 --with-glib-config=*)
763 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
765 --with-dvdnav-config=*)
766 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
768 --with-dvdread-config=*)
769 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
772 --extra-cflags=*)
773 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
775 --extra-ldflags=*)
776 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
778 --extra-libs=*)
779 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
781 --extra-libs-mplayer=*)
782 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
784 --extra-libs-mencoder=*)
785 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
788 --target=*)
789 _target=$(echo $ac_option | cut -d '=' -f 2)
791 --cc=*)
792 _cc=$(echo $ac_option | cut -d '=' -f 2)
794 --host-cc=*)
795 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
797 --as=*)
798 _as=$(echo $ac_option | cut -d '=' -f 2)
800 --nm=*)
801 _nm=$(echo $ac_option | cut -d '=' -f 2)
803 --yasm=*)
804 _yasm=$(echo $ac_option | cut -d '=' -f 2)
806 --ar=*)
807 _ar=$(echo $ac_option | cut -d '=' -f 2)
809 --ranlib=*)
810 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
812 --windres=*)
813 _windres=$(echo $ac_option | cut -d '=' -f 2)
815 --charset=*)
816 _charset=$(echo $ac_option | cut -d '=' -f 2)
818 --language-doc=*)
819 language_doc=$(echo $ac_option | cut -d '=' -f 2)
821 --language-man=*)
822 language_man=$(echo $ac_option | cut -d '=' -f 2)
824 --language-msg=*)
825 language_msg=$(echo $ac_option | cut -d '=' -f 2)
827 --language=*)
828 language=$(echo $ac_option | cut -d '=' -f 2)
831 --enable-static)
832 _ld_static='-static'
834 --disable-static)
835 _ld_static=''
837 --enable-profile)
838 _profile='-p'
840 --disable-profile)
841 _profile=
843 --enable-debug)
844 _debug='-g'
846 --enable-debug=*)
847 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
849 --disable-debug)
850 _debug=
852 --enable-translation) _translation=yes ;;
853 --disable-translation) _translation=no ;;
854 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
855 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
856 --enable-cross-compile) _cross_compile=yes ;;
857 --disable-cross-compile) _cross_compile=no ;;
858 --enable-mencoder) _mencoder=yes ;;
859 --disable-mencoder) _mencoder=no ;;
860 --enable-mplayer) _mplayer=yes ;;
861 --disable-mplayer) _mplayer=no ;;
862 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
863 --disable-dynamic-plugins) _dynamic_plugins=no ;;
864 --enable-x11) _x11=yes ;;
865 --disable-x11) _x11=no ;;
866 --enable-xshape) _xshape=yes ;;
867 --disable-xshape) _xshape=no ;;
868 --enable-xss) _xss=yes ;;
869 --disable-xss) _xss=no ;;
870 --enable-xv) _xv=yes ;;
871 --disable-xv) _xv=no ;;
872 --enable-xvmc) _xvmc=yes ;;
873 --disable-xvmc) _xvmc=no ;;
874 --enable-vdpau) _vdpau=yes ;;
875 --disable-vdpau) _vdpau=no ;;
876 --enable-sdl) _sdl=yes ;;
877 --disable-sdl) _sdl=no ;;
878 --enable-kva) _kva=yes ;;
879 --disable-kva) _kva=no ;;
880 --enable-direct3d) _direct3d=yes ;;
881 --disable-direct3d) _direct3d=no ;;
882 --enable-directx) _directx=yes ;;
883 --disable-directx) _directx=no ;;
884 --enable-win32waveout) _win32waveout=yes ;;
885 --disable-win32waveout) _win32waveout=no ;;
886 --enable-nas) _nas=yes ;;
887 --disable-nas) _nas=no ;;
888 --enable-png) _png=yes ;;
889 --disable-png) _png=no ;;
890 --enable-mng) _mng=yes ;;
891 --disable-mng) _mng=no ;;
892 --enable-jpeg) _jpeg=yes ;;
893 --disable-jpeg) _jpeg=no ;;
894 --enable-pnm) _pnm=yes ;;
895 --disable-pnm) _pnm=no ;;
896 --enable-md5sum) _md5sum=yes ;;
897 --disable-md5sum) _md5sum=no ;;
898 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
899 --disable-yuv4mpeg) _yuv4mpeg=no ;;
900 --enable-gif) _gif=yes ;;
901 --disable-gif) _gif=no ;;
902 --enable-gl) _gl=yes ;;
903 --disable-gl) _gl=no ;;
904 --enable-matrixview) matrixview=yes ;;
905 --disable-matrixview) matrixview=no ;;
906 --enable-ggi) _ggi=yes ;;
907 --disable-ggi) _ggi=no ;;
908 --enable-ggiwmh) _ggiwmh=yes ;;
909 --disable-ggiwmh) _ggiwmh=no ;;
910 --enable-aa) _aa=yes ;;
911 --disable-aa) _aa=no ;;
912 --enable-caca) _caca=yes ;;
913 --disable-caca) _caca=no ;;
914 --enable-svga) _svga=yes ;;
915 --disable-svga) _svga=no ;;
916 --enable-vesa) _vesa=yes ;;
917 --disable-vesa) _vesa=no ;;
918 --enable-fbdev) _fbdev=yes ;;
919 --disable-fbdev) _fbdev=no ;;
920 --enable-dvb) _dvb=yes ;;
921 --disable-dvb) _dvb=no ;;
922 --enable-dvbhead) _dvbhead=yes ;;
923 --disable-dvbhead) _dvbhead=no ;;
924 --enable-dxr2) _dxr2=yes ;;
925 --disable-dxr2) _dxr2=no ;;
926 --enable-dxr3) _dxr3=yes ;;
927 --disable-dxr3) _dxr3=no ;;
928 --enable-ivtv) _ivtv=yes ;;
929 --disable-ivtv) _ivtv=no ;;
930 --enable-v4l2) _v4l2=yes ;;
931 --disable-v4l2) _v4l2=no ;;
932 --enable-iconv) _iconv=yes ;;
933 --disable-iconv) _iconv=no ;;
934 --enable-langinfo) _langinfo=yes ;;
935 --disable-langinfo) _langinfo=no ;;
936 --enable-rtc) _rtc=yes ;;
937 --disable-rtc) _rtc=no ;;
938 --enable-libdv) _libdv=yes ;;
939 --disable-libdv) _libdv=no ;;
940 --enable-ossaudio) _ossaudio=yes ;;
941 --disable-ossaudio) _ossaudio=no ;;
942 --enable-arts) _arts=yes ;;
943 --disable-arts) _arts=no ;;
944 --enable-esd) _esd=yes ;;
945 --disable-esd) _esd=no ;;
946 --enable-pulse) _pulse=yes ;;
947 --disable-pulse) _pulse=no ;;
948 --enable-jack) _jack=yes ;;
949 --disable-jack) _jack=no ;;
950 --enable-openal) _openal=yes ;;
951 --disable-openal) _openal=no ;;
952 --enable-dart) _dart=yes ;;
953 --disable-dart) _dart=no ;;
954 --enable-mad) _mad=yes ;;
955 --disable-mad) _mad=no ;;
956 --enable-mp3lame) _mp3lame=yes ;;
957 --disable-mp3lame) _mp3lame=no ;;
958 --enable-toolame) _toolame=yes ;;
959 --disable-toolame) _toolame=no ;;
960 --enable-twolame) _twolame=yes ;;
961 --disable-twolame) _twolame=no ;;
962 --enable-libcdio) _libcdio=yes ;;
963 --disable-libcdio) _libcdio=no ;;
964 --enable-liblzo) _liblzo=yes ;;
965 --disable-liblzo) _liblzo=no ;;
966 --enable-libvorbis) _libvorbis=yes ;;
967 --disable-libvorbis) _libvorbis=no ;;
968 --enable-speex) _speex=yes ;;
969 --disable-speex) _speex=no ;;
970 --enable-tremor) _tremor=yes ;;
971 --disable-tremor) _tremor=no ;;
972 --enable-tremor-internal) _tremor_internal=yes ;;
973 --disable-tremor-internal) _tremor_internal=no ;;
974 --enable-tremor-low) _tremor_low=yes ;;
975 --disable-tremor-low) _tremor_low=no ;;
976 --enable-theora) _theora=yes ;;
977 --disable-theora) _theora=no ;;
978 --enable-mp3lib) _mp3lib=yes ;;
979 --disable-mp3lib) _mp3lib=no ;;
980 --enable-liba52-internal) _liba52_internal=yes ;;
981 --disable-liba52-internal) _liba52_internal=no ;;
982 --enable-liba52) _liba52=yes ;;
983 --disable-liba52) _liba52=no ;;
984 --enable-libdca) _libdca=yes ;;
985 --disable-libdca) _libdca=no ;;
986 --enable-libmpeg2) _libmpeg2=yes ;;
987 --disable-libmpeg2) _libmpeg2=no ;;
988 --enable-musepack) _musepack=yes ;;
989 --disable-musepack) _musepack=no ;;
990 --enable-faad) _faad=yes ;;
991 --disable-faad) _faad=no ;;
992 --enable-faad-internal) _faad_internal=yes ;;
993 --disable-faad-internal) _faad_internal=no ;;
994 --enable-faad-fixed) _faad_fixed=yes ;;
995 --disable-faad-fixed) _faad_fixed=no ;;
996 --enable-faac) _faac=yes ;;
997 --disable-faac) _faac=no ;;
998 --enable-ladspa) _ladspa=yes ;;
999 --disable-ladspa) _ladspa=no ;;
1000 --enable-libbs2b) _libbs2b=yes ;;
1001 --disable-libbs2b) _libbs2b=no ;;
1002 --enable-xmms) _xmms=yes ;;
1003 --disable-xmms) _xmms=no ;;
1004 --enable-vcd) _vcd=yes ;;
1005 --disable-vcd) _vcd=no ;;
1006 --enable-dvdread) _dvdread=yes ;;
1007 --disable-dvdread) _dvdread=no ;;
1008 --enable-dvdread-internal) _dvdread_internal=yes ;;
1009 --disable-dvdread-internal) _dvdread_internal=no ;;
1010 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1011 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1012 --enable-dvdnav) _dvdnav=yes ;;
1013 --disable-dvdnav) _dvdnav=no ;;
1014 --enable-xanim) _xanim=yes ;;
1015 --disable-xanim) _xanim=no ;;
1016 --enable-real) _real=yes ;;
1017 --disable-real) _real=no ;;
1018 --enable-live) _live=yes ;;
1019 --disable-live) _live=no ;;
1020 --enable-nemesi) _nemesi=yes ;;
1021 --disable-nemesi) _nemesi=no ;;
1022 --enable-xinerama) _xinerama=yes ;;
1023 --disable-xinerama) _xinerama=no ;;
1024 --enable-mga) _mga=yes ;;
1025 --disable-mga) _mga=no ;;
1026 --enable-xmga) _xmga=yes ;;
1027 --disable-xmga) _xmga=no ;;
1028 --enable-vm) _vm=yes ;;
1029 --disable-vm) _vm=no ;;
1030 --enable-xf86keysym) _xf86keysym=yes ;;
1031 --disable-xf86keysym) _xf86keysym=no ;;
1032 --enable-mlib) _mlib=yes ;;
1033 --disable-mlib) _mlib=no ;;
1034 --enable-sunaudio) _sunaudio=yes ;;
1035 --disable-sunaudio) _sunaudio=no ;;
1036 --enable-sgiaudio) _sgiaudio=yes ;;
1037 --disable-sgiaudio) _sgiaudio=no ;;
1038 --enable-alsa) _alsa=yes ;;
1039 --disable-alsa) _alsa=no ;;
1040 --enable-tv) _tv=yes ;;
1041 --disable-tv) _tv=no ;;
1042 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1043 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1044 --enable-tv-v4l1) _tv_v4l1=yes ;;
1045 --disable-tv-v4l1) _tv_v4l1=no ;;
1046 --enable-tv-v4l2) _tv_v4l2=yes ;;
1047 --disable-tv-v4l2) _tv_v4l2=no ;;
1048 --enable-tv-dshow) _tv_dshow=yes ;;
1049 --disable-tv-dshow) _tv_dshow=no ;;
1050 --enable-radio) _radio=yes ;;
1051 --enable-radio-capture) _radio_capture=yes ;;
1052 --disable-radio-capture) _radio_capture=no ;;
1053 --disable-radio) _radio=no ;;
1054 --enable-radio-v4l) _radio_v4l=yes ;;
1055 --disable-radio-v4l) _radio_v4l=no ;;
1056 --enable-radio-v4l2) _radio_v4l2=yes ;;
1057 --disable-radio-v4l2) _radio_v4l2=no ;;
1058 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1059 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1060 --enable-pvr) _pvr=yes ;;
1061 --disable-pvr) _pvr=no ;;
1062 --enable-fastmemcpy) _fastmemcpy=yes ;;
1063 --disable-fastmemcpy) _fastmemcpy=no ;;
1064 --enable-network) _network=yes ;;
1065 --disable-network) _network=no ;;
1066 --enable-winsock2_h) _winsock2_h=yes ;;
1067 --disable-winsock2_h) _winsock2_h=no ;;
1068 --enable-smb) _smb=yes ;;
1069 --disable-smb) _smb=no ;;
1070 --enable-vidix) _vidix=yes ;;
1071 --disable-vidix) _vidix=no ;;
1072 --with-vidix-drivers=*)
1073 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1075 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1076 --enable-dhahelper) _dhahelper=yes ;;
1077 --disable-dhahelper) _dhahelper=no ;;
1078 --enable-svgalib_helper) _svgalib_helper=yes ;;
1079 --disable-svgalib_helper) _svgalib_helper=no ;;
1080 --enable-joystick) _joystick=yes ;;
1081 --disable-joystick) _joystick=no ;;
1082 --enable-xvid) _xvid=yes ;;
1083 --disable-xvid) _xvid=no ;;
1084 --enable-x264) _x264=yes ;;
1085 --disable-x264) _x264=no ;;
1086 --enable-libnut) _libnut=yes ;;
1087 --disable-libnut) _libnut=no ;;
1088 --enable-libavutil) _libavutil=yes ;;
1089 --disable-libavutil) _libavutil=no ;;
1090 --enable-libavcodec) _libavcodec=yes ;;
1091 --disable-libavcodec) _libavcodec=no ;;
1092 --enable-libavformat) _libavformat=yes ;;
1093 --disable-libavformat) _libavformat=no ;;
1094 --enable-libpostproc) _libpostproc=yes ;;
1095 --disable-libpostproc) _libpostproc=no ;;
1096 --enable-libswscale) _libswscale=yes ;;
1097 --disable-libswscale) _libswscale=no ;;
1098 --ffmpeg-source-dir=*)
1099 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1101 --enable-lirc) _lirc=yes ;;
1102 --disable-lirc) _lirc=no ;;
1103 --enable-lircc) _lircc=yes ;;
1104 --disable-lircc) _lircc=no ;;
1105 --enable-apple-remote) _apple_remote=yes ;;
1106 --disable-apple-remote) _apple_remote=no ;;
1107 --enable-apple-ir) _apple_ir=yes ;;
1108 --disable-apple-ir) _apple_ir=no ;;
1109 --enable-gui) _gui=yes ;;
1110 --disable-gui) _gui=no ;;
1111 --enable-gtk1) _gtk1=yes ;;
1112 --disable-gtk1) _gtk1=no ;;
1113 --enable-termcap) _termcap=yes ;;
1114 --disable-termcap) _termcap=no ;;
1115 --enable-termios) _termios=yes ;;
1116 --disable-termios) _termios=no ;;
1117 --enable-3dfx) _3dfx=yes ;;
1118 --disable-3dfx) _3dfx=no ;;
1119 --enable-s3fb) _s3fb=yes ;;
1120 --disable-s3fb) _s3fb=no ;;
1121 --enable-wii) _wii=yes ;;
1122 --disable-wii) _wii=no ;;
1123 --enable-tdfxfb) _tdfxfb=yes ;;
1124 --disable-tdfxfb) _tdfxfb=no ;;
1125 --disable-tdfxvid) _tdfxvid=no ;;
1126 --enable-tdfxvid) _tdfxvid=yes ;;
1127 --disable-xvr100) _xvr100=no ;;
1128 --enable-xvr100) _xvr100=yes ;;
1129 --disable-tga) _tga=no ;;
1130 --enable-tga) _tga=yes ;;
1131 --enable-directfb) _directfb=yes ;;
1132 --disable-directfb) _directfb=no ;;
1133 --enable-zr) _zr=yes ;;
1134 --disable-zr) _zr=no ;;
1135 --enable-bl) _bl=yes ;;
1136 --disable-bl) _bl=no ;;
1137 --enable-mtrr) _mtrr=yes ;;
1138 --disable-mtrr) _mtrr=no ;;
1139 --enable-largefiles) _largefiles=yes ;;
1140 --disable-largefiles) _largefiles=no ;;
1141 --enable-shm) _shm=yes ;;
1142 --disable-shm) _shm=no ;;
1143 --enable-select) _select=yes ;;
1144 --disable-select) _select=no ;;
1145 --enable-linux-devfs) _linux_devfs=yes ;;
1146 --disable-linux-devfs) _linux_devfs=no ;;
1147 --enable-cdparanoia) _cdparanoia=yes ;;
1148 --disable-cdparanoia) _cdparanoia=no ;;
1149 --enable-cddb) _cddb=yes ;;
1150 --disable-cddb) _cddb=no ;;
1151 --enable-big-endian) _big_endian=yes ;;
1152 --disable-big-endian) _big_endian=no ;;
1153 --enable-bitmap-font) _bitmap_font=yes ;;
1154 --disable-bitmap-font) _bitmap_font=no ;;
1155 --enable-freetype) _freetype=yes ;;
1156 --disable-freetype) _freetype=no ;;
1157 --enable-fontconfig) _fontconfig=yes ;;
1158 --disable-fontconfig) _fontconfig=no ;;
1159 --enable-unrarexec) _unrar_exec=yes ;;
1160 --disable-unrarexec) _unrar_exec=no ;;
1161 --enable-ftp) _ftp=yes ;;
1162 --disable-ftp) _ftp=no ;;
1163 --enable-vstream) _vstream=yes ;;
1164 --disable-vstream) _vstream=no ;;
1165 --enable-pthreads) _pthreads=yes ;;
1166 --disable-pthreads) _pthreads=no ;;
1167 --enable-w32threads) _w32threads=yes ;;
1168 --disable-w32threads) _w32threads=no ;;
1169 --enable-ass) _ass=yes ;;
1170 --disable-ass) _ass=no ;;
1171 --enable-rpath) _rpath=yes ;;
1172 --disable-rpath) _rpath=no ;;
1174 --enable-fribidi) _fribidi=yes ;;
1175 --disable-fribidi) _fribidi=no ;;
1177 --enable-enca) _enca=yes ;;
1178 --disable-enca) _enca=no ;;
1180 --enable-inet6) _inet6=yes ;;
1181 --disable-inet6) _inet6=no ;;
1183 --enable-gethostbyname2) _gethostbyname2=yes ;;
1184 --disable-gethostbyname2) _gethostbyname2=no ;;
1186 --enable-dga1) _dga1=yes ;;
1187 --disable-dga1) _dga1=no ;;
1188 --enable-dga2) _dga2=yes ;;
1189 --disable-dga2) _dga2=no ;;
1191 --enable-menu) _menu=yes ;;
1192 --disable-menu) _menu=no ;;
1194 --enable-qtx) _qtx=yes ;;
1195 --disable-qtx) _qtx=no ;;
1197 --enable-coreaudio) _coreaudio=yes ;;
1198 --disable-coreaudio) _coreaudio=no ;;
1199 --enable-corevideo) _corevideo=yes ;;
1200 --disable-corevideo) _corevideo=no ;;
1201 --enable-quartz) _quartz=yes ;;
1202 --disable-quartz) _quartz=no ;;
1203 --enable-macosx-finder) _macosx_finder=yes ;;
1204 --disable-macosx-finder) _macosx_finder=no ;;
1205 --enable-macosx-bundle) _macosx_bundle=yes ;;
1206 --disable-macosx-bundle) _macosx_bundle=no ;;
1208 --enable-maemo) _maemo=yes ;;
1209 --disable-maemo) _maemo=no ;;
1211 --enable-sortsub) _sortsub=yes ;;
1212 --disable-sortsub) _sortsub=no ;;
1214 --enable-crash-debug) _crash_debug=yes ;;
1215 --disable-crash-debug) _crash_debug=no ;;
1216 --enable-sighandler) _sighandler=yes ;;
1217 --disable-sighandler) _sighandler=no ;;
1218 --enable-win32dll) _win32dll=yes ;;
1219 --disable-win32dll) _win32dll=no ;;
1221 --enable-sse) _sse=yes ;;
1222 --disable-sse) _sse=no ;;
1223 --enable-sse2) _sse2=yes ;;
1224 --disable-sse2) _sse2=no ;;
1225 --enable-ssse3) _ssse3=yes ;;
1226 --disable-ssse3) _ssse3=no ;;
1227 --enable-mmxext) _mmxext=yes ;;
1228 --disable-mmxext) _mmxext=no ;;
1229 --enable-3dnow) _3dnow=yes ;;
1230 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1231 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1232 --disable-3dnowext) _3dnowext=no ;;
1233 --enable-cmov) _cmov=yes ;;
1234 --disable-cmov) _cmov=no ;;
1235 --enable-fast-cmov) _fast_cmov=yes ;;
1236 --disable-fast-cmov) _fast_cmov=no ;;
1237 --enable-fast-clz) _fast_clz=yes ;;
1238 --disable-fast-clz) _fast_clz=no ;;
1239 --enable-altivec) _altivec=yes ;;
1240 --disable-altivec) _altivec=no ;;
1241 --enable-armv5te) _armv5te=yes ;;
1242 --disable-armv5te) _armv5te=no ;;
1243 --enable-armv6) _armv6=yes ;;
1244 --disable-armv6) _armv6=no ;;
1245 --enable-armv6t2) _armv6t2=yes ;;
1246 --disable-armv6t2) _armv6t2=no ;;
1247 --enable-armvfp) _armvfp=yes ;;
1248 --disable-armvfp) _armvfp=no ;;
1249 --enable-neon) neon=yes ;;
1250 --disable-neon) neon=no ;;
1251 --enable-iwmmxt) _iwmmxt=yes ;;
1252 --disable-iwmmxt) _iwmmxt=no ;;
1253 --enable-mmx) _mmx=yes ;;
1254 --disable-mmx) # 3Dnow! and MMX2 require MMX
1255 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1258 echo "Unknown parameter: $ac_option"
1259 exit 1
1262 esac
1263 done
1265 if test "$_gui" = yes ; then
1266 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1267 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1270 # Atmos: moved this here, to be correct, if --prefix is specified
1271 test -z "$_bindir" && _bindir="$_prefix/bin"
1272 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1273 test -z "$_mandir" && _mandir="$_prefix/share/man"
1274 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1275 test -z "$_libdir" && _libdir="$_prefix/lib"
1276 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1278 # Determine our OS name and CPU architecture
1279 if test -z "$_target" ; then
1280 # OS name
1281 system_name=$(uname -s 2>&1)
1282 case "$system_name" in
1283 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1285 Haiku)
1286 system_name=BeOS
1288 IRIX*)
1289 system_name=IRIX
1291 GNU/kFreeBSD)
1292 system_name=FreeBSD
1294 HP-UX*)
1295 system_name=HP-UX
1297 [cC][yY][gG][wW][iI][nN]*)
1298 system_name=CYGWIN
1300 MINGW32*)
1301 system_name=MINGW32
1303 OS/2*)
1304 system_name=OS/2
1307 system_name="$system_name-UNKNOWN"
1309 esac
1312 # host's CPU/instruction set
1313 host_arch=$(uname -p 2>&1)
1314 case "$host_arch" in
1315 i386|sparc|ppc|alpha|arm|mips|vax)
1317 powerpc) # Darwin returns 'powerpc'
1318 host_arch=ppc
1320 *) # uname -p on Linux returns 'unknown' for the processor type,
1321 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1323 # Maybe uname -m (machine hardware name) returns something we
1324 # recognize.
1326 # x86/x86pc is used by QNX
1327 case "$(uname -m 2>&1)" in
1328 x86_64|amd64|i[3-9]86*|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686|BePC) host_arch=i386 ;;
1329 ia64) host_arch=ia64 ;;
1330 macppc|ppc) host_arch=ppc ;;
1331 ppc64) host_arch=ppc64 ;;
1332 alpha) host_arch=alpha ;;
1333 sparc) host_arch=sparc ;;
1334 sparc64) host_arch=sparc64 ;;
1335 parisc*|hppa*|9000*) host_arch=hppa ;;
1336 arm*|zaurus|cats) host_arch=arm ;;
1337 sh3|sh4|sh4a) host_arch=sh ;;
1338 s390) host_arch=s390 ;;
1339 s390x) host_arch=s390x ;;
1340 *mips*) host_arch=mips ;;
1341 vax) host_arch=vax ;;
1342 xtensa*) host_arch=xtensa ;;
1343 *) host_arch=UNKNOWN ;;
1344 esac
1346 esac
1347 else # if test -z "$_target"
1348 system_name=$(echo $_target | cut -d '-' -f 2)
1349 case "$(echo $system_name | tr A-Z a-z)" in
1350 linux) system_name=Linux ;;
1351 freebsd) system_name=FreeBSD ;;
1352 gnu/kfreebsd) system_name=FreeBSD ;;
1353 netbsd) system_name=NetBSD ;;
1354 bsd/os) system_name=BSD/OS ;;
1355 openbsd) system_name=OpenBSD ;;
1356 dragonfly) system_name=DragonFly ;;
1357 sunos) system_name=SunOS ;;
1358 qnx) system_name=QNX ;;
1359 morphos) system_name=MorphOS ;;
1360 amigaos) system_name=AmigaOS ;;
1361 mingw32*) system_name=MINGW32 ;;
1362 esac
1363 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1364 host_arch=$(echo $_target | cut -d '-' -f 1)
1365 if test $(echo $host_arch) != "x86_64" ; then
1366 host_arch=$(echo $host_arch | tr '_' '-')
1370 extra_cflags="-I. $extra_cflags"
1371 _timer=timer-linux.c
1372 _getch=getch2.c
1373 if freebsd ; then
1374 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1375 extra_cflags="$extra_cflags -I/usr/local/include"
1378 if netbsd || dragonfly ; then
1379 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1380 extra_cflags="$extra_cflags -I/usr/pkg/include"
1383 if darwin; then
1384 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1385 _timer=timer-darwin.c
1388 if aix ; then
1389 extra_ldflags="$extra_ldflags -lC"
1392 if irix ; then
1393 _ranlib='ar -r'
1394 elif linux ; then
1395 _ranlib='true'
1398 if win32 ; then
1399 _exesuf=".exe"
1400 extra_cflags="$extra_cflags -fno-common"
1401 # -lwinmm is always needed for osdep/timer-win2.c
1402 extra_ldflags="$extra_ldflags -lwinmm"
1403 _pe_executable=yes
1404 _timer=timer-win2.c
1405 _priority=yes
1406 def_dos_paths="#define HAVE_DOS_PATHS 1"
1407 def_priority="#define CONFIG_PRIORITY 1"
1410 if mingw32 ; then
1411 _getch=getch2-win.c
1412 _need_shmem=no
1415 if amigaos ; then
1416 _select=no
1417 _sighandler=no
1418 _stream_cache=no
1419 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1420 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1423 if qnx ; then
1424 extra_ldflags="$extra_ldflags -lph"
1427 if os2 ; then
1428 _exesuf=".exe"
1429 _getch=getch2-os2.c
1430 _need_shmem=no
1431 _priority=yes
1432 def_dos_paths="#define HAVE_DOS_PATHS 1"
1433 def_priority="#define CONFIG_PRIORITY 1"
1436 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1437 test "$I" && break
1438 done
1441 TMPLOG="configure.log"
1442 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1443 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1444 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1445 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1446 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1448 rm -f "$TMPLOG"
1449 echo configuration: $_configuration > "$TMPLOG"
1450 echo >> "$TMPLOG"
1453 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1454 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1458 # Checking CC version...
1459 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1460 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1461 echocheck "$_cc version"
1462 cc_vendor=intel
1463 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1464 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1465 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1466 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1467 # TODO verify older icc/ecc compatibility
1468 case $cc_version in
1470 cc_version="v. ?.??, bad"
1471 cc_fail=yes
1473 10.1|11.0|11.1)
1474 cc_version="$cc_version, ok"
1477 cc_version="$cc_version, bad"
1478 cc_fail=yes
1480 esac
1481 echores "$cc_version"
1482 else
1483 for _cc in "$_cc" gcc cc ; do
1484 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1485 if test "$cc_name_tmp" = "gcc"; then
1486 cc_name=$cc_name_tmp
1487 echocheck "$_cc version"
1488 cc_vendor=gnu
1489 cc_version=$($_cc -dumpversion 2>&1)
1490 case $cc_version in
1491 2.96*)
1492 cc_fail=yes
1495 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1496 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1497 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1499 esac
1500 echores "$cc_version"
1501 break
1503 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1504 if test "$cc_name_tmp" = "Sun C"; then
1505 echocheck "$_cc version"
1506 cc_vendor=sun
1507 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1508 _res_comment="experimental support only"
1509 echores "Sun C $cc_version"
1510 break
1512 done
1513 fi # icc
1514 test "$cc_fail" = yes && die "unsupported compiler version"
1516 if test -z "$_target" && x86 ; then
1517 cat > $TMPC << EOF
1518 int main(void) {
1519 int test[(int)sizeof(char *)-7];
1520 return 0;
1523 cc_check && host_arch=x86_64 || host_arch=i386
1526 echo "Detected operating system: $system_name"
1527 echo "Detected host architecture: $host_arch"
1529 echocheck "host cc"
1530 test "$_host_cc" || _host_cc=$_cc
1531 echores $_host_cc
1533 echocheck "cross compilation"
1534 if test $_cross_compile = auto ; then
1535 cat > $TMPC << EOF
1536 int main(void) { return 0; }
1538 _cross_compile=yes
1539 cc_check && "$TMPEXE" && _cross_compile=no
1541 echores $_cross_compile
1543 if test $_cross_compile = yes; then
1544 tmp_run() {
1545 return 0
1549 # ---
1551 # now that we know what compiler should be used for compilation, try to find
1552 # out which assembler is used by the $_cc compiler
1553 if test "$_as" = auto ; then
1554 _as=$($_cc -print-prog-name=as)
1555 test -z "$_as" && _as=as
1558 if test "$_nm" = auto ; then
1559 _nm=$($_cc -print-prog-name=nm)
1560 test -z "$_nm" && _nm=nm
1563 # XXX: this should be ok..
1564 _cpuinfo="echo"
1566 if test "$_runtime_cpudetection" = no ; then
1568 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1569 # FIXME: Remove the cygwin check once AMD CPUs are supported
1570 if test -r /proc/cpuinfo && ! cygwin; then
1571 # Linux with /proc mounted, extract CPU information from it
1572 _cpuinfo="cat /proc/cpuinfo"
1573 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1574 # FreeBSD with Linux emulation /proc mounted,
1575 # extract CPU information from it
1576 # Don't use it on x86 though, it never reports 3Dnow
1577 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1578 elif darwin && ! x86 ; then
1579 # use hostinfo on Darwin
1580 _cpuinfo="hostinfo"
1581 elif aix; then
1582 # use 'lsattr' on AIX
1583 _cpuinfo="lsattr -E -l proc0 -a type"
1584 elif x86; then
1585 # all other OSes try to extract CPU information from a small helper
1586 # program cpuinfo instead
1587 $_cc -o cpuinfo$_exesuf cpuinfo.c
1588 _cpuinfo="./cpuinfo$_exesuf"
1591 if x86 ; then
1592 # gather more CPU information
1593 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1594 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1595 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1596 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1597 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1599 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1601 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1602 -e s/xmm/sse/ -e s/kni/sse/)
1604 for ext in $pparam ; do
1605 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1606 done
1608 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1609 test $_sse = kernel_check && _mmxext=kernel_check
1611 echocheck "CPU vendor"
1612 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1614 echocheck "CPU type"
1615 echores "$pname"
1618 fi # test "$_runtime_cpudetection" = no
1620 if x86 && test "$_runtime_cpudetection" = no ; then
1621 extcheck() {
1622 if test "$1" = kernel_check ; then
1623 echocheck "kernel support of $2"
1624 cat > $TMPC <<EOF
1625 #include <stdlib.h>
1626 #include <signal.h>
1627 void catch() { exit(1); }
1628 int main(void) {
1629 signal(SIGILL, catch);
1630 __asm__ volatile ("$3":::"memory"); return 0;
1634 if cc_check && tmp_run ; then
1635 eval _$2=yes
1636 echores "yes"
1637 _optimizing="$_optimizing $2"
1638 return 0
1639 else
1640 eval _$2=no
1641 echores "failed"
1642 echo "It seems that your kernel does not correctly support $2."
1643 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1644 return 1
1647 return 0
1650 extcheck $_mmx "mmx" "emms"
1651 extcheck $_mmxext "mmxext" "sfence"
1652 extcheck $_3dnow "3dnow" "femms"
1653 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1654 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1655 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1656 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1657 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1659 echocheck "mtrr support"
1660 if test "$_mtrr" = kernel_check ; then
1661 _mtrr="yes"
1662 _optimizing="$_optimizing mtrr"
1664 echores "$_mtrr"
1666 if test "$_gcc3_ext" != ""; then
1667 # if we had to disable sse/sse2 because the active kernel does not
1668 # support this instruction set extension, we also have to tell
1669 # gcc3 to not generate sse/sse2 instructions for normal C code
1670 cat > $TMPC << EOF
1671 int main(void) { return 0; }
1673 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1679 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1680 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1681 _arch_all='X86 X86_32 X86_64 IA64 SPARC ARM AVR32 SH4 PPC PPC64 ALPHA MIPS SGI_MIPS PA_RISC S390 S390X VAX BFIN XTENSA GENERIC'
1682 case "$host_arch" in
1683 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1684 _arch='X86 X86_32'
1685 _target_arch="ARCH_X86 = yes"
1686 _target_subarch="ARCH_X86_32 = yes"
1687 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1688 iproc=486
1689 proc=i486
1692 if test "$_runtime_cpudetection" = no ; then
1693 case "$pvendor" in
1694 AuthenticAMD)
1695 case "$pfamily" in
1696 3) proc=i386 iproc=386 ;;
1697 4) proc=i486 iproc=486 ;;
1698 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1699 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1700 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1701 proc=k6-3
1702 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1703 proc=geode
1704 elif test "$pmodel" -ge 8; then
1705 proc=k6-2
1706 elif test "$pmodel" -ge 6; then
1707 proc=k6
1708 else
1709 proc=i586
1712 6) iproc=686
1713 # It's a bit difficult to determine the correct type of Family 6
1714 # AMD CPUs just from their signature. Instead, we check directly
1715 # whether it supports SSE.
1716 if test "$_sse" = yes; then
1717 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1718 proc=athlon-xp
1719 else
1720 # Again, gcc treats athlon and athlon-tbird similarly.
1721 proc=athlon
1724 15) iproc=686
1725 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1726 # caught and remedied in the optimization tests below.
1727 proc=k8
1730 *) proc=amdfam10 iproc=686
1731 test $_fast_clz = "auto" && _fast_clz=yes
1733 esac
1735 GenuineIntel)
1736 case "$pfamily" in
1737 3) proc=i386 iproc=386 ;;
1738 4) proc=i486 iproc=486 ;;
1739 5) iproc=586
1740 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1741 proc=pentium-mmx # 4 is desktop, 8 is mobile
1742 else
1743 proc=i586
1746 6) iproc=686
1747 if test "$pmodel" -ge 15; then
1748 proc=core2
1749 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1750 proc=pentium-m
1751 elif test "$pmodel" -ge 7; then
1752 proc=pentium3
1753 elif test "$pmodel" -ge 3; then
1754 proc=pentium2
1755 else
1756 proc=i686
1758 test $_fast_clz = "auto" && _fast_clz=yes
1760 15) iproc=686
1761 # A nocona in 32-bit mode has no more capabilities than a prescott.
1762 if test "$pmodel" -ge 3; then
1763 proc=prescott
1764 else
1765 proc=pentium4
1766 test $_fast_clz = "auto" && _fast_clz=yes
1768 test $_fast_cmov = "auto" && _fast_cmov=no
1770 *) proc=prescott iproc=686 ;;
1771 esac
1773 CentaurHauls)
1774 case "$pfamily" in
1775 5) iproc=586
1776 if test "$pmodel" -ge 8; then
1777 proc=winchip2
1778 elif test "$pmodel" -ge 4; then
1779 proc=winchip-c6
1780 else
1781 proc=i586
1784 6) iproc=686
1785 if test "$pmodel" -ge 9; then
1786 proc=c3-2
1787 else
1788 proc=c3
1789 iproc=586
1792 *) proc=i686 iproc=i686 ;;
1793 esac
1795 unknown)
1796 case "$pfamily" in
1797 3) proc=i386 iproc=386 ;;
1798 4) proc=i486 iproc=486 ;;
1799 *) proc=i586 iproc=586 ;;
1800 esac
1803 proc=i586 iproc=586 ;;
1804 esac
1805 test $_fast_clz = "auto" && _fast_clz=no
1806 fi # test "$_runtime_cpudetection" = no
1809 # check that gcc supports our CPU, if not, fall back to earlier ones
1810 # LGB: check -mcpu and -march swithing step by step with enabling
1811 # to fall back till 386.
1813 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1815 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1816 cpuopt=-mtune
1817 else
1818 cpuopt=-mcpu
1821 echocheck "GCC & CPU optimization abilities"
1822 cat > $TMPC << EOF
1823 int main(void) { return 0; }
1825 if test "$_runtime_cpudetection" = no ; then
1826 cc_check -march=native && proc=native
1827 if test "$proc" = "k8"; then
1828 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1830 if test "$proc" = "athlon-xp"; then
1831 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1833 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1834 cc_check -march=$proc $cpuopt=$proc || proc=k6
1836 if test "$proc" = "k6" || test "$proc" = "c3"; then
1837 if ! cc_check -march=$proc $cpuopt=$proc; then
1838 if cc_check -march=i586 $cpuopt=i686; then
1839 proc=i586-i686
1840 else
1841 proc=i586
1845 if test "$proc" = "prescott" ; then
1846 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1848 if test "$proc" = "core2" ; then
1849 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1851 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
1852 cc_check -march=$proc $cpuopt=$proc || proc=i686
1854 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1855 cc_check -march=$proc $cpuopt=$proc || proc=i586
1857 if test "$proc" = "i586"; then
1858 cc_check -march=$proc $cpuopt=$proc || proc=i486
1860 if test "$proc" = "i486" ; then
1861 cc_check -march=$proc $cpuopt=$proc || proc=i386
1863 if test "$proc" = "i386" ; then
1864 cc_check -march=$proc $cpuopt=$proc || proc=error
1866 if test "$proc" = "error" ; then
1867 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1868 _mcpu=""
1869 _march=""
1870 _optimizing=""
1871 elif test "$proc" = "i586-i686"; then
1872 _march="-march=i586"
1873 _mcpu="$cpuopt=i686"
1874 _optimizing="$proc"
1875 else
1876 _march="-march=$proc"
1877 _mcpu="$cpuopt=$proc"
1878 _optimizing="$proc"
1880 else # if test "$_runtime_cpudetection" = no
1881 _mcpu="$cpuopt=generic"
1882 # at least i486 required, for bswap instruction
1883 _march="-march=i486"
1884 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1885 cc_check $_mcpu || _mcpu=""
1886 cc_check $_march $_mcpu || _march=""
1889 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1890 ## autodetected mcpu/march parameters
1891 if test "$_target" ; then
1892 # TODO: it may be a good idea to check GCC and fall back in all cases
1893 if test "$host_arch" = "i586-i686"; then
1894 _march="-march=i586"
1895 _mcpu="$cpuopt=i686"
1896 else
1897 _march="-march=$host_arch"
1898 _mcpu="$cpuopt=$host_arch"
1901 proc="$host_arch"
1903 case "$proc" in
1904 i386) iproc=386 ;;
1905 i486) iproc=486 ;;
1906 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1907 i686|athlon*|pentium*) iproc=686 ;;
1908 *) iproc=586 ;;
1909 esac
1912 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1913 _fast_cmov="yes"
1914 else
1915 _fast_cmov="no"
1917 test $_fast_clz = "auto" && _fast_clz=yes
1919 echores "$proc"
1922 ia64)
1923 _arch='IA64'
1924 _target_arch='ARCH_IA64 = yes'
1925 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1926 iproc='ia64'
1929 x86_64|amd64)
1930 _arch='X86 X86_64'
1931 _target_subarch='ARCH_X86_64 = yes'
1932 _target_arch="ARCH_X86 = yes"
1933 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1934 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1935 iproc='x86_64'
1937 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1938 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1939 cpuopt=-mtune
1940 else
1941 cpuopt=-mcpu
1943 if test "$_runtime_cpudetection" = no ; then
1944 case "$pvendor" in
1945 AuthenticAMD)
1946 case "$pfamily" in
1947 15) proc=k8
1948 test $_fast_clz = "auto" && _fast_clz=no
1950 *) proc=amdfam10;;
1951 esac
1953 GenuineIntel)
1954 case "$pfamily" in
1955 6) proc=core2;;
1957 # 64-bit prescotts exist, but as far as GCC is concerned they
1958 # have the same capabilities as a nocona.
1959 proc=nocona
1960 test $_fast_cmov = "auto" && _fast_cmov=no
1961 test $_fast_clz = "auto" && _fast_clz=no
1963 esac
1966 proc=error;;
1967 esac
1968 fi # test "$_runtime_cpudetection" = no
1970 echocheck "GCC & CPU optimization abilities"
1971 cat > $TMPC << EOF
1972 int main(void) { return 0; }
1974 # This is a stripped-down version of the i386 fallback.
1975 if test "$_runtime_cpudetection" = no ; then
1976 cc_check -march=native && proc=native
1977 # --- AMD processors ---
1978 if test "$proc" = "k8"; then
1979 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1981 # This will fail if gcc version < 3.3, which is ok because earlier
1982 # versions don't really support 64-bit on amd64.
1983 # Is this a valid assumption? -Corey
1984 if test "$proc" = "athlon-xp"; then
1985 cc_check -march=$proc $cpuopt=$proc || proc=error
1987 # --- Intel processors ---
1988 if test "$proc" = "core2"; then
1989 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
1991 if test "$proc" = "x86-64"; then
1992 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1994 if test "$proc" = "nocona"; then
1995 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1997 if test "$proc" = "pentium4"; then
1998 cc_check -march=$proc $cpuopt=$proc || proc=error
2001 _march="-march=$proc"
2002 _mcpu="$cpuopt=$proc"
2003 if test "$proc" = "error" ; then
2004 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2005 _mcpu=""
2006 _march=""
2008 else # if test "$_runtime_cpudetection" = no
2009 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2010 _march="-march=x86-64"
2011 _mcpu="$cpuopt=generic"
2012 cc_check $_mcpu || _mcpu="x86-64"
2013 cc_check $_mcpu || _mcpu=""
2014 cc_check $_march $_mcpu || _march=""
2017 _optimizing="$proc"
2018 test $_fast_cmov = "auto" && _fast_cmov=yes
2019 test $_fast_clz = "auto" && _fast_clz=yes
2021 echores "$proc"
2024 sparc|sparc64)
2025 _arch='SPARC'
2026 _target_arch='ARCH_SPARC = yes'
2027 iproc='sparc'
2028 if test "$host_arch" = "sparc64" ; then
2029 _vis='yes'
2030 proc='ultrasparc'
2031 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2032 elif sunos ; then
2033 echocheck "CPU type"
2034 karch=$(uname -m)
2035 case "$(echo $karch)" in
2036 sun4) proc=v7 ;;
2037 sun4c) proc=v7 ;;
2038 sun4d) proc=v8 ;;
2039 sun4m) proc=v8 ;;
2040 sun4u) proc=ultrasparc _vis='yes' ;;
2041 sun4v) proc=v9 ;;
2042 *) proc=v8 ;;
2043 esac
2044 echores "$proc"
2045 else
2046 proc=v8
2048 _mcpu="-mcpu=$proc"
2049 _optimizing="$proc"
2052 arm*)
2053 _arch='ARM'
2054 _target_arch='ARCH_ARM = yes'
2055 iproc='arm'
2058 avr32)
2059 _arch='AVR32'
2060 _target_arch='ARCH_AVR32 = yes'
2061 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2062 iproc='avr32'
2063 test $_fast_clz = "auto" && _fast_clz=yes
2066 sh|sh4)
2067 _arch='SH4'
2068 _target_arch='ARCH_SH4 = yes'
2069 iproc='sh4'
2072 ppc|ppc64|powerpc|powerpc64)
2073 _arch='PPC'
2074 def_dcbzl='#define HAVE_DCBZL 0'
2075 _target_arch='ARCH_PPC = yes'
2076 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2077 iproc='ppc'
2079 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2080 _arch='PPC PPC64'
2081 _target_subarch='ARCH_PPC64 = yes'
2082 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2084 echocheck "CPU type"
2085 case $system_name in
2086 Linux)
2087 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2088 if test -n "$($_cpuinfo | grep altivec)"; then
2089 test $_altivec = auto && _altivec=yes
2092 Darwin)
2093 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2094 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2095 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2096 test $_altivec = auto && _altivec=yes
2099 NetBSD)
2100 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2101 case $cc_version in
2102 2*|3.0*|3.1*|3.2*|3.3*)
2105 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2106 test $_altivec = auto && _altivec=yes
2109 esac
2111 AIX)
2112 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2114 esac
2115 if test "$_altivec" = yes; then
2116 echores "$proc altivec"
2117 else
2118 _altivec=no
2119 echores "$proc"
2122 echocheck "GCC & CPU optimization abilities"
2124 if test -n "$proc"; then
2125 case "$proc" in
2126 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2127 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2128 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2129 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2130 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2131 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2132 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2133 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2134 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2135 *) ;;
2136 esac
2137 # gcc 3.1(.1) and up supports 7400 and 7450
2138 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2139 case "$proc" in
2140 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2141 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2142 *) ;;
2143 esac
2145 # gcc 3.2 and up supports 970
2146 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2147 case "$proc" in
2148 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2149 def_dcbzl='#define HAVE_DCBZL 1' ;;
2150 *) ;;
2151 esac
2153 # gcc 3.3 and up supports POWER4
2154 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2155 case "$proc" in
2156 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2157 *) ;;
2158 esac
2160 # gcc 3.4 and up supports 440*
2161 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2162 case "$proc" in
2163 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2164 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2165 *) ;;
2166 esac
2168 # gcc 4.0 and up supports POWER5
2169 if test "$_cc_major" -ge "4"; then
2170 case "$proc" in
2171 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2172 *) ;;
2173 esac
2177 if test -n "$_mcpu"; then
2178 _optimizing=$(echo $_mcpu | cut -c 8-)
2179 echores "$_optimizing"
2180 else
2181 echores "none"
2184 test $_fast_clz = "auto" && _fast_clz=yes
2188 alpha*)
2189 _arch='ALPHA'
2190 _target_arch='ARCH_ALPHA = yes'
2191 iproc='alpha'
2192 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2194 echocheck "CPU type"
2195 cat > $TMPC << EOF
2196 int main(void) {
2197 unsigned long ver, mask;
2198 __asm__ ("implver %0" : "=r" (ver));
2199 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2200 printf("%ld-%x\n", ver, ~mask);
2201 return 0;
2204 $_cc -o "$TMPEXE" "$TMPC"
2205 case $("$TMPEXE") in
2207 0-0) proc="ev4"; _mvi="0";;
2208 1-0) proc="ev5"; _mvi="0";;
2209 1-1) proc="ev56"; _mvi="0";;
2210 1-101) proc="pca56"; _mvi="1";;
2211 2-303) proc="ev6"; _mvi="1";;
2212 2-307) proc="ev67"; _mvi="1";;
2213 2-1307) proc="ev68"; _mvi="1";;
2214 esac
2215 echores "$proc"
2217 echocheck "GCC & CPU optimization abilities"
2218 if test "$proc" = "ev68" ; then
2219 cc_check -mcpu=$proc || proc=ev67
2221 if test "$proc" = "ev67" ; then
2222 cc_check -mcpu=$proc || proc=ev6
2224 _mcpu="-mcpu=$proc"
2225 echores "$proc"
2227 test $_fast_clz = "auto" && _fast_clz=yes
2229 _optimizing="$proc"
2232 mips)
2233 _arch='SGI_MIPS'
2234 _target_arch='ARCH_SGI_MIPS = yes'
2235 iproc='sgi-mips'
2237 if irix ; then
2238 echocheck "CPU type"
2239 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2240 case "$(echo $proc)" in
2241 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2242 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2243 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2244 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2245 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2246 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2247 esac
2248 # gcc < 3.x does not support -mtune.
2249 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2250 _mcpu=''
2252 echores "$proc"
2255 test $_fast_clz = "auto" && _fast_clz=yes
2259 hppa)
2260 _arch='PA_RISC'
2261 _target_arch='ARCH_PA_RISC = yes'
2262 iproc='PA-RISC'
2265 s390)
2266 _arch='S390'
2267 _target_arch='ARCH_S390 = yes'
2268 iproc='390'
2271 s390x)
2272 _arch='S390X'
2273 _target_arch='ARCH_S390X = yes'
2274 iproc='390x'
2277 vax)
2278 _arch='VAX'
2279 _target_arch='ARCH_VAX = yes'
2280 iproc='vax'
2283 xtensa)
2284 _arch='XTENSA'
2285 _target_arch='ARCH_XTENSA = yes'
2286 iproc='xtensa'
2289 generic)
2290 _arch='GENERIC'
2291 _target_arch='ARCH_GENERIC = yes'
2295 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2296 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2297 die "unsupported architecture $host_arch"
2299 esac # case "$host_arch" in
2301 if test "$_runtime_cpudetection" = yes ; then
2302 if x86 ; then
2303 test "$_cmov" != no && _cmov=yes
2304 x86_32 && _cmov=no
2305 test "$_mmx" != no && _mmx=yes
2306 test "$_3dnow" != no && _3dnow=yes
2307 test "$_3dnowext" != no && _3dnowext=yes
2308 test "$_mmxext" != no && _mmxext=yes
2309 test "$_sse" != no && _sse=yes
2310 test "$_sse2" != no && _sse2=yes
2311 test "$_ssse3" != no && _ssse3=yes
2312 test "$_mtrr" != no && _mtrr=yes
2314 if ppc; then
2315 _altivec=yes
2320 # endian testing
2321 echocheck "byte order"
2322 if test "$_big_endian" = auto ; then
2323 cat > $TMPC <<EOF
2324 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2325 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2326 int main(void) { return (int)ascii_name; }
2328 if cc_check ; then
2329 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2330 _big_endian=yes
2331 else
2332 _big_endian=no
2334 else
2335 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2338 if test "$_big_endian" = yes ; then
2339 _byte_order='big-endian'
2340 def_words_endian='#define WORDS_BIGENDIAN 1'
2341 def_bigendian='#define HAVE_BIGENDIAN 1'
2342 else
2343 _byte_order='little-endian'
2344 def_words_endian='#undef WORDS_BIGENDIAN'
2345 def_bigendian='#define HAVE_BIGENDIAN 0'
2347 echores "$_byte_order"
2350 echocheck "extern symbol prefix"
2351 cat > $TMPC << EOF
2352 int ff_extern;
2354 cc_check -c || die "Symbol mangling check failed."
2355 sym=$($_nm -P -g $TMPEXE)
2356 extern_prefix=${sym%%ff_extern*}
2357 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2358 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2359 echores $extern_prefix
2362 echocheck "assembler support of -pipe option"
2363 cat > $TMPC << EOF
2364 int main(void) { return 0; }
2366 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2367 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2370 echocheck "compiler support of named assembler arguments"
2371 _named_asm_args=yes
2372 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2373 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2374 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2375 _named_asm_args=no
2376 def_named_asm_args="#undef NAMED_ASM_ARGS"
2378 echores $_named_asm_args
2381 if darwin && test "$cc_vendor" = "gnu" ; then
2382 echocheck "GCC support of -mstackrealign"
2383 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2384 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2385 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2386 # wrong code with this flag, but this can be worked around by adding
2387 # -fno-unit-at-a-time as described in the blog post at
2388 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2389 cat > $TMPC << EOF
2390 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2391 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2393 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2394 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2395 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2396 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2397 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2400 # Checking for CFLAGS
2401 _install_strip="-s"
2402 if test "$_profile" != "" || test "$_debug" != "" ; then
2403 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2404 _install_strip=
2405 elif test -z "$CFLAGS" ; then
2406 if test "$cc_vendor" = "intel" ; then
2407 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2408 elif test "$cc_vendor" = "sun" ; then
2409 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2410 elif test "$cc_vendor" != "gnu" ; then
2411 CFLAGS="-O2 $_march $_mcpu $_pipe"
2412 else
2413 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2414 extra_ldflags="$extra_ldflags -ffast-math"
2416 else
2417 _warn_CFLAGS=yes
2420 cat > $TMPC << EOF
2421 int main(void) { return 0; }
2423 if test "$cc_vendor" = "gnu" ; then
2424 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2425 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2426 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2427 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2428 else
2429 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2432 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2435 if test -n "$LDFLAGS" ; then
2436 extra_ldflags="$extra_ldflags $LDFLAGS"
2437 _warn_CFLAGS=yes
2438 elif test "$cc_vendor" = "intel" ; then
2439 extra_ldflags="$extra_ldflags -i-static"
2441 if test -n "$CPPFLAGS" ; then
2442 extra_cflags="$extra_cflags $CPPFLAGS"
2443 _warn_CFLAGS=yes
2448 if x86_32 ; then
2449 # Checking assembler (_as) compatibility...
2450 # Added workaround for older as that reads from stdin by default - atmos
2451 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2452 echocheck "assembler ($_as $as_version)"
2454 _pref_as_version='2.9.1'
2455 echo 'nop' > $TMPS
2456 if test "$_mmx" = yes ; then
2457 echo 'emms' >> $TMPS
2459 if test "$_3dnow" = yes ; then
2460 _pref_as_version='2.10.1'
2461 echo 'femms' >> $TMPS
2463 if test "$_3dnowext" = yes ; then
2464 _pref_as_version='2.10.1'
2465 echo 'pswapd %mm0, %mm0' >> $TMPS
2467 if test "$_mmxext" = yes ; then
2468 _pref_as_version='2.10.1'
2469 echo 'movntq %mm0, (%eax)' >> $TMPS
2471 if test "$_sse" = yes ; then
2472 _pref_as_version='2.10.1'
2473 echo 'xorps %xmm0, %xmm0' >> $TMPS
2475 #if test "$_sse2" = yes ; then
2476 # _pref_as_version='2.11'
2477 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2479 if test "$_cmov" = yes ; then
2480 _pref_as_version='2.10.1'
2481 echo 'cmovb %eax, %ebx' >> $TMPS
2483 if test "$_ssse3" = yes ; then
2484 _pref_as_version='2.16.92'
2485 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2487 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2489 if test "$as_verc_fail" != yes ; then
2490 echores "ok"
2491 else
2492 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2493 echores "failed"
2494 die "obsolete binutils version"
2497 fi #if x86_32
2499 echocheck ".align is a power of two"
2500 if test "$_asmalign_pot" = auto ; then
2501 _asmalign_pot=no
2502 cat > $TMPC << EOF
2503 int main(void) { __asm__ (".align 3"); return 0; }
2505 cc_check && _asmalign_pot=yes
2507 if test "$_asmalign_pot" = "yes" ; then
2508 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2509 else
2510 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2512 echores $_asmalign_pot
2514 if x86 ; then
2515 echocheck "10 assembler operands"
2516 ten_operands=no
2517 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2518 cat > $TMPC << EOF
2519 int main(void) {
2520 int x=0;
2521 __asm__ volatile(
2523 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2525 return 0;
2528 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2529 echores $ten_operands
2531 echocheck "ebx availability"
2532 ebx_available=no
2533 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2534 cat > $TMPC << EOF
2535 int main(void) {
2536 int x;
2537 __asm__ volatile(
2538 "xor %0, %0"
2539 :"=b"(x)
2540 // just adding ebx to clobber list seems unreliable with some
2541 // compilers, e.g. Haiku's gcc 2.95
2543 // and the above check does not work for OSX 64 bit...
2544 __asm__ volatile("":::"%ebx");
2545 return 0;
2548 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2549 echores $ebx_available
2551 echocheck "PIC"
2552 pic=no
2553 cat > $TMPC << EOF
2554 int main(void) {
2555 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2556 #error PIC not enabled
2557 #endif
2558 return 0;
2561 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2562 echores $pic
2564 echocheck "yasm"
2565 if test -z "$YASMFLAGS" ; then
2566 if darwin ; then
2567 x86_64 && objformat="macho64" || objformat="macho"
2568 elif win32 ; then
2569 objformat="win32"
2570 else
2571 objformat="elf"
2573 # currently tested for Linux x86, x86_64
2574 YASMFLAGS="-f $objformat"
2575 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2576 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2577 case "$objformat" in
2578 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2579 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2580 esac
2581 else
2582 _warn_CFLAGS=yes
2585 echo "pabsw xmm0, xmm0" > $TMPS
2586 yasm_check || _yasm=""
2587 if test $_yasm ; then
2588 test "$_mmx" = "yes" && fft_mmx="yes"
2589 def_yasm='#define HAVE_YASM 1'
2590 _have_yasm="yes"
2591 echores "$_yasm"
2592 else
2593 def_yasm='#define HAVE_YASM 0'
2594 fft_mmx="no"
2595 _have_yasm="no"
2596 echores "no"
2599 echocheck "bswap"
2600 def_bswap='#define HAVE_BSWAP 0'
2601 echo 'bswap %eax' > $TMPS
2602 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2603 echores "$bswap"
2604 fi #if x86
2607 #FIXME: This should happen before the check for CFLAGS..
2608 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2609 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2611 # check if AltiVec is supported by the compiler, and how to enable it
2612 echocheck "GCC AltiVec flags"
2613 cat > $TMPC << EOF
2614 int main(void) { return 0; }
2616 if $(cc_check -maltivec -mabi=altivec) ; then
2617 _altivec_gcc_flags="-maltivec -mabi=altivec"
2618 # check if <altivec.h> should be included
2619 cat > $TMPC << EOF
2620 #include <altivec.h>
2621 int main(void) { return 0; }
2623 if $(cc_check $_altivec_gcc_flags) ; then
2624 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2625 inc_altivec_h='#include <altivec.h>'
2626 else
2627 cat > $TMPC << EOF
2628 int main(void) { return 0; }
2630 if $(cc_check -faltivec) ; then
2631 _altivec_gcc_flags="-faltivec"
2632 else
2633 _altivec=no
2634 _altivec_gcc_flags="none, AltiVec disabled"
2638 echores "$_altivec_gcc_flags"
2640 # check if the compiler supports braces for vector declarations
2641 cat > $TMPC << EOF
2642 $inc_altivec_h
2643 int main(void) { (vector int) {1}; return 0; }
2645 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2647 # Disable runtime cpudetection if we cannot generate AltiVec code or
2648 # AltiVec is disabled by the user.
2649 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2650 && _runtime_cpudetection=no
2652 # Show that we are optimizing for AltiVec (if enabled and supported).
2653 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2654 && _optimizing="$_optimizing altivec"
2656 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2657 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2660 if ppc ; then
2661 def_xform_asm='#define HAVE_XFORM_ASM 0'
2662 xform_asm=no
2663 echocheck "XFORM ASM support"
2664 cat > $TMPC << EOF
2665 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2667 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2668 echores "$xform_asm"
2671 if arm ; then
2672 echocheck "ARM pld instruction"
2673 cat > $TMPC << EOF
2674 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2676 pld=no
2677 cc_check && pld=yes
2678 echores "$pld"
2680 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2681 if test $_armv5te = "auto" ; then
2682 cat > $TMPC << EOF
2683 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2685 _armv5te=no
2686 cc_check && _armv5te=yes
2688 echores "$_armv5te"
2690 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2692 echocheck "ARMv6 (SIMD instructions)"
2693 if test $_armv6 = "auto" ; then
2694 cat > $TMPC << EOF
2695 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2697 _armv6=no
2698 cc_check && _armv6=yes
2700 echores "$_armv6"
2702 echocheck "ARMv6t2 (SIMD instructions)"
2703 if test $_armv6t2 = "auto" ; then
2704 cat > $TMPC << EOF
2705 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2707 _armv6t2=no
2708 cc_check && _armv6t2=yes
2710 echores "$_armv6"
2712 echocheck "ARM VFP"
2713 if test $_armvfp = "auto" ; then
2714 cat > $TMPC << EOF
2715 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2717 _armvfp=no
2718 cc_check && _armvfp=yes
2720 echores "$_armvfp"
2722 echocheck "ARM NEON"
2723 if test $neon = "auto" ; then
2724 cat > $TMPC << EOF
2725 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2727 neon=no
2728 cc_check && neon=yes
2730 echores "$neon"
2732 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2733 if test $_iwmmxt = "auto" ; then
2734 cat > $TMPC << EOF
2735 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2737 _iwmmxt=no
2738 cc_check && _iwmmxt=yes
2740 echores "$_iwmmxt"
2743 _cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2744 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2745 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2746 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2747 test "$_3dnow" = yes && _cpuexts="AMD3DNOW $_cpuexts"
2748 test "$_3dnowext" = yes && _cpuexts="AMD3DNOWEXT $_cpuexts"
2749 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2750 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2751 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2752 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2753 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2754 test "$_fast_clz" = yes && _cpuexts="FAST_CLZ $_cpuexts"
2755 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2756 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2757 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2758 test "$_armv6t2" = yes && _cpuexts="ARMV6T2 $_cpuexts"
2759 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2760 test "$neon" = yes && _cpuexts="NEON $_cpuexts"
2761 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2762 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2763 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2765 # Checking kernel version...
2766 if x86_32 && linux ; then
2767 _k_verc_problem=no
2768 kernel_version=$(uname -r 2>&1)
2769 echocheck "$system_name kernel version"
2770 case "$kernel_version" in
2771 '') kernel_version="?.??"; _k_verc_fail=yes;;
2772 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2773 _k_verc_problem=yes;;
2774 esac
2775 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2776 _k_verc_fail=yes
2778 if test "$_k_verc_fail" ; then
2779 echores "$kernel_version, fail"
2780 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2781 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2782 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2783 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2784 echo "2.2.x you must upgrade it to get SSE support!"
2785 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2786 else
2787 echores "$kernel_version, ok"
2791 ######################
2792 # MAIN TESTS GO HERE #
2793 ######################
2796 echocheck "-lposix"
2797 cat > $TMPC <<EOF
2798 int main(void) { return 0; }
2800 if cc_check -lposix ; then
2801 extra_ldflags="$extra_ldflags -lposix"
2802 echores "yes"
2803 else
2804 echores "no"
2807 echocheck "-lm"
2808 cat > $TMPC <<EOF
2809 int main(void) { return 0; }
2811 if cc_check -lm ; then
2812 _ld_lm="-lm"
2813 echores "yes"
2814 else
2815 _ld_lm=""
2816 echores "no"
2820 echocheck "langinfo"
2821 if test "$_langinfo" = auto ; then
2822 cat > $TMPC <<EOF
2823 #include <langinfo.h>
2824 int main(void) { nl_langinfo(CODESET); return 0; }
2826 _langinfo=no
2827 cc_check && _langinfo=yes
2829 if test "$_langinfo" = yes ; then
2830 def_langinfo='#define HAVE_LANGINFO 1'
2831 else
2832 def_langinfo='#undef HAVE_LANGINFO'
2834 echores "$_langinfo"
2837 echocheck "translation support"
2838 if test "$_translation" = yes; then
2839 def_translation="#define CONFIG_TRANSLATION 1"
2840 else
2841 def_translation="#undef CONFIG_TRANSLATION"
2843 echores "$_translation"
2845 echocheck "language"
2846 # Set preferred languages, "all" uses English as main language.
2847 test -z "$language" && language=$LINGUAS
2848 test -z "$language_doc" && language_doc=$language
2849 test -z "$language_man" && language_man=$language
2850 test -z "$language_msg" && language_msg=$language
2851 language_doc=$(echo $language_doc | tr , " ")
2852 language_man=$(echo $language_man | tr , " ")
2853 language_msg=$(echo $language_msg | tr , " ")
2855 test "$language_doc" = "all" && language_doc=$doc_lang_all
2856 test "$language_man" = "all" && language_man=$man_lang_all
2857 test "$language_msg" = "all" && language_msg=en
2859 # Prune non-existing translations from language lists.
2860 # Set message translation to the first available language.
2861 # Fall back on English.
2862 for lang in $language_doc ; do
2863 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2864 done
2865 language_doc=$tmp_language_doc
2866 test -z "$language_doc" && language_doc=en
2868 for lang in $language_man ; do
2869 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2870 done
2871 language_man=$tmp_language_man
2872 test -z "$language_man" && language_man=en
2874 for lang in $language_msg ; do
2875 test -f "help/help_mp-${lang}.h" && tmp_language_msg=$lang && break
2876 done
2877 language_msg=$tmp_language_msg
2878 test -z "$language_msg" && language_msg=en
2879 _mp_help="help/help_mp-${language_msg}.h"
2880 echores "messages: $language_msg - man pages: $language_man - documentation: $language_doc"
2883 echocheck "enable sighandler"
2884 if test "$_sighandler" = yes ; then
2885 def_sighandler='#define CONFIG_SIGHANDLER 1'
2886 else
2887 def_sighandler='#undef CONFIG_SIGHANDLER'
2889 echores "$_sighandler"
2891 echocheck "runtime cpudetection"
2892 if test "$_runtime_cpudetection" = yes ; then
2893 _optimizing="Runtime CPU-Detection enabled"
2894 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2895 else
2896 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2898 echores "$_runtime_cpudetection"
2901 echocheck "restrict keyword"
2902 for restrict_keyword in restrict __restrict __restrict__ ; do
2903 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2904 if cc_check; then
2905 def_restrict_keyword=$restrict_keyword
2906 break;
2908 done
2909 if [ -n "$def_restrict_keyword" ]; then
2910 echores "$def_restrict_keyword"
2911 else
2912 echores "none"
2914 # Avoid infinite recursion loop ("#define restrict restrict")
2915 if [ "$def_restrict_keyword" != "restrict" ]; then
2916 def_restrict_keyword="#define restrict $def_restrict_keyword"
2917 else
2918 def_restrict_keyword=""
2922 echocheck "__builtin_expect"
2923 # GCC branch prediction hint
2924 cat > $TMPC << EOF
2925 int foo(int a) {
2926 a = __builtin_expect(a, 10);
2927 return a == 10 ? 0 : 1;
2929 int main(void) { return foo(10) && foo(0); }
2931 _builtin_expect=no
2932 cc_check && _builtin_expect=yes
2933 if test "$_builtin_expect" = yes ; then
2934 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2935 else
2936 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2938 echores "$_builtin_expect"
2941 echocheck "kstat"
2942 cat > $TMPC << EOF
2943 #include <kstat.h>
2944 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2946 _kstat=no
2947 cc_check -lkstat && _kstat=yes
2948 if test "$_kstat" = yes ; then
2949 def_kstat="#define HAVE_LIBKSTAT 1"
2950 extra_ldflags="$extra_ldflags -lkstat"
2951 else
2952 def_kstat="#undef HAVE_LIBKSTAT"
2954 echores "$_kstat"
2957 echocheck "posix4"
2958 # required for nanosleep on some systems
2959 cat > $TMPC << EOF
2960 #include <time.h>
2961 int main(void) { (void) nanosleep(0, 0); return 0; }
2963 _posix4=no
2964 cc_check -lposix4 && _posix4=yes
2965 if test "$_posix4" = yes ; then
2966 extra_ldflags="$extra_ldflags -lposix4"
2968 echores "$_posix4"
2970 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2971 echocheck $func
2972 cat > $TMPC << EOF
2973 #include <math.h>
2974 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2976 eval _$func=no
2977 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2978 if eval test "x\$_$func" = "xyes"; then
2979 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2980 echores yes
2981 else
2982 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2983 echores no
2985 done
2988 echocheck "mkstemp"
2989 cat > $TMPC << EOF
2990 #include <stdlib.h>
2991 int main(void) { char a; mkstemp(&a); return 0; }
2993 _mkstemp=no
2994 cc_check && _mkstemp=yes
2995 if test "$_mkstemp" = yes ; then
2996 def_mkstemp='#define HAVE_MKSTEMP 1'
2997 else
2998 def_mkstemp='#undef HAVE_MKSTEMP'
3000 echores "$_mkstemp"
3003 echocheck "nanosleep"
3004 # also check for nanosleep
3005 cat > $TMPC << EOF
3006 #include <time.h>
3007 int main(void) { (void) nanosleep(0, 0); return 0; }
3009 _nanosleep=no
3010 cc_check && _nanosleep=yes
3011 if test "$_nanosleep" = yes ; then
3012 def_nanosleep='#define HAVE_NANOSLEEP 1'
3013 else
3014 def_nanosleep='#undef HAVE_NANOSLEEP'
3016 echores "$_nanosleep"
3019 echocheck "socklib"
3020 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3021 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3022 cat > $TMPC << EOF
3023 #include <netdb.h>
3024 #include <sys/socket.h>
3025 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3027 _socklib=no
3028 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3029 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3030 done
3031 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3032 if test $_winsock2_h = auto ; then
3033 _winsock2_h=no
3034 cat > $TMPC << EOF
3035 #include <winsock2.h>
3036 int main(void) { (void) gethostbyname(0); return 0; }
3038 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3040 test "$_ld_sock" && _res_comment="using $_ld_sock"
3041 echores "$_socklib"
3044 if test $_winsock2_h = yes ; then
3045 _ld_sock="-lws2_32"
3046 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3047 else
3048 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3052 echocheck "arpa/inet.h"
3053 arpa_inet_h=no
3054 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3055 cat > $TMPC << EOF
3056 #include <arpa/inet.h>
3057 int main(void) { return 0; }
3059 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3060 echores "$arpa_inet_h"
3063 echocheck "inet_pton()"
3064 def_inet_pton='#define HAVE_INET_PTON 0'
3065 inet_pton=no
3066 cat > $TMPC << EOF
3067 #include <sys/types.h>
3068 #include <sys/socket.h>
3069 #include <arpa/inet.h>
3070 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3072 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3073 cc_check $_ld_tmp && inet_pton=yes && break
3074 done
3075 if test $inet_pton = yes ; then
3076 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3077 def_inet_pton='#define HAVE_INET_PTON 1'
3079 echores "$inet_pton"
3082 echocheck "inet_aton()"
3083 def_inet_aton='#define HAVE_INET_ATON 0'
3084 inet_aton=no
3085 cat > $TMPC << EOF
3086 #include <sys/types.h>
3087 #include <sys/socket.h>
3088 #include <arpa/inet.h>
3089 int main(void) { (void) inet_aton(0, 0); return 0; }
3091 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3092 cc_check $_ld_tmp && inet_aton=yes && break
3093 done
3094 if test $inet_aton = yes ; then
3095 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3096 def_inet_aton='#define HAVE_INET_ATON 1'
3098 echores "$inet_aton"
3101 echocheck "socklen_t"
3102 _socklen_t=no
3103 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3104 cat > $TMPC << EOF
3105 #include <$header>
3106 int main(void) { socklen_t v = 0; return v; }
3108 cc_check && _socklen_t=yes && break
3109 done
3110 if test "$_socklen_t" = yes ; then
3111 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3112 else
3113 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3115 echores "$_socklen_t"
3118 echocheck "closesocket()"
3119 _closesocket=no
3120 cat > $TMPC << EOF
3121 #include <winsock2.h>
3122 int main(void) { closesocket(~0); return 0; }
3124 cc_check $_ld_sock && _closesocket=yes
3125 if test "$_closesocket" = yes ; then
3126 def_closesocket='#define HAVE_CLOSESOCKET 1'
3127 else
3128 def_closesocket='#define HAVE_CLOSESOCKET 0'
3130 echores "$_closesocket"
3133 echocheck "network"
3134 test $_winsock2_h = no && test $inet_pton = no &&
3135 test $inet_aton = no && _network=no
3136 if test "$_network" = yes ; then
3137 def_network='#define CONFIG_NETWORK 1'
3138 extra_ldflags="$extra_ldflags $_ld_sock"
3139 _inputmodules="network $_inputmodules"
3140 else
3141 _noinputmodules="network $_noinputmodules"
3142 def_network='#undef CONFIG_NETWORK'
3143 _ftp=no
3145 echores "$_network"
3148 echocheck "inet6"
3149 if test "$_inet6" = auto ; then
3150 cat > $TMPC << EOF
3151 #include <sys/types.h>
3152 #if !defined(_WIN32) || defined(__CYGWIN__)
3153 #include <sys/socket.h>
3154 #include <netinet/in.h>
3155 #else
3156 #include <ws2tcpip.h>
3157 #endif
3158 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3160 _inet6=no
3161 if cc_check $_ld_sock ; then
3162 _inet6=yes
3165 if test "$_inet6" = yes ; then
3166 def_inet6='#define HAVE_AF_INET6 1'
3167 else
3168 def_inet6='#undef HAVE_AF_INET6'
3170 echores "$_inet6"
3173 echocheck "gethostbyname2"
3174 if test "$_gethostbyname2" = auto ; then
3175 cat > $TMPC << EOF
3176 #include <sys/types.h>
3177 #include <sys/socket.h>
3178 #include <netdb.h>
3179 int main(void) { gethostbyname2("", AF_INET); return 0; }
3181 _gethostbyname2=no
3182 if cc_check ; then
3183 _gethostbyname2=yes
3186 if test "$_gethostbyname2" = yes ; then
3187 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3188 else
3189 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3191 echores "$_gethostbyname2"
3194 echocheck "inttypes.h (required)"
3195 cat > $TMPC << EOF
3196 #include <inttypes.h>
3197 int main(void) { return 0; }
3199 _inttypes=no
3200 cc_check && _inttypes=yes
3201 echores "$_inttypes"
3203 if test "$_inttypes" = no ; then
3204 echocheck "bitypes.h (inttypes.h predecessor)"
3205 cat > $TMPC << EOF
3206 #include <sys/bitypes.h>
3207 int main(void) { return 0; }
3209 cc_check && _inttypes=yes
3210 if test "$_inttypes" = yes ; then
3211 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."
3212 else
3213 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3218 echocheck "int_fastXY_t in inttypes.h"
3219 cat > $TMPC << EOF
3220 #include <inttypes.h>
3221 int main(void) {
3222 volatile int_fast16_t v= 0;
3223 return v; }
3225 _fast_inttypes=no
3226 cc_check && _fast_inttypes=yes
3227 if test "$_fast_inttypes" = no ; then
3228 def_fast_inttypes='
3229 typedef signed char int_fast8_t;
3230 typedef signed int int_fast16_t;
3231 typedef signed int int_fast32_t;
3232 typedef signed long long int_fast64_t;
3233 typedef unsigned char uint_fast8_t;
3234 typedef unsigned int uint_fast16_t;
3235 typedef unsigned int uint_fast32_t;
3236 typedef unsigned long long uint_fast64_t;'
3238 echores "$_fast_inttypes"
3241 echocheck "malloc.h"
3242 cat > $TMPC << EOF
3243 #include <malloc.h>
3244 int main(void) { (void) malloc(0); return 0; }
3246 _malloc=no
3247 cc_check && _malloc=yes
3248 if test "$_malloc" = yes ; then
3249 def_malloc_h='#define HAVE_MALLOC_H 1'
3250 else
3251 def_malloc_h='#define HAVE_MALLOC_H 0'
3253 # malloc.h emits a warning in FreeBSD and OpenBSD
3254 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3255 echores "$_malloc"
3258 echocheck "memalign()"
3259 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3260 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3261 cat > $TMPC << EOF
3262 #include <malloc.h>
3263 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3265 _memalign=no
3266 cc_check && _memalign=yes
3267 if test "$_memalign" = yes ; then
3268 def_memalign='#define HAVE_MEMALIGN 1'
3269 else
3270 def_memalign='#define HAVE_MEMALIGN 0'
3271 def_map_memalign='#define memalign(a,b) malloc(b)'
3272 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3274 echores "$_memalign"
3277 echocheck "posix_memalign()"
3278 posix_memalign=no
3279 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3280 cat > $TMPC << EOF
3281 #define _XOPEN_SOURCE 600
3282 #include <stdlib.h>
3283 int main(void) { posix_memalign(NULL, 0, 0); }
3285 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3286 echores "$posix_memalign"
3289 echocheck "alloca.h"
3290 cat > $TMPC << EOF
3291 #include <alloca.h>
3292 int main(void) { (void) alloca(0); return 0; }
3294 _alloca=no
3295 cc_check && _alloca=yes
3296 if cc_check ; then
3297 def_alloca_h='#define HAVE_ALLOCA_H 1'
3298 else
3299 def_alloca_h='#undef HAVE_ALLOCA_H'
3301 echores "$_alloca"
3304 echocheck "fastmemcpy"
3305 if test "$_fastmemcpy" = yes ; then
3306 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3307 else
3308 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3310 echores "$_fastmemcpy"
3313 echocheck "mman.h"
3314 cat > $TMPC << EOF
3315 #include <sys/types.h>
3316 #include <sys/mman.h>
3317 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3319 _mman=no
3320 cc_check && _mman=yes
3321 if test "$_mman" = yes ; then
3322 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3323 else
3324 def_mman_h='#undef HAVE_SYS_MMAN_H'
3325 os2 && _need_mmap=yes
3327 echores "$_mman"
3329 cat > $TMPC << EOF
3330 #include <sys/types.h>
3331 #include <sys/mman.h>
3332 int main(void) { void *p = MAP_FAILED; return 0; }
3334 _mman_has_map_failed=no
3335 cc_check && _mman_has_map_failed=yes
3336 if test "$_mman_has_map_failed" = yes ; then
3337 def_mman_has_map_failed=''
3338 else
3339 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3342 echocheck "dynamic loader"
3343 cat > $TMPC << EOF
3344 #include <stddef.h>
3345 #include <dlfcn.h>
3346 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3348 _dl=no
3349 for _ld_tmp in "" "-ldl" ; do
3350 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3351 done
3352 if test "$_dl" = yes ; then
3353 def_dl='#define HAVE_LIBDL 1'
3354 else
3355 def_dl='#undef HAVE_LIBDL'
3357 echores "$_dl"
3360 echocheck "dynamic a/v plugins support"
3361 if test "$_dl" = no ; then
3362 _dynamic_plugins=no
3364 if test "$_dynamic_plugins" = yes ; then
3365 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3366 else
3367 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3369 echores "$_dynamic_plugins"
3372 def_threads='#define HAVE_THREADS 0'
3374 echocheck "pthread"
3375 if linux ; then
3376 THREAD_CFLAGS=-D_REENTRANT
3377 elif freebsd || netbsd || openbsd || bsdos ; then
3378 THREAD_CFLAGS=-D_THREAD_SAFE
3380 if test "$_pthreads" = auto ; then
3381 cat > $TMPC << EOF
3382 #include <pthread.h>
3383 void* func(void *arg) { return arg; }
3384 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3386 _pthreads=no
3387 if ! hpux ; then
3388 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3389 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3390 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3391 done
3394 if test "$_pthreads" = yes ; then
3395 test $_ld_pthread && _res_comment="using $_ld_pthread"
3396 def_pthreads='#define HAVE_PTHREADS 1'
3397 def_threads='#define HAVE_THREADS 1'
3398 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3399 else
3400 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3401 def_pthreads='#undef HAVE_PTHREADS'
3402 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3403 mingw32 || _win32dll=no
3405 echores "$_pthreads"
3407 if cygwin ; then
3408 if test "$_pthreads" = yes ; then
3409 def_pthread_cache="#define PTHREAD_CACHE 1"
3410 else
3411 _stream_cache=no
3412 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3416 echocheck "w32threads"
3417 if test "$_pthreads" = yes ; then
3418 _res_comment="using pthread instead"
3419 _w32threads=no
3421 if test "$_w32threads" = auto ; then
3422 _w32threads=no
3423 mingw32 && _w32threads=yes
3425 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3426 echores "$_w32threads"
3428 echocheck "rpath"
3429 netbsd &&_rpath=yes
3430 if test "$_rpath" = yes ; then
3431 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3432 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3433 done
3434 extra_ldflags=$tmp
3436 echores "$_rpath"
3438 echocheck "iconv"
3439 if test "$_iconv" = auto ; then
3440 cat > $TMPC << EOF
3441 #include <stdio.h>
3442 #include <unistd.h>
3443 #include <iconv.h>
3444 #define INBUFSIZE 1024
3445 #define OUTBUFSIZE 4096
3447 char inbuffer[INBUFSIZE];
3448 char outbuffer[OUTBUFSIZE];
3450 int main(void) {
3451 size_t numread;
3452 iconv_t icdsc;
3453 char *tocode="UTF-8";
3454 char *fromcode="cp1250";
3455 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3456 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3457 char *iptr=inbuffer;
3458 char *optr=outbuffer;
3459 size_t inleft=numread;
3460 size_t outleft=OUTBUFSIZE;
3461 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3462 != (size_t)(-1)) {
3463 write(1, outbuffer, OUTBUFSIZE - outleft);
3466 if (iconv_close(icdsc) == -1)
3469 return 0;
3472 _iconv=no
3473 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3474 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3475 _iconv=yes && break
3476 done
3478 if test "$_iconv" = yes ; then
3479 def_iconv='#define CONFIG_ICONV 1'
3480 else
3481 def_iconv='#undef CONFIG_ICONV'
3483 echores "$_iconv"
3486 echocheck "soundcard.h"
3487 _soundcard_h=no
3488 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3489 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3490 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3491 cat > $TMPC << EOF
3492 #include <$_soundcard_header>
3493 int main(void) { return 0; }
3495 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3496 done
3498 if test "$_soundcard_h" = yes ; then
3499 if test $_soundcard_header = "sys/soundcard.h"; then
3500 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3501 else
3502 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3505 echores "$_soundcard_h"
3508 echocheck "sys/dvdio.h"
3509 cat > $TMPC << EOF
3510 #include <unistd.h>
3511 #include <sys/dvdio.h>
3512 int main(void) { return 0; }
3514 _dvdio=no
3515 cc_check && _dvdio=yes
3516 if test "$_dvdio" = yes ; then
3517 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3518 else
3519 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3521 echores "$_dvdio"
3524 echocheck "sys/cdio.h"
3525 cat > $TMPC << EOF
3526 #include <unistd.h>
3527 #include <sys/cdio.h>
3528 int main(void) { return 0; }
3530 _cdio=no
3531 cc_check && _cdio=yes
3532 if test "$_cdio" = yes ; then
3533 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3534 else
3535 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3537 echores "$_cdio"
3540 echocheck "linux/cdrom.h"
3541 cat > $TMPC << EOF
3542 #include <sys/types.h>
3543 #include <linux/cdrom.h>
3544 int main(void) { return 0; }
3546 _cdrom=no
3547 cc_check && _cdrom=yes
3548 if test "$_cdrom" = yes ; then
3549 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3550 else
3551 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3553 echores "$_cdrom"
3556 echocheck "dvd.h"
3557 cat > $TMPC << EOF
3558 #include <dvd.h>
3559 int main(void) { return 0; }
3561 _dvd=no
3562 cc_check && _dvd=yes
3563 if test "$_dvd" = yes ; then
3564 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3565 else
3566 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3568 echores "$_dvd"
3571 if bsdos; then
3572 echocheck "BSDI dvd.h"
3573 cat > $TMPC << EOF
3574 #include <dvd.h>
3575 int main(void) { return 0; }
3577 _bsdi_dvd=no
3578 cc_check && _bsdi_dvd=yes
3579 if test "$_bsdi_dvd" = yes ; then
3580 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3581 else
3582 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3584 echores "$_bsdi_dvd"
3585 fi #if bsdos
3588 if hpux; then
3589 # also used by AIX, but AIX does not support VCD and/or libdvdread
3590 echocheck "HP-UX SCSI header"
3591 cat > $TMPC << EOF
3592 #include <sys/scsi.h>
3593 int main(void) { return 0; }
3595 _hpux_scsi_h=no
3596 cc_check && _hpux_scsi_h=yes
3597 if test "$_hpux_scsi_h" = yes ; then
3598 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3599 else
3600 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3602 echores "$_hpux_scsi_h"
3603 fi #if hpux
3606 if sunos; then
3607 echocheck "userspace SCSI headers (Solaris)"
3608 cat > $TMPC << EOF
3609 #include <unistd.h>
3610 #include <stropts.h>
3611 #include <sys/scsi/scsi_types.h>
3612 #include <sys/scsi/impl/uscsi.h>
3613 int main(void) { return 0; }
3615 _sol_scsi_h=no
3616 cc_check && _sol_scsi_h=yes
3617 if test "$_sol_scsi_h" = yes ; then
3618 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3619 else
3620 def_sol_scsi_h='#undef SOLARIS_USCSI'
3622 echores "$_sol_scsi_h"
3623 fi #if sunos
3626 echocheck "termcap"
3627 if test "$_termcap" = auto ; then
3628 cat > $TMPC <<EOF
3629 #include <stddef.h>
3630 #include <term.h>
3631 int main(void) { tgetent(NULL, NULL); return 0; }
3633 _termcap=no
3634 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3635 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3636 && _termcap=yes && break
3637 done
3639 if test "$_termcap" = yes ; then
3640 def_termcap='#define HAVE_TERMCAP 1'
3641 test $_ld_tmp && _res_comment="using $_ld_tmp"
3642 else
3643 def_termcap='#undef HAVE_TERMCAP'
3645 echores "$_termcap"
3648 echocheck "termios"
3649 def_termios='#undef HAVE_TERMIOS'
3650 def_termios_h='#undef HAVE_TERMIOS_H'
3651 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3652 if test "$_termios" = auto ; then
3653 _termios=no
3654 for _termios_header in "sys/termios.h" "termios.h"; do
3655 cat > $TMPC <<EOF
3656 #include <$_termios_header>
3657 int main(void) { return 0; }
3659 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3660 done
3663 if test "$_termios" = yes ; then
3664 def_termios='#define HAVE_TERMIOS 1'
3665 if test "$_termios_header" = "termios.h" ; then
3666 def_termios_h='#define HAVE_TERMIOS_H 1'
3667 else
3668 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3671 echores "$_termios"
3674 echocheck "shm"
3675 if test "$_shm" = auto ; then
3676 cat > $TMPC << EOF
3677 #include <sys/types.h>
3678 #include <sys/shm.h>
3679 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3681 _shm=no
3682 cc_check && _shm=yes
3684 if test "$_shm" = yes ; then
3685 def_shm='#define HAVE_SHM 1'
3686 else
3687 def_shm='#undef HAVE_SHM'
3689 echores "$_shm"
3692 echocheck "strsep()"
3693 cat > $TMPC << EOF
3694 #include <string.h>
3695 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3697 _strsep=no
3698 cc_check && _strsep=yes
3699 if test "$_strsep" = yes ; then
3700 def_strsep='#define HAVE_STRSEP 1'
3701 _need_strsep=no
3702 else
3703 def_strsep='#undef HAVE_STRSEP'
3704 _need_strsep=yes
3706 echores "$_strsep"
3709 echocheck "vsscanf()"
3710 cat > $TMPC << EOF
3711 #define _ISOC99_SOURCE
3712 #include <stdarg.h>
3713 #include <stdio.h>
3714 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3716 _vsscanf=no
3717 cc_check && _vsscanf=yes
3718 if test "$_vsscanf" = yes ; then
3719 def_vsscanf='#define HAVE_VSSCANF 1'
3720 _need_vsscanf=no
3721 else
3722 def_vsscanf='#undef HAVE_VSSCANF'
3723 _need_vsscanf=yes
3725 echores "$_vsscanf"
3728 echocheck "swab()"
3729 cat > $TMPC << EOF
3730 #define _XOPEN_SOURCE 600
3731 #include <unistd.h>
3732 int main(void) { swab(0, 0, 0); return 0; }
3734 _swab=no
3735 cc_check && _swab=yes
3736 if test "$_swab" = yes ; then
3737 def_swab='#define HAVE_SWAB 1'
3738 _need_swab=no
3739 else
3740 def_swab='#undef HAVE_SWAB'
3741 _need_swab=yes
3743 echores "$_swab"
3745 echocheck "POSIX select()"
3746 cat > $TMPC << EOF
3747 #include <stdio.h>
3748 #include <stdlib.h>
3749 #include <sys/types.h>
3750 #include <string.h>
3751 #include <sys/time.h>
3752 #include <unistd.h>
3753 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3755 _posix_select=no
3756 def_posix_select='#undef HAVE_POSIX_SELECT'
3757 #select() of kLIBC (OS/2) supports socket only
3758 ! os2 && cc_check && _posix_select=yes \
3759 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3760 echores "$_posix_select"
3763 echocheck "audio select()"
3764 if test "$_select" = no ; then
3765 def_select='#undef HAVE_AUDIO_SELECT'
3766 elif test "$_select" = yes ; then
3767 def_select='#define HAVE_AUDIO_SELECT 1'
3769 echores "$_select"
3772 echocheck "gettimeofday()"
3773 cat > $TMPC << EOF
3774 #include <stdio.h>
3775 #include <sys/time.h>
3776 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3778 _gettimeofday=no
3779 cc_check && _gettimeofday=yes
3780 if test "$_gettimeofday" = yes ; then
3781 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3782 _need_gettimeofday=no
3783 else
3784 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3785 _need_gettimeofday=yes
3787 echores "$_gettimeofday"
3790 echocheck "glob()"
3791 cat > $TMPC << EOF
3792 #include <stdio.h>
3793 #include <glob.h>
3794 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3796 _glob=no
3797 cc_check && _glob=yes
3798 if test "$_glob" = yes ; then
3799 def_glob='#define HAVE_GLOB 1'
3800 _need_glob=no
3801 else
3802 def_glob='#undef HAVE_GLOB'
3803 _need_glob=yes
3805 echores "$_glob"
3808 echocheck "setenv()"
3809 cat > $TMPC << EOF
3810 #include <stdlib.h>
3811 int main(void) { setenv("","",0); return 0; }
3813 _setenv=no
3814 cc_check && _setenv=yes
3815 if test "$_setenv" = yes ; then
3816 def_setenv='#define HAVE_SETENV 1'
3817 _need_setenv=no
3818 else
3819 def_setenv='#undef HAVE_SETENV'
3820 _need_setenv=yes
3822 echores "$_setenv"
3825 if sunos; then
3826 echocheck "sysi86()"
3827 cat > $TMPC << EOF
3828 #include <sys/sysi86.h>
3829 int main(void) { sysi86(0); return 0; }
3831 _sysi86=no
3832 cc_check && _sysi86=yes
3833 if test "$_sysi86" = yes ; then
3834 def_sysi86='#define HAVE_SYSI86 1'
3835 cat > $TMPC << EOF
3836 #include <sys/sysi86.h>
3837 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3839 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3840 else
3841 def_sysi86='#undef HAVE_SYSI86'
3843 echores "$_sysi86"
3844 fi #if sunos
3847 echocheck "sys/sysinfo.h"
3848 cat > $TMPC << EOF
3849 #include <sys/sysinfo.h>
3850 int main(void) {
3851 struct sysinfo s_info;
3852 sysinfo(&s_info);
3853 return 0;
3856 _sys_sysinfo=no
3857 cc_check && _sys_sysinfo=yes
3858 if test "$_sys_sysinfo" = yes ; then
3859 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3860 else
3861 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3863 echores "$_sys_sysinfo"
3866 if darwin; then
3868 echocheck "Mac OS X Finder Support"
3869 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3870 if test "$_macosx_finder" = yes ; then
3871 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3872 extra_ldflags="$extra_ldflags -framework Carbon"
3874 echores "$_macosx_finder"
3876 echocheck "Mac OS X Bundle file locations"
3877 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3878 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3879 if test "$_macosx_bundle" = yes ; then
3880 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3881 extra_ldflags="$extra_ldflags -framework Carbon"
3883 echores "$_macosx_bundle"
3885 echocheck "Apple Remote"
3886 if test "$_apple_remote" = auto ; then
3887 _apple_remote=no
3888 cat > $TMPC <<EOF
3889 #include <stdio.h>
3890 #include <IOKit/IOCFPlugIn.h>
3891 int main(void) {
3892 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3893 CFMutableDictionaryRef hidMatchDictionary;
3894 IOReturn ioReturnValue;
3896 // Set up a matching dictionary to search the I/O Registry by class.
3897 // name for all HID class devices
3898 hidMatchDictionary = IOServiceMatching("AppleIRController");
3900 // Now search I/O Registry for matching devices.
3901 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3902 hidMatchDictionary, &hidObjectIterator);
3904 // If search is unsuccessful, return nonzero.
3905 if (ioReturnValue != kIOReturnSuccess ||
3906 !IOIteratorIsValid(hidObjectIterator)) {
3907 return 1;
3909 return 0;
3912 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3914 if test "$_apple_remote" = yes ; then
3915 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3916 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3917 else
3918 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3920 echores "$_apple_remote"
3922 fi #if darwin
3924 if linux; then
3926 echocheck "Apple IR"
3927 if test "$_apple_ir" = auto ; then
3928 _apple_ir=no
3929 cat > $TMPC <<EOF
3930 #include <linux/types.h>
3931 #include <linux/input.h>
3932 int main(void) {
3933 struct input_event ev;
3934 struct input_id id;
3935 return 0;
3938 cc_check && _apple_ir=yes
3940 if test "$_apple_ir" = yes ; then
3941 def_apple_ir='#define CONFIG_APPLE_IR 1'
3942 else
3943 def_apple_ir='#undef CONFIG_APPLE_IR'
3945 echores "$_apple_ir"
3946 fi #if linux
3948 echocheck "pkg-config"
3949 _pkg_config=pkg-config
3950 if $($_pkg_config --version > /dev/null 2>&1); then
3951 if test "$_ld_static"; then
3952 _pkg_config="$_pkg_config --static"
3954 echores "yes"
3955 else
3956 _pkg_config=false
3957 echores "no"
3961 echocheck "Samba support (libsmbclient)"
3962 if test "$_smb" = yes; then
3963 extra_ldflags="$extra_ldflags -lsmbclient"
3965 if test "$_smb" = auto; then
3966 _smb=no
3967 cat > $TMPC << EOF
3968 #include <libsmbclient.h>
3969 int main(void) { smbc_opendir("smb://"); return 0; }
3971 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3972 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3973 _smb=yes && break
3974 done
3977 if test "$_smb" = yes; then
3978 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3979 _inputmodules="smb $_inputmodules"
3980 else
3981 def_smb="#undef CONFIG_LIBSMBCLIENT"
3982 _noinputmodules="smb $_noinputmodules"
3984 echores "$_smb"
3987 #########
3988 # VIDEO #
3989 #########
3992 echocheck "tdfxfb"
3993 if test "$_tdfxfb" = yes ; then
3994 def_tdfxfb='#define CONFIG_TDFXFB 1'
3995 _vomodules="tdfxfb $_vomodules"
3996 else
3997 def_tdfxfb='#undef CONFIG_TDFXFB'
3998 _novomodules="tdfxfb $_novomodules"
4000 echores "$_tdfxfb"
4002 echocheck "s3fb"
4003 if test "$_s3fb" = yes ; then
4004 def_s3fb='#define CONFIG_S3FB 1'
4005 _vomodules="s3fb $_vomodules"
4006 else
4007 def_s3fb='#undef CONFIG_S3FB'
4008 _novomodules="s3fb $_novomodules"
4010 echores "$_s3fb"
4012 echocheck "wii"
4013 if test "$_wii" = yes ; then
4014 def_wii='#define CONFIG_WII 1'
4015 _vomodules="wii $_vomodules"
4016 else
4017 def_wii='#undef CONFIG_WII'
4018 _novomodules="wii $_novomodules"
4020 echores "$_wii"
4022 echocheck "tdfxvid"
4023 if test "$_tdfxvid" = yes ; then
4024 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4025 _vomodules="tdfx_vid $_vomodules"
4026 else
4027 def_tdfxvid='#undef CONFIG_TDFX_VID'
4028 _novomodules="tdfx_vid $_novomodules"
4030 echores "$_tdfxvid"
4032 echocheck "xvr100"
4033 if test "$_xvr100" = auto ; then
4034 cat > $TMPC << EOF
4035 #include <unistd.h>
4036 #include <sys/fbio.h>
4037 #include <sys/visual_io.h>
4038 int main(void) {
4039 struct vis_identifier ident;
4040 struct fbgattr attr;
4041 ioctl(0, VIS_GETIDENTIFIER, &ident);
4042 ioctl(0, FBIOGATTR, &attr);
4043 return 0;
4046 _xvr100=no
4047 cc_check && _xvr100=yes
4049 if test "$_xvr100" = yes ; then
4050 def_xvr100='#define CONFIG_XVR100 1'
4051 _vomodules="xvr100 $_vomodules"
4052 else
4053 def_tdfxvid='#undef CONFIG_XVR100'
4054 _novomodules="xvr100 $_novomodules"
4056 echores "$_xvr100"
4058 echocheck "tga"
4059 if test "$_tga" = yes ; then
4060 def_tga='#define CONFIG_TGA 1'
4061 _vomodules="tga $_vomodules"
4062 else
4063 def_tga='#undef CONFIG_TGA'
4064 _novomodules="tga $_novomodules"
4066 echores "$_tga"
4069 echocheck "md5sum support"
4070 if test "$_md5sum" = yes; then
4071 def_md5sum="#define CONFIG_MD5SUM 1"
4072 _vomodules="md5sum $_vomodules"
4073 else
4074 def_md5sum="#undef CONFIG_MD5SUM"
4075 _novomodules="md5sum $_novomodules"
4077 echores "$_md5sum"
4080 echocheck "yuv4mpeg support"
4081 if test "$_yuv4mpeg" = yes; then
4082 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4083 _vomodules="yuv4mpeg $_vomodules"
4084 else
4085 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4086 _novomodules="yuv4mpeg $_novomodules"
4088 echores "$_yuv4mpeg"
4091 echocheck "bl"
4092 if test "$_bl" = yes ; then
4093 def_bl='#define CONFIG_BL 1'
4094 _vomodules="bl $_vomodules"
4095 else
4096 def_bl='#undef CONFIG_BL'
4097 _novomodules="bl $_novomodules"
4099 echores "$_bl"
4102 echocheck "DirectFB"
4103 if test "$_directfb" = auto ; then
4104 _directfb=no
4105 cat > $TMPC <<EOF
4106 #include <directfb.h>
4107 int main(void) { DirectFBInit(0, 0); return 0; }
4109 for _inc_tmp in "" -I/usr/local/include/directfb \
4110 -I/usr/include/directfb -I/usr/local/include; do
4111 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4112 extra_cflags="$extra_cflags $_inc_tmp" && break
4113 done
4116 dfb_version() {
4117 expr $1 \* 65536 + $2 \* 256 + $3
4120 if test "$_directfb" = yes; then
4121 cat > $TMPC << EOF
4122 #include <directfb_version.h>
4124 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4127 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4128 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4129 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4130 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4131 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4132 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4133 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4134 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4135 _res_comment="$_directfb_version"
4136 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4137 else
4138 def_directfb_version='#undef DIRECTFBVERSION'
4139 _directfb=no
4140 _res_comment="version >=0.9.13 required"
4142 else
4143 _directfb=no
4144 _res_comment="failed to get version"
4147 echores "$_directfb"
4149 if test "$_directfb" = yes ; then
4150 def_directfb='#define CONFIG_DIRECTFB 1'
4151 _vomodules="directfb $_vomodules"
4152 libs_mplayer="$libs_mplayer -ldirectfb"
4153 else
4154 def_directfb='#undef CONFIG_DIRECTFB'
4155 _novomodules="directfb $_novomodules"
4157 if test "$_dfbmga" = yes; then
4158 _vomodules="dfbmga $_vomodules"
4159 def_dfbmga='#define CONFIG_DFBMGA 1'
4160 else
4161 _novomodules="dfbmga $_novomodules"
4162 def_dfbmga='#undef CONFIG_DFBMGA'
4166 echocheck "X11 headers presence"
4167 _x11_headers="no"
4168 _res_comment="check if the dev(el) packages are installed"
4169 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4170 if test -f "$I/X11/Xlib.h" ; then
4171 _x11_headers="yes"
4172 _res_comment=""
4173 break
4175 done
4176 if test $_cross_compile = no; then
4177 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4178 /usr/include/X11R6 /usr/openwin/include ; do
4179 if test -f "$I/X11/Xlib.h" ; then
4180 extra_cflags="$extra_cflags -I$I"
4181 _x11_headers="yes"
4182 _res_comment="using $I"
4183 break
4185 done
4187 echores "$_x11_headers"
4190 echocheck "X11"
4191 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4192 cat > $TMPC <<EOF
4193 #include <X11/Xlib.h>
4194 #include <X11/Xutil.h>
4195 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4197 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4198 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4199 -L/usr/lib ; do
4200 if netbsd; then
4201 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4202 else
4203 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4205 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4206 && _x11=yes && break
4207 done
4209 if test "$_x11" = yes ; then
4210 def_x11='#define CONFIG_X11 1'
4211 _vomodules="x11 xover $_vomodules"
4212 else
4213 _x11=no
4214 def_x11='#undef CONFIG_X11'
4215 _novomodules="x11 $_novomodules"
4216 _res_comment="check if the dev(el) packages are installed"
4217 # disable stuff that depends on X
4218 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4220 echores "$_x11"
4222 echocheck "Xss screensaver extensions"
4223 if test "$_xss" = auto ; then
4224 cat > $TMPC << EOF
4225 #include <X11/Xlib.h>
4226 #include <X11/extensions/scrnsaver.h>
4227 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4229 _xss=no
4230 cc_check -lXss && _xss=yes
4232 if test "$_xss" = yes ; then
4233 def_xss='#define CONFIG_XSS 1'
4234 libs_mplayer="$libs_mplayer -lXss"
4235 else
4236 def_xss='#undef CONFIG_XSS'
4238 echores "$_xss"
4240 echocheck "DPMS"
4241 _xdpms3=no
4242 _xdpms4=no
4243 if test "$_x11" = yes ; then
4244 cat > $TMPC <<EOF
4245 #include <X11/Xmd.h>
4246 #include <X11/Xlib.h>
4247 #include <X11/Xutil.h>
4248 #include <X11/Xatom.h>
4249 #include <X11/extensions/dpms.h>
4250 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4252 cc_check -lXdpms && _xdpms3=yes
4253 cat > $TMPC <<EOF
4254 #include <X11/Xlib.h>
4255 #include <X11/extensions/dpms.h>
4256 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4258 cc_check -lXext && _xdpms4=yes
4260 if test "$_xdpms4" = yes ; then
4261 def_xdpms='#define CONFIG_XDPMS 1'
4262 _res_comment="using Xdpms 4"
4263 echores "yes"
4264 elif test "$_xdpms3" = yes ; then
4265 def_xdpms='#define CONFIG_XDPMS 1'
4266 libs_mplayer="$libs_mplayer -lXdpms"
4267 _res_comment="using Xdpms 3"
4268 echores "yes"
4269 else
4270 def_xdpms='#undef CONFIG_XDPMS'
4271 echores "no"
4275 echocheck "Xv"
4276 if test "$_xv" = auto ; then
4277 cat > $TMPC <<EOF
4278 #include <X11/Xlib.h>
4279 #include <X11/extensions/Xvlib.h>
4280 int main(void) {
4281 (void) XvGetPortAttribute(0, 0, 0, 0);
4282 (void) XvQueryPortAttributes(0, 0, 0);
4283 return 0; }
4285 _xv=no
4286 cc_check -lXv && _xv=yes
4289 if test "$_xv" = yes ; then
4290 def_xv='#define CONFIG_XV 1'
4291 libs_mplayer="$libs_mplayer -lXv"
4292 _vomodules="xv $_vomodules"
4293 else
4294 def_xv='#undef CONFIG_XV'
4295 _novomodules="xv $_novomodules"
4297 echores "$_xv"
4300 echocheck "XvMC"
4301 if test "$_xv" = yes && test "$_xvmc" != no ; then
4302 _xvmc=no
4303 cat > $TMPC <<EOF
4304 #include <X11/Xlib.h>
4305 #include <X11/extensions/Xvlib.h>
4306 #include <X11/extensions/XvMClib.h>
4307 int main(void) {
4308 (void) XvMCQueryExtension(0,0,0);
4309 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4310 return 0; }
4312 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4313 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4314 done
4316 if test "$_xvmc" = yes ; then
4317 def_xvmc='#define CONFIG_XVMC 1'
4318 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4319 _vomodules="xvmc $_vomodules"
4320 _res_comment="using $_xvmclib"
4321 else
4322 def_xvmc='#define CONFIG_XVMC 0'
4323 _novomodules="xvmc $_novomodules"
4325 echores "$_xvmc"
4328 echocheck "VDPAU"
4329 if test "$_vdpau" = auto ; then
4330 _vdpau=no
4331 if test "$_dl" = yes ; then
4332 cat > $TMPC <<EOF
4333 #include <vdpau/vdpau_x11.h>
4334 int main(void) {
4335 (void) vdp_device_create_x11(0, 0, 0, 0);
4336 return VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE;}
4338 cc_check -lvdpau && _vdpau=yes
4341 if test "$_vdpau" = yes ; then
4342 def_vdpau='#define CONFIG_VDPAU 1'
4343 libs_mplayer="$libs_mplayer -lvdpau"
4344 _vomodules="vdpau $_vomodules"
4345 else
4346 def_vdpau='#define CONFIG_VDPAU 0'
4347 _novomodules="vdpau $_novomodules"
4349 echores "$_vdpau"
4352 echocheck "Xinerama"
4353 if test "$_xinerama" = auto ; then
4354 cat > $TMPC <<EOF
4355 #include <X11/Xlib.h>
4356 #include <X11/extensions/Xinerama.h>
4357 int main(void) { (void) XineramaIsActive(0); return 0; }
4359 _xinerama=no
4360 cc_check -lXinerama && _xinerama=yes
4363 if test "$_xinerama" = yes ; then
4364 def_xinerama='#define CONFIG_XINERAMA 1'
4365 libs_mplayer="$libs_mplayer -lXinerama"
4366 else
4367 def_xinerama='#undef CONFIG_XINERAMA'
4369 echores "$_xinerama"
4372 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4373 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4374 # named 'X extensions' or something similar.
4375 # This check may be useful for future mplayer versions (to change resolution)
4376 # If you run into problems, remove '-lXxf86vm'.
4377 echocheck "Xxf86vm"
4378 if test "$_vm" = auto ; then
4379 cat > $TMPC <<EOF
4380 #include <X11/Xlib.h>
4381 #include <X11/extensions/xf86vmode.h>
4382 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4384 _vm=no
4385 cc_check -lXxf86vm && _vm=yes
4387 if test "$_vm" = yes ; then
4388 def_vm='#define CONFIG_XF86VM 1'
4389 libs_mplayer="$libs_mplayer -lXxf86vm"
4390 else
4391 def_vm='#undef CONFIG_XF86VM'
4393 echores "$_vm"
4395 # Check for the presence of special keycodes, like audio control buttons
4396 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4397 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4398 # have these new keycodes.
4399 echocheck "XF86keysym"
4400 if test "$_xf86keysym" = auto; then
4401 _xf86keysym=no
4402 cat > $TMPC <<EOF
4403 #include <X11/Xlib.h>
4404 #include <X11/XF86keysym.h>
4405 int main(void) { return XF86XK_AudioPause; }
4407 cc_check && _xf86keysym=yes
4409 if test "$_xf86keysym" = yes ; then
4410 def_xf86keysym='#define CONFIG_XF86XK 1'
4411 else
4412 def_xf86keysym='#undef CONFIG_XF86XK'
4414 echores "$_xf86keysym"
4416 echocheck "DGA"
4417 if test "$_dga2" = auto && test "$_x11" = yes ; then
4418 cat > $TMPC << EOF
4419 #include <X11/Xlib.h>
4420 #include <X11/extensions/xf86dga.h>
4421 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4423 _dga2=no
4424 cc_check -lXxf86dga && _dga2=yes
4426 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4427 cat > $TMPC << EOF
4428 #include <X11/Xlib.h>
4429 #include <X11/extensions/xf86dga.h>
4430 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4432 _dga1=no
4433 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4436 _dga=no
4437 def_dga='#undef CONFIG_DGA'
4438 def_dga1='#undef CONFIG_DGA1'
4439 def_dga2='#undef CONFIG_DGA2'
4440 if test "$_dga1" = yes ; then
4441 _dga=yes
4442 def_dga1='#define CONFIG_DGA1 1'
4443 _res_comment="using DGA 1.0"
4444 elif test "$_dga2" = yes ; then
4445 _dga=yes
4446 def_dga2='#define CONFIG_DGA2 1'
4447 _res_comment="using DGA 2.0"
4449 if test "$_dga" = yes ; then
4450 def_dga='#define CONFIG_DGA 1'
4451 libs_mplayer="$libs_mplayer -lXxf86dga"
4452 _vomodules="dga $_vomodules"
4453 else
4454 _novomodules="dga $_novomodules"
4456 echores "$_dga"
4459 echocheck "3dfx"
4460 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4461 def_3dfx='#define CONFIG_3DFX 1'
4462 _vomodules="3dfx $_vomodules"
4463 else
4464 def_3dfx='#undef CONFIG_3DFX'
4465 _novomodules="3dfx $_novomodules"
4467 echores "$_3dfx"
4470 echocheck "VIDIX"
4471 def_vidix='#undef CONFIG_VIDIX'
4472 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4473 _vidix_drv_cyberblade=no
4474 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4475 _vidix_drv_ivtv=no
4476 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4477 _vidix_drv_mach64=no
4478 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4479 _vidix_drv_mga=no
4480 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4481 _vidix_drv_mga_crtc2=no
4482 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4483 _vidix_drv_nvidia=no
4484 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4485 _vidix_drv_pm2=no
4486 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4487 _vidix_drv_pm3=no
4488 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4489 _vidix_drv_radeon=no
4490 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4491 _vidix_drv_rage128=no
4492 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4493 _vidix_drv_s3=no
4494 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4495 _vidix_drv_sh_veu=no
4496 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4497 _vidix_drv_sis=no
4498 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4499 _vidix_drv_unichrome=no
4500 if test "$_vidix" = auto ; then
4501 _vidix=no
4502 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4503 && _vidix=yes
4504 x86_64 && win32 && _vidix=no
4505 (ppc || alpha) && linux && _vidix=yes
4507 echores "$_vidix"
4509 if test "$_vidix" = yes ; then
4510 def_vidix='#define CONFIG_VIDIX 1'
4511 _vomodules="cvidix $_vomodules"
4512 # FIXME: ivtv driver temporarily disabled until we have a proper test
4513 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4514 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4516 # some vidix drivers are architecture and os specific, discard them elsewhere
4517 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4518 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4520 for driver in $_vidix_drivers ; do
4521 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4522 eval _vidix_drv_${driver}=yes
4523 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4524 done
4526 echocheck "VIDIX PCI device name database"
4527 echores "$_vidix_pcidb"
4528 if test "$_vidix_pcidb" = yes ; then
4529 _vidix_pcidb_val=1
4530 else
4531 _vidix_pcidb_val=0
4534 echocheck "VIDIX dhahelper support"
4535 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4536 echores "$_dhahelper"
4538 echocheck "VIDIX svgalib_helper support"
4539 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4540 echores "$_svgalib_helper"
4542 else
4543 _novomodules="cvidix $_novomodules"
4546 if test "$_vidix" = yes && win32; then
4547 winvidix=yes
4548 _vomodules="winvidix $_vomodules"
4549 libs_mplayer="$libs_mplayer -lgdi32"
4550 else
4551 _novomodules="winvidix $_novomodules"
4553 if test "$_vidix" = yes && test "$_x11" = yes; then
4554 xvidix=yes
4555 _vomodules="xvidix $_vomodules"
4556 else
4557 _novomodules="xvidix $_novomodules"
4560 echocheck "GGI"
4561 if test "$_ggi" = auto ; then
4562 cat > $TMPC << EOF
4563 #include <ggi/ggi.h>
4564 int main(void) { ggiInit(); return 0; }
4566 _ggi=no
4567 cc_check -lggi && _ggi=yes
4569 if test "$_ggi" = yes ; then
4570 def_ggi='#define CONFIG_GGI 1'
4571 libs_mplayer="$libs_mplayer -lggi"
4572 _vomodules="ggi $_vomodules"
4573 else
4574 def_ggi='#undef CONFIG_GGI'
4575 _novomodules="ggi $_novomodules"
4577 echores "$_ggi"
4579 echocheck "GGI extension: libggiwmh"
4580 if test "$_ggiwmh" = auto ; then
4581 _ggiwmh=no
4582 cat > $TMPC << EOF
4583 #include <ggi/ggi.h>
4584 #include <ggi/wmh.h>
4585 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4587 cc_check -lggi -lggiwmh && _ggiwmh=yes
4589 # needed to get right output on obscure combination
4590 # like --disable-ggi --enable-ggiwmh
4591 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4592 def_ggiwmh='#define CONFIG_GGIWMH 1'
4593 libs_mplayer="$libs_mplayer -lggiwmh"
4594 else
4595 _ggiwmh=no
4596 def_ggiwmh='#undef CONFIG_GGIWMH'
4598 echores "$_ggiwmh"
4601 echocheck "AA"
4602 if test "$_aa" = auto ; then
4603 cat > $TMPC << EOF
4604 #include <aalib.h>
4605 extern struct aa_hardware_params aa_defparams;
4606 extern struct aa_renderparams aa_defrenderparams;
4607 int main(void) {
4608 aa_context *c;
4609 aa_renderparams *p;
4610 (void) aa_init(0, 0, 0);
4611 c = aa_autoinit(&aa_defparams);
4612 p = aa_getrenderparams();
4613 aa_autoinitkbd(c,0);
4614 return 0; }
4616 _aa=no
4617 for _ld_tmp in "-laa" ; do
4618 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4619 done
4621 if test "$_aa" = yes ; then
4622 def_aa='#define CONFIG_AA 1'
4623 if cygwin ; then
4624 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4626 _vomodules="aa $_vomodules"
4627 else
4628 def_aa='#undef CONFIG_AA'
4629 _novomodules="aa $_novomodules"
4631 echores "$_aa"
4634 echocheck "CACA"
4635 if test "$_caca" = auto ; then
4636 _caca=no
4637 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4638 cat > $TMPC << EOF
4639 #include <caca.h>
4640 #ifdef CACA_API_VERSION_1
4641 #include <caca0.h>
4642 #endif
4643 int main(void) { (void) caca_init(); return 0; }
4645 cc_check $(caca-config --libs) && _caca=yes
4648 if test "$_caca" = yes ; then
4649 def_caca='#define CONFIG_CACA 1'
4650 extra_cflags="$extra_cflags $(caca-config --cflags)"
4651 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4652 _vomodules="caca $_vomodules"
4653 else
4654 def_caca='#undef CONFIG_CACA'
4655 _novomodules="caca $_novomodules"
4657 echores "$_caca"
4660 echocheck "SVGAlib"
4661 if test "$_svga" = auto ; then
4662 cat > $TMPC << EOF
4663 #include <vga.h>
4664 int main(void) { return 0; }
4666 _svga=no
4667 cc_check -lvga $_ld_lm && _svga=yes
4669 if test "$_svga" = yes ; then
4670 def_svga='#define CONFIG_SVGALIB 1'
4671 libs_mplayer="$libs_mplayer -lvga"
4672 _vomodules="svga $_vomodules"
4673 else
4674 def_svga='#undef CONFIG_SVGALIB'
4675 _novomodules="svga $_novomodules"
4677 echores "$_svga"
4680 echocheck "FBDev"
4681 if test "$_fbdev" = auto ; then
4682 _fbdev=no
4683 linux && _fbdev=yes
4685 if test "$_fbdev" = yes ; then
4686 def_fbdev='#define CONFIG_FBDEV 1'
4687 _vomodules="fbdev $_vomodules"
4688 else
4689 def_fbdev='#undef CONFIG_FBDEV'
4690 _novomodules="fbdev $_novomodules"
4692 echores "$_fbdev"
4696 echocheck "DVB"
4697 if test "$_dvb" = auto ; then
4698 _dvb=no
4699 cat >$TMPC << EOF
4700 #include <poll.h>
4701 #include <sys/ioctl.h>
4702 #include <stdio.h>
4703 #include <time.h>
4704 #include <unistd.h>
4705 #include <ost/dmx.h>
4706 #include <ost/frontend.h>
4707 #include <ost/sec.h>
4708 #include <ost/video.h>
4709 #include <ost/audio.h>
4710 int main(void) {return 0;}
4712 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4713 cc_check $_inc_tmp && _dvb=yes && \
4714 extra_cflags="$extra_cflags $_inc_tmp" && break
4715 done
4717 echores "$_dvb"
4718 if test "$_dvb" = yes ; then
4719 def_dvb='#define CONFIG_DVB 1'
4720 def_dvbin='#define CONFIG_DVBIN 1'
4721 _aomodules="mpegpes(dvb) $_aomodules"
4722 _vomodules="mpegpes(dvb) $_vomodules"
4725 echocheck "DVB HEAD"
4726 if test "$_dvbhead" = auto ; then
4727 _dvbhead=no
4729 cat >$TMPC << EOF
4730 #include <poll.h>
4731 #include <sys/ioctl.h>
4732 #include <stdio.h>
4733 #include <time.h>
4734 #include <unistd.h>
4735 #include <linux/dvb/dmx.h>
4736 #include <linux/dvb/frontend.h>
4737 #include <linux/dvb/video.h>
4738 #include <linux/dvb/audio.h>
4739 int main(void) {return 0;}
4741 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4742 cc_check $_inc_tmp && _dvbhead=yes && \
4743 extra_cflags="$extra_cflags $_inc_tmp" && break
4744 done
4746 echores "$_dvbhead"
4747 if test "$_dvbhead" = yes ; then
4748 def_dvb='#define CONFIG_DVB 1'
4749 def_dvb_head='#define CONFIG_DVB_HEAD 1'
4750 def_dvbin='#define CONFIG_DVBIN 1'
4751 _aomodules="mpegpes(dvb) $_aomodules"
4752 _vomodules="mpegpes(dvb) $_vomodules"
4755 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4756 def_dvb='#undef CONFIG_DVB'
4757 def_dvb_head='#undef CONFIG_DVB_HEAD'
4758 def_dvbin='#undef CONFIG_DVBIN '
4759 _aomodules="mpegpes(file) $_aomodules"
4760 _vomodules="mpegpes(file) $_vomodules"
4763 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4764 _dvbin=yes
4765 _inputmodules="dvb $_inputmodules"
4766 else
4767 _dvbin=no
4768 _noinputmodules="dvb $_noinputmodules"
4772 if darwin; then
4774 echocheck "QuickTime"
4775 if test "$quicktime" = auto ; then
4776 cat > $TMPC <<EOF
4777 #include <QuickTime/QuickTime.h>
4778 int main(void) {
4779 ImageDescription *desc;
4780 EnterMovies();
4781 ExitMovies();
4782 return 0;
4785 quicktime=no
4786 cc_check -framework QuickTime && quicktime=yes
4788 if test "$quicktime" = yes ; then
4789 extra_ldflags="$extra_ldflags -framework QuickTime"
4790 def_quicktime='#define CONFIG_QUICKTIME 1'
4791 else
4792 def_quicktime='#undef CONFIG_QUICKTIME'
4793 _quartz=no
4795 echores $quicktime
4797 echocheck "Quartz"
4798 if test "$_quartz" = auto ; then
4799 cat > $TMPC <<EOF
4800 #include <Carbon/Carbon.h>
4801 int main(void) {
4802 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4803 return 0;
4806 _quartz=no
4807 cc_check -framework Carbon && _quartz=yes
4809 if test "$_quartz" = yes ; then
4810 libs_mplayer="$libs_mplayer -framework Carbon"
4811 def_quartz='#define CONFIG_QUARTZ 1'
4812 _vomodules="quartz $_vomodules"
4813 else
4814 def_quartz='#undef CONFIG_QUARTZ'
4815 _novomodules="quartz $_novomodules"
4817 echores $_quartz
4819 echocheck "CoreVideo"
4820 if test "$_corevideo" = auto ; then
4821 cat > $TMPC <<EOF
4822 #include <Carbon/Carbon.h>
4823 #include <CoreServices/CoreServices.h>
4824 #include <OpenGL/OpenGL.h>
4825 #include <QuartzCore/CoreVideo.h>
4826 int main(void) { return 0; }
4828 _corevideo=no
4829 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4831 if test "$_corevideo" = yes ; then
4832 _vomodules="corevideo $_vomodules"
4833 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4834 def_corevideo='#define CONFIG_COREVIDEO 1'
4835 else
4836 _novomodules="corevideo $_novomodules"
4837 def_corevideo='#undef CONFIG_COREVIDEO'
4839 echores "$_corevideo"
4841 fi #if darwin
4844 # make sure this stays below CoreVideo to avoid issues due to namespace
4845 # conflicts between -lGL and -framework OpenGL
4846 echocheck "OpenGL"
4847 #Note: this test is run even with --enable-gl since we autodetect linker flags
4848 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4849 cat > $TMPC << EOF
4850 #ifdef GL_WIN32
4851 #include <windows.h>
4852 #include <GL/gl.h>
4853 #else
4854 #include <GL/gl.h>
4855 #include <X11/Xlib.h>
4856 #include <GL/glx.h>
4857 #endif
4858 int main(void) {
4859 #ifdef GL_WIN32
4860 HDC dc;
4861 wglCreateContext(dc);
4862 #else
4863 glXCreateContext(NULL, NULL, NULL, True);
4864 #endif
4865 glFinish();
4866 return 0;
4869 _gl=no
4870 for _ld_tmp in -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4871 if cc_check $_ld_tmp $_ld_lm ; then
4872 _gl=yes
4873 _gl_x11=yes
4874 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4875 break
4877 done
4878 if cc_check -DGL_WIN32 -lopengl32 ; then
4879 _gl=yes
4880 _gl_win32=yes
4881 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4883 else
4884 _gl=no
4886 if test "$_gl" = yes ; then
4887 def_gl='#define CONFIG_GL 1'
4888 _res_comment="backends:"
4889 if test "$_gl_win32" = yes ; then
4890 def_gl_win32='#define CONFIG_GL_WIN32 1'
4891 _res_comment="$_res_comment win32"
4893 if test "$_gl_x11" = yes ; then
4894 def_gl_x11='#define CONFIG_GL_X11 1'
4895 _res_comment="$_res_comment x11"
4897 _vomodules="opengl $_vomodules"
4898 else
4899 def_gl='#undef CONFIG_GL'
4900 def_gl_win32='#undef CONFIG_GL_WIN32'
4901 def_gl_x11='#undef CONFIG_GL_X11'
4902 _novomodules="opengl $_novomodules"
4904 echores "$_gl"
4907 echocheck "MatrixView"
4908 if test "$_gl" = no ; then
4909 matrixview=no
4911 if test "$matrixview" = yes ; then
4912 _vomodules="matrixview $_vomodules"
4913 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4914 else
4915 _novomodules="matrixview $_novomodules"
4916 def_matrixview='#undef CONFIG_MATRIXVIEW'
4918 echores "$matrixview"
4921 echocheck "PNG support"
4922 if test "$_png" = auto ; then
4923 _png=no
4924 if irix ; then
4925 # Don't check for -lpng on irix since it has its own libpng
4926 # incompatible with the GNU libpng
4927 _res_comment="disabled on irix (not GNU libpng)"
4928 else
4929 cat > $TMPC << EOF
4930 #include <png.h>
4931 #include <string.h>
4932 int main(void) {
4933 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4934 printf("libpng: %s\n", png_libpng_ver);
4935 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4938 cc_check -lpng -lz $_ld_lm && _png=yes
4941 echores "$_png"
4942 if test "$_png" = yes ; then
4943 def_png='#define CONFIG_PNG 1'
4944 extra_ldflags="$extra_ldflags -lpng -lz"
4945 else
4946 def_png='#undef CONFIG_PNG'
4949 echocheck "MNG support"
4950 if test "$_mng" = auto ; then
4951 _mng=no
4952 cat > $TMPC << EOF
4953 #include <libmng.h>
4954 int main(void) {
4955 const char * p_ver = mng_version_text();
4956 return !p_ver || p_ver[0] == 0;
4959 if cc_check -lmng -lz $_ld_lm ; then
4960 _mng=yes
4963 echores "$_mng"
4964 if test "$_mng" = yes ; then
4965 def_mng='#define CONFIG_MNG 1'
4966 extra_ldflags="$extra_ldflags -lmng -lz"
4967 else
4968 def_mng='#undef CONFIG_MNG'
4971 echocheck "JPEG support"
4972 if test "$_jpeg" = auto ; then
4973 _jpeg=no
4974 cat > $TMPC << EOF
4975 #include <stdio.h>
4976 #include <stdlib.h>
4977 #include <setjmp.h>
4978 #include <string.h>
4979 #include <jpeglib.h>
4980 int main(void) { return 0; }
4982 cc_check -ljpeg $_ld_lm && _jpeg=yes
4984 echores "$_jpeg"
4986 if test "$_jpeg" = yes ; then
4987 def_jpeg='#define CONFIG_JPEG 1'
4988 _vomodules="jpeg $_vomodules"
4989 extra_ldflags="$extra_ldflags -ljpeg"
4990 else
4991 def_jpeg='#undef CONFIG_JPEG'
4992 _novomodules="jpeg $_novomodules"
4997 echocheck "PNM support"
4998 if test "$_pnm" = yes; then
4999 def_pnm="#define CONFIG_PNM 1"
5000 _vomodules="pnm $_vomodules"
5001 else
5002 def_pnm="#undef CONFIG_PNM"
5003 _novomodules="pnm $_novomodules"
5005 echores "$_pnm"
5009 echocheck "GIF support"
5010 # This is to appease people who want to force gif support.
5011 # If it is forced to yes, then we still do checks to determine
5012 # which gif library to use.
5013 if test "$_gif" = yes ; then
5014 _force_gif=yes
5015 _gif=auto
5018 if test "$_gif" = auto ; then
5019 _gif=no
5020 cat > $TMPC << EOF
5021 #include <gif_lib.h>
5022 int main(void) { return 0; }
5024 for _ld_gif in "-lungif" "-lgif" ; do
5025 cc_check $_ld_gif && _gif=yes && break
5026 done
5029 # If no library was found, and the user wants support forced,
5030 # then we force it on with libgif, as this is the safest
5031 # assumption IMHO. (libungif & libregif both create symbolic
5032 # links to libgif. We also assume that no x11 support is needed,
5033 # because if you are forcing this, then you _should_ know what
5034 # you are doing. [ Besides, package maintainers should never
5035 # have compiled x11 deps into libungif in the first place. ] )
5036 # </rant>
5037 # --Joey
5038 if test "$_force_gif" = yes && test "$_gif" = no ; then
5039 _gif=yes
5040 _ld_gif="-lgif"
5043 if test "$_gif" = yes ; then
5044 def_gif='#define CONFIG_GIF 1'
5045 _codecmodules="gif $_codecmodules"
5046 _vomodules="gif89a $_vomodules"
5047 _res_comment="old version, some encoding functions disabled"
5048 def_gif_4='#undef CONFIG_GIF_4'
5049 extra_ldflags="$extra_ldflags $_ld_gif"
5051 cat > $TMPC << EOF
5052 #include <signal.h>
5053 #include <gif_lib.h>
5054 void catch() { exit(1); }
5055 int main(void) {
5056 signal(SIGSEGV, catch); // catch segfault
5057 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
5058 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
5059 return 0;
5062 if cc_check "$_ld_gif" ; then
5063 def_gif_4='#define CONFIG_GIF_4 1'
5064 _res_comment=""
5066 else
5067 def_gif='#undef CONFIG_GIF'
5068 def_gif_4='#undef CONFIG_GIF_4'
5069 _novomodules="gif89a $_novomodules"
5070 _nocodecmodules="gif $_nocodecmodules"
5072 echores "$_gif"
5075 case "$_gif" in yes*)
5076 echocheck "broken giflib workaround"
5077 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5079 cat > $TMPC << EOF
5080 #include <gif_lib.h>
5081 int main(void) {
5082 GifFileType gif;
5083 printf("UserData is at address %p\n", gif.UserData);
5084 return 0;
5087 if cc_check "$_ld_gif" ; then
5088 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5089 echores "disabled"
5090 else
5091 echores "enabled"
5094 esac
5097 echocheck "VESA support"
5098 if test "$_vesa" = auto ; then
5099 cat > $TMPC << EOF
5100 #include <vbe.h>
5101 int main(void) { vbeVersion(); return 0; }
5103 _vesa=no
5104 cc_check -lvbe -llrmi && _vesa=yes
5106 if test "$_vesa" = yes ; then
5107 def_vesa='#define CONFIG_VESA 1'
5108 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5109 _vomodules="vesa $_vomodules"
5110 else
5111 def_vesa='#undef CONFIG_VESA'
5112 _novomodules="vesa $_novomodules"
5114 echores "$_vesa"
5116 #################
5117 # VIDEO + AUDIO #
5118 #################
5121 echocheck "SDL"
5122 _inc_tmp=""
5123 _ld_tmp=""
5124 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5125 if test -z "$_sdlconfig" ; then
5126 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5127 _sdlconfig="sdl-config"
5128 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5129 _sdlconfig="sdl11-config"
5130 else
5131 _sdlconfig=false
5134 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5135 cat > $TMPC << EOF
5136 #ifdef CONFIG_SDL_SDL_H
5137 #include <SDL/SDL.h>
5138 #else
5139 #include <SDL.h>
5140 #endif
5141 #ifndef __APPLE__
5142 // we allow SDL hacking our main() only on OSX
5143 #undef main
5144 #endif
5145 int main(int argc, char *argv[]) {
5146 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5147 return 0;
5150 _sdl=no
5151 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5152 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5153 _sdl=yes
5154 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5155 break
5157 done
5158 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5159 _res_comment="using $_sdlconfig"
5160 if cygwin ; then
5161 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5162 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5163 elif mingw32 ; then
5164 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5165 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5166 else
5167 _inc_tmp="$($_sdlconfig --cflags)"
5168 _ld_tmp="$($_sdlconfig --libs)"
5170 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5171 _sdlversion=$($_sdlconfig --version | sed 's/[^0-9]//g')
5172 if test "$_sdlversion" -gt 116 ; then
5173 if test "$_sdlversion" -lt 121 ; then
5174 def_sdlbuggy='#define BUGGY_SDL'
5175 else
5176 def_sdlbuggy='#undef BUGGY_SDL'
5178 _sdl=yes
5183 if test "$_sdl" = yes ; then
5184 def_sdl='#define CONFIG_SDL 1'
5185 extra_cflags="$extra_cflags $_inc_tmp"
5186 libs_mplayer="$libs_mplayer $_ld_tmp"
5187 _vomodules="sdl $_vomodules"
5188 _aomodules="sdl $_aomodules"
5189 else
5190 def_sdl='#undef CONFIG_SDL'
5191 _novomodules="sdl $_novomodules"
5192 _noaomodules="sdl $_noaomodules"
5194 echores "$_sdl"
5197 if os2 ; then
5198 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5199 if test "$_kva" = auto; then
5200 cat > $TMPC << EOF
5201 #include <os2.h>
5202 #include <kva.h>
5203 int main( void ) { return 0; }
5205 _kva=no;
5206 cc_check -lkva && _kva=yes
5208 if test "$_kva" = yes ; then
5209 def_kva='#define CONFIG_KVA 1'
5210 libs_mplayer="$libs_mplayer -lkva"
5211 _vomodules="kva $_vomodules"
5212 else
5213 def_kva='#undef CONFIG_KVA'
5214 _novomodules="kva $_novomodules"
5216 echores "$_kva"
5217 fi #if os2
5220 if win32; then
5222 echocheck "Windows waveout"
5223 if test "$_win32waveout" = auto ; then
5224 cat > $TMPC << EOF
5225 #include <windows.h>
5226 #include <mmsystem.h>
5227 int main(void) { return 0; }
5229 _win32waveout=no
5230 cc_check -lwinmm && _win32waveout=yes
5232 if test "$_win32waveout" = yes ; then
5233 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5234 libs_mplayer="$libs_mplayer -lwinmm"
5235 _aomodules="win32 $_aomodules"
5236 else
5237 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5238 _noaomodules="win32 $_noaomodules"
5240 echores "$_win32waveout"
5242 echocheck "Direct3D"
5243 if test "$_direct3d" = auto ; then
5244 cat > $TMPC << EOF
5245 #include <windows.h>
5246 #include <d3d9.h>
5247 int main(void) { return 0; }
5249 _direct3d=no
5250 cc_check && _direct3d=yes
5252 if test "$_direct3d" = yes ; then
5253 def_direct3d='#define CONFIG_DIRECT3D 1'
5254 _vomodules="direct3d $_vomodules"
5255 else
5256 def_direct3d='#undef CONFIG_DIRECT3D'
5257 _novomodules="direct3d $_novomodules"
5259 echores "$_direct3d"
5261 echocheck "Directx"
5262 if test "$_directx" = auto ; then
5263 cat > $TMPC << EOF
5264 #include <windows.h>
5265 #include <ddraw.h>
5266 #include <dsound.h>
5267 int main(void) { return 0; }
5269 _directx=no
5270 cc_check -lgdi32 && _directx=yes
5272 if test "$_directx" = yes ; then
5273 def_directx='#define CONFIG_DIRECTX 1'
5274 libs_mplayer="$libs_mplayer -lgdi32"
5275 _vomodules="directx $_vomodules"
5276 _aomodules="dsound $_aomodules"
5277 else
5278 def_directx='#undef CONFIG_DIRECTX'
5279 _novomodules="directx $_novomodules"
5280 _noaomodules="dsound $_noaomodules"
5282 echores "$_directx"
5284 fi #if win32; then
5287 echocheck "DXR2"
5288 if test "$_dxr2" = auto; then
5289 _dxr2=no
5290 cat > $TMPC << EOF
5291 #include <dxr2ioctl.h>
5292 int main(void) { return 0; }
5294 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5295 cc_check $_inc_tmp && _dxr2=yes && \
5296 extra_cflags="$extra_cflags $_inc_tmp" && break
5297 done
5299 if test "$_dxr2" = yes; then
5300 def_dxr2='#define CONFIG_DXR2 1'
5301 _aomodules="dxr2 $_aomodules"
5302 _vomodules="dxr2 $_vomodules"
5303 else
5304 def_dxr2='#undef CONFIG_DXR2'
5305 _noaomodules="dxr2 $_noaomodules"
5306 _novomodules="dxr2 $_novomodules"
5308 echores "$_dxr2"
5310 echocheck "DXR3/H+"
5311 if test "$_dxr3" = auto ; then
5312 cat > $TMPC << EOF
5313 #include <linux/em8300.h>
5314 int main(void) { return 0; }
5316 _dxr3=no
5317 cc_check && _dxr3=yes
5319 if test "$_dxr3" = yes ; then
5320 def_dxr3='#define CONFIG_DXR3 1'
5321 _vomodules="dxr3 $_vomodules"
5322 else
5323 def_dxr3='#undef CONFIG_DXR3'
5324 _novomodules="dxr3 $_novomodules"
5326 echores "$_dxr3"
5329 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5330 if test "$_ivtv" = auto ; then
5331 cat > $TMPC << EOF
5332 #include <stdlib.h>
5333 #include <inttypes.h>
5334 #include <linux/types.h>
5335 #include <linux/videodev2.h>
5336 #include <linux/ivtv.h>
5337 #include <sys/ioctl.h>
5338 int main(void) {
5339 struct ivtv_cfg_stop_decode sd;
5340 struct ivtv_cfg_start_decode sd1;
5341 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5342 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5343 return 0; }
5345 _ivtv=no
5346 cc_check && _ivtv=yes
5348 if test "$_ivtv" = yes ; then
5349 def_ivtv='#define CONFIG_IVTV 1'
5350 _vomodules="ivtv $_vomodules"
5351 _aomodules="ivtv $_aomodules"
5352 else
5353 def_ivtv='#undef CONFIG_IVTV'
5354 _novomodules="ivtv $_novomodules"
5355 _noaomodules="ivtv $_noaomodules"
5357 echores "$_ivtv"
5360 echocheck "V4L2 MPEG Decoder"
5361 if test "$_v4l2" = auto ; then
5362 cat > $TMPC << EOF
5363 #include <stdlib.h>
5364 #include <inttypes.h>
5365 #include <linux/types.h>
5366 #include <linux/videodev2.h>
5367 #include <linux/version.h>
5368 int main(void) {
5369 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5370 #error kernel headers too old, need 2.6.22
5371 #endif
5372 struct v4l2_ext_controls ctrls;
5373 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5374 return 0;
5377 _v4l2=no
5378 cc_check && _v4l2=yes
5380 if test "$_v4l2" = yes ; then
5381 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5382 _vomodules="v4l2 $_vomodules"
5383 _aomodules="v4l2 $_aomodules"
5384 else
5385 def_v4l2='#undef CONFIG_V4L2_DECODER'
5386 _novomodules="v4l2 $_novomodules"
5387 _noaomodules="v4l2 $_noaomodules"
5389 echores "$_v4l2"
5393 #########
5394 # AUDIO #
5395 #########
5398 echocheck "OSS Audio"
5399 if test "$_ossaudio" = auto ; then
5400 cat > $TMPC << EOF
5401 #include <sys/ioctl.h>
5402 #include <$_soundcard_header>
5403 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5405 _ossaudio=no
5406 cc_check && _ossaudio=yes
5408 if test "$_ossaudio" = yes ; then
5409 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5410 _aomodules="oss $_aomodules"
5411 if test "$_linux_devfs" = yes; then
5412 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5413 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5414 else
5415 cat > $TMPC << EOF
5416 #include <sys/ioctl.h>
5417 #include <$_soundcard_header>
5418 #ifdef OPEN_SOUND_SYSTEM
5419 int main(void) { return 0; }
5420 #else
5421 #error Not the real thing
5422 #endif
5424 _real_ossaudio=no
5425 cc_check && _real_ossaudio=yes
5426 if test "$_real_ossaudio" = yes; then
5427 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5428 # Check for OSS4 headers (override default headers)
5429 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5430 if test -f /etc/oss.conf; then
5431 . /etc/oss.conf
5432 _ossinc="$OSSLIBDIR/include"
5433 if test -f "$_ossinc/sys/soundcard.h"; then
5434 extra_cflags="-I$_ossinc $extra_cflags"
5437 elif netbsd || openbsd ; then
5438 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5439 extra_ldflags="$extra_ldflags -lossaudio"
5440 else
5441 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5443 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5445 else
5446 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5447 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5448 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5449 _noaomodules="oss $_noaomodules"
5451 echores "$_ossaudio"
5454 echocheck "aRts"
5455 if test "$_arts" = auto ; then
5456 _arts=no
5457 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5459 cat > $TMPC << EOF
5460 #include <artsc.h>
5461 int main(void) { return 0; }
5463 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5468 if test "$_arts" = yes ; then
5469 def_arts='#define CONFIG_ARTS 1'
5470 _aomodules="arts $_aomodules"
5471 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5472 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5473 else
5474 _noaomodules="arts $_noaomodules"
5476 echores "$_arts"
5479 echocheck "EsounD"
5480 if test "$_esd" = auto ; then
5481 _esd=no
5482 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5484 cat > $TMPC << EOF
5485 #include <esd.h>
5486 int main(void) { int fd = esd_open_sound("test"); return fd; }
5488 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5492 echores "$_esd"
5494 if test "$_esd" = yes ; then
5495 def_esd='#define CONFIG_ESD 1'
5496 _aomodules="esd $_aomodules"
5497 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5498 extra_cflags="$extra_cflags $(esd-config --cflags)"
5500 echocheck "esd_get_latency()"
5501 cat > $TMPC << EOF
5502 #include <esd.h>
5503 int main(void) { return esd_get_latency(0); }
5505 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5506 echores "$_esd_latency"
5507 else
5508 def_esd='#undef CONFIG_ESD'
5509 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5510 _noaomodules="esd $_noaomodules"
5514 echocheck "NAS"
5515 if test "$_nas" = auto ; then
5516 cat > $TMPC << EOF
5517 #include <audio/audiolib.h>
5518 int main(void) { return 0; }
5520 _nas=no
5521 cc_check $_ld_lm -laudio -lXt && _nas=yes
5523 if test "$_nas" = yes ; then
5524 def_nas='#define CONFIG_NAS 1'
5525 libs_mplayer="$libs_mplayer -laudio -lXt"
5526 _aomodules="nas $_aomodules"
5527 else
5528 _noaomodules="nas $_noaomodules"
5529 def_nas='#undef CONFIG_NAS'
5531 echores "$_nas"
5534 echocheck "pulse"
5535 if test "$_pulse" = auto ; then
5536 _pulse=no
5537 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5539 cat > $TMPC << EOF
5540 #include <pulse/pulseaudio.h>
5541 int main(void) { return 0; }
5543 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5547 echores "$_pulse"
5549 if test "$_pulse" = yes ; then
5550 def_pulse='#define CONFIG_PULSE 1'
5551 _aomodules="pulse $_aomodules"
5552 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5553 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5554 else
5555 def_pulse='#undef CONFIG_PULSE'
5556 _noaomodules="pulse $_noaomodules"
5560 echocheck "JACK"
5561 if test "$_jack" = auto ; then
5562 _jack=yes
5564 cat > $TMPC << EOF
5565 #include <jack/jack.h>
5566 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5568 if cc_check -ljack ; then
5569 libs_mplayer="$libs_mplayer -ljack"
5570 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5571 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5572 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5573 else
5574 _jack=no
5578 if test "$_jack" = yes ; then
5579 def_jack='#define CONFIG_JACK 1'
5580 _aomodules="jack $_aomodules"
5581 else
5582 _noaomodules="jack $_noaomodules"
5584 echores "$_jack"
5586 echocheck "OpenAL"
5587 if test "$_openal" = auto ; then
5588 _openal=no
5589 cat > $TMPC << EOF
5590 #ifdef OPENAL_AL_H
5591 #include <OpenAL/al.h>
5592 #else
5593 #include <AL/al.h>
5594 #endif
5595 int main(void) {
5596 alSourceQueueBuffers(0, 0, 0);
5597 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5598 return 0;
5601 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5602 cc_check $I && _openal=yes && break
5603 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5604 done
5605 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5607 if test "$_openal" = yes ; then
5608 def_openal='#define CONFIG_OPENAL 1'
5609 _aomodules="openal $_aomodules"
5610 else
5611 _noaomodules="openal $_noaomodules"
5613 echores "$_openal"
5615 echocheck "ALSA audio"
5616 if test "$_alloca" != yes ; then
5617 _alsa=no
5618 _res_comment="alloca missing"
5620 if test "$_alsa" != no ; then
5621 _alsa=no
5622 cat > $TMPC << EOF
5623 #include <sys/time.h>
5624 #include <sys/asoundlib.h>
5625 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5626 #error "alsa version != 0.5.x"
5627 #endif
5628 int main(void) { return 0; }
5630 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5632 cat > $TMPC << EOF
5633 #include <sys/time.h>
5634 #include <sys/asoundlib.h>
5635 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5636 #error "alsa version != 0.9.x"
5637 #endif
5638 int main(void) { return 0; }
5640 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5641 cat > $TMPC << EOF
5642 #include <sys/time.h>
5643 #include <alsa/asoundlib.h>
5644 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5645 #error "alsa version != 0.9.x"
5646 #endif
5647 int main(void) { return 0; }
5649 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5651 cat > $TMPC << EOF
5652 #include <sys/time.h>
5653 #include <sys/asoundlib.h>
5654 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5655 #error "alsa version != 1.0.x"
5656 #endif
5657 int main(void) { return 0; }
5659 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5660 cat > $TMPC << EOF
5661 #include <sys/time.h>
5662 #include <alsa/asoundlib.h>
5663 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5664 #error "alsa version != 1.0.x"
5665 #endif
5666 int main(void) { return 0; }
5668 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5670 def_alsa='#undef CONFIG_ALSA'
5671 def_alsa5='#undef CONFIG_ALSA5'
5672 def_alsa9='#undef CONFIG_ALSA9'
5673 def_alsa1x='#undef CONFIG_ALSA1X'
5674 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5675 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5676 if test "$_alsaver" ; then
5677 _alsa=yes
5678 if test "$_alsaver" = '0.5.x' ; then
5679 _alsa5=yes
5680 _aomodules="alsa5 $_aomodules"
5681 def_alsa5='#define CONFIG_ALSA5 1'
5682 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5683 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5684 elif test "$_alsaver" = '0.9.x-sys' ; then
5685 _alsa9=yes
5686 _aomodules="alsa $_aomodules"
5687 def_alsa='#define CONFIG_ALSA 1'
5688 def_alsa9='#define CONFIG_ALSA9 1'
5689 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5690 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5691 elif test "$_alsaver" = '0.9.x-alsa' ; then
5692 _alsa9=yes
5693 _aomodules="alsa $_aomodules"
5694 def_alsa='#define CONFIG_ALSA 1'
5695 def_alsa9='#define CONFIG_ALSA9 1'
5696 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5697 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5698 elif test "$_alsaver" = '1.0.x-sys' ; then
5699 _alsa1x=yes
5700 _aomodules="alsa $_aomodules"
5701 def_alsa='#define CONFIG_ALSA 1'
5702 def_alsa1x="#define CONFIG_ALSA1X 1"
5703 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5704 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5705 elif test "$_alsaver" = '1.0.x-alsa' ; then
5706 _alsa1x=yes
5707 _aomodules="alsa $_aomodules"
5708 def_alsa='#define CONFIG_ALSA 1'
5709 def_alsa1x="#define CONFIG_ALSA1X 1"
5710 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5711 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5712 else
5713 _alsa=no
5714 _res_comment="unknown version"
5716 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5717 else
5718 _noaomodules="alsa $_noaomodules"
5720 echores "$_alsa"
5723 echocheck "Sun audio"
5724 if test "$_sunaudio" = auto ; then
5725 cat > $TMPC << EOF
5726 #include <sys/types.h>
5727 #include <sys/audioio.h>
5728 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5730 _sunaudio=no
5731 cc_check && _sunaudio=yes
5733 if test "$_sunaudio" = yes ; then
5734 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5735 _aomodules="sun $_aomodules"
5736 else
5737 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5738 _noaomodules="sun $_noaomodules"
5740 echores "$_sunaudio"
5743 def_mlib='#define CONFIG_MLIB 0'
5744 if sunos; then
5745 echocheck "Sun mediaLib"
5746 if test "$_mlib" = auto ; then
5747 _mlib=no
5748 cat > $TMPC << EOF
5749 #include <mlib.h>
5750 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5752 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5754 echores "$_mlib"
5755 fi #if sunos
5758 if darwin; then
5759 echocheck "CoreAudio"
5760 if test "$_coreaudio" = auto ; then
5761 cat > $TMPC <<EOF
5762 #include <CoreAudio/CoreAudio.h>
5763 #include <AudioToolbox/AudioToolbox.h>
5764 #include <AudioUnit/AudioUnit.h>
5765 int main(void) { return 0; }
5767 _coreaudio=no
5768 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5770 if test "$_coreaudio" = yes ; then
5771 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5772 def_coreaudio='#define CONFIG_COREAUDIO 1'
5773 _aomodules="coreaudio $_aomodules"
5774 else
5775 def_coreaudio='#undef CONFIG_COREAUDIO'
5776 _noaomodules="coreaudio $_noaomodules"
5778 echores $_coreaudio
5779 fi #if darwin
5782 if irix; then
5783 echocheck "SGI audio"
5784 if test "$_sgiaudio" = auto ; then
5785 # check for SGI audio
5786 cat > $TMPC << EOF
5787 #include <dmedia/audio.h>
5788 int main(void) { return 0; }
5790 _sgiaudio=no
5791 cc_check && _sgiaudio=yes
5793 if test "$_sgiaudio" = "yes" ; then
5794 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5795 libs_mplayer="$libs_mplayer -laudio"
5796 _aomodules="sgi $_aomodules"
5797 else
5798 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5799 _noaomodules="sgi $_noaomodules"
5801 echores "$_sgiaudio"
5802 fi #if irix
5805 if os2 ; then
5806 echocheck "DART"
5807 if test "$_dart" = auto; then
5808 cat > $TMPC << EOF
5809 #include <os2.h>
5810 #include <dart.h>
5811 int main( void ) { return 0; }
5813 _dart=no;
5814 cc_check -ldart && _dart=yes
5816 if test "$_dart" = yes ; then
5817 def_dart='#define CONFIG_DART 1'
5818 libs_mplayer="$libs_mplayer -ldart"
5819 _aomodules="dart $_aomodules"
5820 else
5821 def_dart='#undef CONFIG_DART'
5822 _noaomodules="dart $_noaomodules"
5824 echores "$_dart"
5825 fi #if os2
5828 # set default CD/DVD devices
5829 if win32 || os2 ; then
5830 default_cdrom_device="D:"
5831 elif darwin ; then
5832 default_cdrom_device="/dev/disk1"
5833 elif dragonfly ; then
5834 default_cdrom_device="/dev/cd0"
5835 elif freebsd ; then
5836 default_cdrom_device="/dev/acd0"
5837 elif openbsd ; then
5838 default_cdrom_device="/dev/rcd0a"
5839 elif sunos ; then
5840 default_cdrom_device="/vol/dev/aliases/cdrom0"
5841 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5842 # file system and the volfs service.
5843 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5844 elif amigaos ; then
5845 default_cdrom_device="a1ide.device:2"
5846 else
5847 default_cdrom_device="/dev/cdrom"
5850 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5851 default_dvd_device=$default_cdrom_device
5852 elif darwin ; then
5853 default_dvd_device="/dev/rdiskN"
5854 else
5855 default_dvd_device="/dev/dvd"
5859 echocheck "VCD support"
5860 if test "$_vcd" = auto; then
5861 _vcd=no
5862 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos; then
5863 _vcd=yes
5864 elif mingw32; then
5865 cat > $TMPC << EOF
5866 #include <ddk/ntddcdrm.h>
5867 int main(void) { return 0; }
5869 cc_check && _vcd=yes
5872 if test "$_vcd" = yes; then
5873 _inputmodules="vcd $_inputmodules"
5874 def_vcd='#define CONFIG_VCD 1'
5875 else
5876 def_vcd='#undef CONFIG_VCD'
5877 _noinputmodules="vcd $_noinputmodules"
5878 _res_comment="not supported on this OS"
5880 echores "$_vcd"
5884 echocheck "dvdread"
5885 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5886 _dvdread_internal=no
5888 if test "$_dvdread_internal" = auto ; then
5889 _dvdread_internal=no
5890 _dvdread=no
5891 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5892 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5893 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5894 || darwin || win32 || os2; then
5895 _dvdread_internal=yes
5896 _dvdread=yes
5897 extra_cflags="-Ilibdvdread4 $extra_cflags"
5899 elif test "$_dvdread" = auto ; then
5900 _dvdread=no
5901 if test "$_dl" = yes; then
5902 cat > $TMPC << EOF
5903 #include <inttypes.h>
5904 #include <dvdread/dvd_reader.h>
5905 #include <dvdread/ifo_types.h>
5906 #include <dvdread/ifo_read.h>
5907 #include <dvdread/nav_read.h>
5908 int main(void) { return 0; }
5910 _dvdreadcflags=$($_dvdreadconfig --cflags)
5911 _dvdreadlibs=$($_dvdreadconfig --libs)
5912 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5913 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5914 _dvdread=yes
5915 extra_cflags="$extra_cflags $_dvdreadcflags"
5916 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5917 _res_comment="external"
5922 if test "$_dvdread_internal" = yes; then
5923 def_dvdread='#define CONFIG_DVDREAD 1'
5924 _inputmodules="dvdread(internal) $_inputmodules"
5925 _largefiles=yes
5926 _res_comment="internal"
5927 elif test "$_dvdread" = yes; then
5928 def_dvdread='#define CONFIG_DVDREAD 1'
5929 _largefiles=yes
5930 extra_ldflags="$extra_ldflags -ldvdread"
5931 _inputmodules="dvdread(external) $_inputmodules"
5932 _res_comment="external"
5933 else
5934 def_dvdread='#undef CONFIG_DVDREAD'
5935 _noinputmodules="dvdread $_noinputmodules"
5937 echores "$_dvdread"
5940 echocheck "internal libdvdcss"
5941 if test "$_libdvdcss_internal" = auto ; then
5942 _libdvdcss_internal=no
5943 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5944 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5946 if test "$_libdvdcss_internal" = yes ; then
5947 if linux || netbsd || openbsd || bsdos ; then
5948 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5949 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5950 elif freebsd || dragonfly ; then
5951 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5952 elif darwin ; then
5953 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5954 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5955 elif cygwin ; then
5956 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5957 elif beos ; then
5958 cflags_libdvdcss="-DSYS_BEOS"
5959 elif os2 ; then
5960 cflags_libdvdcss="-DSYS_OS2"
5962 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5963 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5964 _inputmodules="libdvdcss(internal) $_inputmodules"
5965 _largefiles=yes
5966 else
5967 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5969 echores "$_libdvdcss_internal"
5972 echocheck "cdparanoia"
5973 if test "$_cdparanoia" = auto ; then
5974 cat > $TMPC <<EOF
5975 #include <cdda_interface.h>
5976 #include <cdda_paranoia.h>
5977 // This need a better test. How ?
5978 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5980 _cdparanoia=no
5981 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5982 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5983 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5984 done
5986 if test "$_cdparanoia" = yes ; then
5987 _cdda='yes'
5988 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5989 openbsd && extra_ldflags="$extra_ldflags -lutil"
5991 echores "$_cdparanoia"
5994 echocheck "libcdio"
5995 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5996 cat > $TMPC << EOF
5997 #include <stdio.h>
5998 #include <cdio/version.h>
5999 #include <cdio/cdda.h>
6000 #include <cdio/paranoia.h>
6001 int main(void) {
6002 void *test = cdda_verbose_set;
6003 printf("%s\n", CDIO_VERSION);
6004 return test == (void *)1;
6007 _libcdio=no
6008 for _ld_tmp in "" "-lwinmm" ; do
6009 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
6010 cc_check $_ld_tmp $_ld_lm \
6011 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6012 done
6013 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6014 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6015 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6016 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6017 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6020 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6021 _cdda='yes'
6022 def_libcdio='#define CONFIG_LIBCDIO 1'
6023 def_havelibcdio='yes'
6024 else
6025 if test "$_cdparanoia" = yes ; then
6026 _res_comment="using cdparanoia"
6028 def_libcdio='#undef CONFIG_LIBCDIO'
6029 def_havelibcdio='no'
6031 echores "$_libcdio"
6033 if test "$_cdda" = yes ; then
6034 test $_cddb = auto && test $_network = yes && _cddb=yes
6035 def_cdparanoia='#define CONFIG_CDDA 1'
6036 _inputmodules="cdda $_inputmodules"
6037 else
6038 def_cdparanoia='#undef CONFIG_CDDA'
6039 _noinputmodules="cdda $_noinputmodules"
6042 if test "$_cddb" = yes ; then
6043 def_cddb='#define CONFIG_CDDB 1'
6044 _inputmodules="cddb $_inputmodules"
6045 else
6046 _cddb=no
6047 def_cddb='#undef CONFIG_CDDB'
6048 _noinputmodules="cddb $_noinputmodules"
6051 echocheck "bitmap font support"
6052 if test "$_bitmap_font" = yes ; then
6053 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6054 else
6055 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6057 echores "$_bitmap_font"
6060 echocheck "freetype >= 2.0.9"
6062 # freetype depends on iconv
6063 if test "$_iconv" = no ; then
6064 _freetype=no
6065 _res_comment="iconv support needed"
6068 if test "$_freetype" = auto ; then
6069 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6070 cat > $TMPC << EOF
6071 #include <stdio.h>
6072 #include <ft2build.h>
6073 #include FT_FREETYPE_H
6074 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6075 #error "Need FreeType 2.0.9 or newer"
6076 #endif
6077 int main(void) {
6078 FT_Library library;
6079 FT_Int major=-1,minor=-1,patch=-1;
6080 int err=FT_Init_FreeType(&library);
6081 return 0;
6084 _freetype=no
6085 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6086 else
6087 _freetype=no
6090 if test "$_freetype" = yes ; then
6091 def_freetype='#define CONFIG_FREETYPE 1'
6092 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6093 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6094 else
6095 def_freetype='#undef CONFIG_FREETYPE'
6097 echores "$_freetype"
6099 if test "$_freetype" = no ; then
6100 _fontconfig=no
6101 _res_comment="FreeType support needed"
6103 echocheck "fontconfig"
6104 if test "$_fontconfig" = auto ; then
6105 cat > $TMPC << EOF
6106 #include <stdio.h>
6107 #include <stdlib.h>
6108 #include <fontconfig/fontconfig.h>
6109 int main(void) {
6110 int err = FcInit();
6111 if (err == FcFalse) {
6112 printf("Couldn't initialize fontconfig lib\n");
6113 exit(err);
6115 return 0;
6118 _fontconfig=no
6119 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6120 _ld_tmp="-lfontconfig $_ld_tmp"
6121 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6122 done
6123 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6124 _inc_tmp=$($_pkg_config --cflags fontconfig)
6125 _ld_tmp=$($_pkg_config --libs fontconfig)
6126 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6127 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6130 if test "$_fontconfig" = yes ; then
6131 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6132 else
6133 def_fontconfig='#undef CONFIG_FONTCONFIG'
6135 echores "$_fontconfig"
6138 echocheck "SSA/ASS support"
6139 if test "$_ass" = auto -o "$_ass" = yes ; then
6140 if $_pkg_config libass; then
6141 _ass=yes
6142 def_ass='#define CONFIG_ASS 1'
6143 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6144 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6145 else
6146 _ass=no
6147 def_ass='#undef CONFIG_ASS'
6149 else
6150 def_ass='#undef CONFIG_ASS'
6152 echores "$_ass"
6155 echocheck "fribidi with charsets"
6156 _inc_tmp=""
6157 _ld_tmp=""
6158 if test "$_fribidi" = auto ; then
6159 cat > $TMPC << EOF
6160 #include <stdio.h>
6161 #include <stdlib.h>
6162 /* workaround for fribidi 0.10.4 and below */
6163 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6164 #include <fribidi/fribidi.h>
6165 int main(void) {
6166 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6167 printf("Fribidi headers are not consistents with the library!\n");
6168 exit(1);
6170 return 0;
6173 _fribidi=no
6174 _inc_tmp=""
6175 _ld_tmp="-lfribidi"
6176 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6177 if $_fribidiconfig --version > /dev/null 2>&1 &&
6178 test "$_fribidi" = no ; then
6179 _inc_tmp="$($_fribidiconfig --cflags)"
6180 _ld_tmp="$($_fribidiconfig --libs)"
6181 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6184 if test "$_fribidi" = yes ; then
6185 def_fribidi='#define CONFIG_FRIBIDI 1'
6186 extra_cflags="$extra_cflags $_inc_tmp"
6187 extra_ldflags="$extra_ldflags $_ld_tmp"
6188 else
6189 def_fribidi='#undef CONFIG_FRIBIDI'
6191 echores "$_fribidi"
6194 echocheck "ENCA"
6195 if test "$_enca" = auto ; then
6196 cat > $TMPC << EOF
6197 #include <sys/types.h>
6198 #include <enca.h>
6199 int main(void) {
6200 const char **langs;
6201 size_t langcnt;
6202 langs = enca_get_languages(&langcnt);
6203 return 0;
6206 _enca=no
6207 cc_check -lenca $_ld_lm && _enca=yes
6209 if test "$_enca" = yes ; then
6210 def_enca='#define CONFIG_ENCA 1'
6211 extra_ldflags="$extra_ldflags -lenca"
6212 else
6213 def_enca='#undef CONFIG_ENCA'
6215 echores "$_enca"
6218 echocheck "zlib"
6219 cat > $TMPC << EOF
6220 #include <zlib.h>
6221 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6223 _zlib=no
6224 cc_check -lz && _zlib=yes
6225 if test "$_zlib" = yes ; then
6226 def_zlib='#define CONFIG_ZLIB 1'
6227 extra_ldflags="$extra_ldflags -lz"
6228 else
6229 def_zlib='#define CONFIG_ZLIB 0'
6231 echores "$_zlib"
6234 echocheck "bzlib"
6235 bzlib=no
6236 def_bzlib='#define CONFIG_BZLIB 0'
6237 cat > $TMPC << EOF
6238 #include <bzlib.h>
6239 int main(void) { BZ2_bzlibVersion(); return 0; }
6241 cc_check -lbz2 && bzlib=yes
6242 if test "$bzlib" = yes ; then
6243 def_bzlib='#define CONFIG_BZLIB 1'
6244 extra_ldflags="$extra_ldflags -lbz2"
6246 echores "$bzlib"
6249 echocheck "RTC"
6250 if test "$_rtc" = auto ; then
6251 cat > $TMPC << EOF
6252 #include <sys/ioctl.h>
6253 #ifdef __linux__
6254 #include <linux/rtc.h>
6255 #else
6256 #include <rtc.h>
6257 #define RTC_PIE_ON RTCIO_PIE_ON
6258 #endif
6259 int main(void) { return RTC_PIE_ON; }
6261 _rtc=no
6262 cc_check && _rtc=yes
6263 ppc && _rtc=no
6265 if test "$_rtc" = yes ; then
6266 def_rtc='#define HAVE_RTC 1'
6267 else
6268 def_rtc='#undef HAVE_RTC'
6270 echores "$_rtc"
6273 echocheck "liblzo2 support"
6274 if test "$_liblzo" = auto ; then
6275 _liblzo=no
6276 cat > $TMPC << EOF
6277 #include <lzo/lzo1x.h>
6278 int main(void) { lzo_init();return 0; }
6280 cc_check -llzo2 && _liblzo=yes
6282 if test "$_liblzo" = yes ; then
6283 def_liblzo='#define CONFIG_LIBLZO 1'
6284 extra_ldflags="$extra_ldflags -llzo2"
6285 _codecmodules="liblzo $_codecmodules"
6286 else
6287 def_liblzo='#undef CONFIG_LIBLZO'
6288 _nocodecmodules="liblzo $_nocodecmodules"
6290 echores "$_liblzo"
6293 echocheck "mad support"
6294 if test "$_mad" = auto ; then
6295 _mad=no
6296 cat > $TMPC << EOF
6297 #include <mad.h>
6298 int main(void) { return 0; }
6300 cc_check -lmad && _mad=yes
6302 if test "$_mad" = yes ; then
6303 def_mad='#define CONFIG_LIBMAD 1'
6304 extra_ldflags="$extra_ldflags -lmad"
6305 _codecmodules="libmad $_codecmodules"
6306 else
6307 def_mad='#undef CONFIG_LIBMAD'
6308 _nocodecmodules="libmad $_nocodecmodules"
6310 echores "$_mad"
6312 echocheck "Twolame"
6313 if test "$_twolame" = auto ; then
6314 cat > $TMPC <<EOF
6315 #include <twolame.h>
6316 int main(void) { twolame_init(); return 0; }
6318 _twolame=no
6319 cc_check -ltwolame $_ld_lm && _twolame=yes
6321 if test "$_twolame" = yes ; then
6322 def_twolame='#define CONFIG_TWOLAME 1'
6323 libs_mencoder="$libs_mencoder -ltwolame"
6324 _codecmodules="twolame $_codecmodules"
6325 else
6326 def_twolame='#undef CONFIG_TWOLAME'
6327 _nocodecmodules="twolame $_nocodecmodules"
6329 echores "$_twolame"
6331 echocheck "Toolame"
6332 if test "$_toolame" = auto ; then
6333 _toolame=no
6334 if test "$_twolame" = yes ; then
6335 _res_comment="disabled by twolame"
6336 else
6337 cat > $TMPC <<EOF
6338 #include <toolame.h>
6339 int main(void) { toolame_init(); return 0; }
6341 cc_check -ltoolame $_ld_lm && _toolame=yes
6344 if test "$_toolame" = yes ; then
6345 def_toolame='#define CONFIG_TOOLAME 1'
6346 libs_mencoder="$libs_mencoder -ltoolame"
6347 _codecmodules="toolame $_codecmodules"
6348 else
6349 def_toolame='#undef CONFIG_TOOLAME'
6350 _nocodecmodules="toolame $_nocodecmodules"
6352 if test "$_toolamedir" ; then
6353 _res_comment="using $_toolamedir"
6355 echores "$_toolame"
6357 echocheck "OggVorbis support"
6358 if test "$_tremor_internal" = yes; then
6359 _libvorbis=no
6360 elif test "$_tremor" = auto; then
6361 _tremor=no
6362 cat > $TMPC << EOF
6363 #include <tremor/ivorbiscodec.h>
6364 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6366 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6368 if test "$_libvorbis" = auto; then
6369 _libvorbis=no
6370 cat > $TMPC << EOF
6371 #include <vorbis/codec.h>
6372 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6374 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6376 if test "$_tremor_internal" = yes ; then
6377 _vorbis=yes
6378 def_vorbis='#define CONFIG_OGGVORBIS 1'
6379 def_tremor='#define CONFIG_TREMOR 1'
6380 _codecmodules="tremor(internal) $_codecmodules"
6381 _res_comment="internal Tremor"
6382 if test "$_tremor_low" = yes ; then
6383 cflags_tremor_low="-D_LOW_ACCURACY_"
6384 _res_comment="internal low accuracy Tremor"
6386 elif test "$_tremor" = yes ; then
6387 _vorbis=yes
6388 def_vorbis='#define CONFIG_OGGVORBIS 1'
6389 def_tremor='#define CONFIG_TREMOR 1'
6390 _codecmodules="tremor(external) $_codecmodules"
6391 _res_comment="external Tremor"
6392 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6393 elif test "$_libvorbis" = yes ; then
6394 _vorbis=yes
6395 def_vorbis='#define CONFIG_OGGVORBIS 1'
6396 _codecmodules="libvorbis $_codecmodules"
6397 _res_comment="libvorbis"
6398 extra_ldflags="$extra_ldflags -lvorbis -logg"
6399 else
6400 _vorbis=no
6401 _nocodecmodules="libvorbis $_nocodecmodules"
6403 echores "$_vorbis"
6405 echocheck "libspeex (version >= 1.1 required)"
6406 if test "$_speex" = auto ; then
6407 _speex=no
6408 cat > $TMPC << EOF
6409 #include <speex/speex.h>
6410 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6412 cc_check -lspeex $_ld_lm && _speex=yes
6414 if test "$_speex" = yes ; then
6415 def_speex='#define CONFIG_SPEEX 1'
6416 extra_ldflags="$extra_ldflags -lspeex"
6417 _codecmodules="speex $_codecmodules"
6418 else
6419 def_speex='#undef CONFIG_SPEEX'
6420 _nocodecmodules="speex $_nocodecmodules"
6422 echores "$_speex"
6424 echocheck "OggTheora support"
6425 if test "$_theora" = auto ; then
6426 _theora=no
6427 cat > $TMPC << EOF
6428 #include <theora/theora.h>
6429 #include <string.h>
6430 int main(void) {
6431 /* Theora is in flux, make sure that all interface routines and datatypes
6432 * exist and work the way we expect it, so we don't break MPlayer. */
6433 ogg_packet op;
6434 theora_comment tc;
6435 theora_info inf;
6436 theora_state st;
6437 yuv_buffer yuv;
6438 int r;
6439 double t;
6441 theora_info_init(&inf);
6442 theora_comment_init(&tc);
6444 return 0;
6446 /* we don't want to execute this kind of nonsense; just for making sure
6447 * that compilation works... */
6448 memset(&op, 0, sizeof(op));
6449 r = theora_decode_header(&inf, &tc, &op);
6450 r = theora_decode_init(&st, &inf);
6451 t = theora_granule_time(&st, op.granulepos);
6452 r = theora_decode_packetin(&st, &op);
6453 r = theora_decode_YUVout(&st, &yuv);
6454 theora_clear(&st);
6456 return 0;
6459 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6460 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6461 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6462 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6463 if test _theora = no; then
6464 _ld_theora="-ltheora -logg"
6465 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6467 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6468 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6469 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6470 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6471 extra_ldflags="$extra_ldflags $_ld_theora" &&
6472 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6473 if test _theora = no; then
6474 _ld_theora="-ltheora -logg"
6475 cc_check tremor/bitwise.c $_ld_theora &&
6476 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6480 if test "$_theora" = yes ; then
6481 def_theora='#define CONFIG_OGGTHEORA 1'
6482 _codecmodules="libtheora $_codecmodules"
6483 # when --enable-theora is forced, we'd better provide a probably sane
6484 # $_ld_theora than nothing
6485 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6486 else
6487 def_theora='#undef CONFIG_OGGTHEORA'
6488 _nocodecmodules="libtheora $_nocodecmodules"
6490 echores "$_theora"
6492 echocheck "internal mp3lib support"
6493 if test "$_mp3lib" = auto ; then
6494 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6496 if test "$_mp3lib" = yes ; then
6497 def_mp3lib='#define CONFIG_MP3LIB 1'
6498 _codecmodules="mp3lib(internal) $_codecmodules"
6499 else
6500 def_mp3lib='#undef CONFIG_MP3LIB'
6501 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6503 echores "$_mp3lib"
6505 echocheck "liba52 support"
6506 if test "$_liba52_internal" = auto ; then
6507 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _liba52_internal=no || _liba52_internal=yes
6509 def_liba52='#undef CONFIG_LIBA52'
6510 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6511 if test "$_liba52_internal" = yes ; then
6512 _liba52=yes
6513 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6514 _res_comment="internal"
6515 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6516 _liba52=no
6517 cat > $TMPC << EOF
6518 #include <inttypes.h>
6519 #include <a52dec/a52.h>
6520 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6522 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6524 if test "$_liba52" = yes ; then
6525 def_liba52='#define CONFIG_LIBA52 1'
6526 _codecmodules="liba52($_res_comment) $_codecmodules"
6527 else
6528 _nocodecmodules="liba52 $_nocodecmodules"
6530 echores "$_liba52"
6532 echocheck "internal libmpeg2 support"
6533 if test "$_libmpeg2" = auto ; then
6534 _libmpeg2=yes
6535 if alpha && test cc_vendor=gnu; then
6536 case $cc_version in
6537 2*|3.0*|3.1*) # cannot compile MVI instructions
6538 _libmpeg2=no
6539 _res_comment="broken gcc"
6541 esac
6544 if test "$_libmpeg2" = yes ; then
6545 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6546 _codecmodules="libmpeg2(internal) $_codecmodules"
6547 else
6548 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6549 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6551 echores "$_libmpeg2"
6553 echocheck "libdca support"
6554 if test "$_libdca" = auto ; then
6555 _libdca=no
6556 cat > $TMPC << EOF
6557 #include <inttypes.h>
6558 #include <dts.h>
6559 int main(void) { dts_init(0); return 0; }
6561 for _ld_dca in -ldca -ldts ; do
6562 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6563 && _libdca=yes && break
6564 done
6566 if test "$_libdca" = yes ; then
6567 def_libdca='#define CONFIG_LIBDCA 1'
6568 _codecmodules="libdca $_codecmodules"
6569 else
6570 def_libdca='#undef CONFIG_LIBDCA'
6571 _nocodecmodules="libdca $_nocodecmodules"
6573 echores "$_libdca"
6575 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6576 if test "$_musepack" = auto ; then
6577 _musepack=no
6578 cat > $TMPC << EOF
6579 #include <stddef.h>
6580 #include <mpcdec/mpcdec.h>
6581 int main(void) {
6582 mpc_streaminfo info;
6583 mpc_decoder decoder;
6584 mpc_decoder_set_streaminfo(&decoder, &info);
6585 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6586 return 0;
6589 cc_check -lmpcdec $_ld_lm && _musepack=yes
6591 if test "$_musepack" = yes ; then
6592 def_musepack='#define CONFIG_MUSEPACK 1'
6593 extra_ldflags="$extra_ldflags -lmpcdec"
6594 _codecmodules="musepack $_codecmodules"
6595 else
6596 def_musepack='#undef CONFIG_MUSEPACK'
6597 _nocodecmodules="musepack $_nocodecmodules"
6599 echores "$_musepack"
6602 echocheck "FAAC support"
6603 if test "$_faac" = auto ; then
6604 cat > $TMPC <<EOF
6605 #include <inttypes.h>
6606 #include <faac.h>
6607 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6609 _faac=no
6610 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6611 cc_check -O2 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6612 done
6614 if test "$_faac" = yes ; then
6615 def_faac="#define CONFIG_FAAC 1"
6616 _codecmodules="faac $_codecmodules"
6617 else
6618 def_faac="#undef CONFIG_FAAC"
6619 _nocodecmodules="faac $_nocodecmodules"
6621 echores "$_faac"
6624 echocheck "FAAD2 support"
6625 if test "$_faad_internal" = auto ; then
6626 if x86_32 && test cc_vendor=gnu; then
6627 case $cc_version in
6628 3.1*|3.2) # ICE/insn with these versions
6629 _faad_internal=no
6630 _res_comment="broken gcc"
6633 _faad=yes
6634 _faad_internal=yes
6636 esac
6637 else
6638 _faad=yes
6639 _faad_internal=yes
6642 if test "$_faad" = auto ; then
6643 cat > $TMPC << EOF
6644 #include <faad.h>
6645 #ifndef FAAD_MIN_STREAMSIZE
6646 #error Too old version
6647 #endif
6648 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6649 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6651 cc_check -lfaad $_ld_lm && _faad=yes
6654 def_faad='#undef CONFIG_FAAD'
6655 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6656 if test "$_faad_internal" = yes ; then
6657 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6658 _res_comment="internal floating-point"
6659 if test "$_faad_fixed" = yes ; then
6660 # The FIXED_POINT implementation of FAAD2 improves performance
6661 # on some platforms, especially for SBR files.
6662 cflags_faad_fixed="-DFIXED_POINT"
6663 _res_comment="internal fixed-point"
6665 elif test "$_faad" = yes ; then
6666 extra_ldflags="$extra_ldflags -lfaad"
6669 if test "$_faad" = yes ; then
6670 def_faad='#define CONFIG_FAAD 1'
6671 if test "$_faad_internal" = yes ; then
6672 _codecmodules="faad2(internal) $_codecmodules"
6673 else
6674 _codecmodules="faad2 $_codecmodules"
6676 else
6677 _faad=no
6678 _nocodecmodules="faad2 $_nocodecmodules"
6680 echores "$_faad"
6683 echocheck "LADSPA plugin support"
6684 if test "$_ladspa" = auto ; then
6685 cat > $TMPC <<EOF
6686 #include <stdio.h>
6687 #include <ladspa.h>
6688 int main(void) {
6689 const LADSPA_Descriptor *ld = NULL;
6690 return 0;
6693 _ladspa=no
6694 cc_check && _ladspa=yes
6696 if test "$_ladspa" = yes; then
6697 def_ladspa="#define CONFIG_LADSPA 1"
6698 else
6699 def_ladspa="#undef CONFIG_LADSPA"
6701 echores "$_ladspa"
6704 echocheck "libbs2b audio filter support"
6705 if test "$_libbs2b" = auto ; then
6706 cat > $TMPC <<EOF
6707 #include <bs2b.h>
6708 #if BS2B_VERSION_MAJOR < 3
6709 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6710 #endif
6711 int main(void) {
6712 t_bs2bdp filter;
6713 filter=bs2b_open();
6714 bs2b_close(filter);
6715 return 0;
6718 _libbs2b=no
6719 if $_pkg_config --exists libbs2b ; then
6720 _inc_tmp=$($_pkg_config --cflags libbs2b)
6721 _ld_tmp=$($_pkg_config --libs libbs2b)
6722 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6723 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6724 else
6725 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6726 -I/usr/local/include/bs2b ; do
6727 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6728 extra_ldflags="$extra_ldflags -lbs2b"
6729 extra_cflags="$extra_cflags $_inc_tmp"
6730 _libbs2b=yes
6731 break
6733 done
6736 def_libbs2b="#undef CONFIG_LIBBS2B"
6737 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6738 echores "$_libbs2b"
6741 if test -z "$_codecsdir" ; then
6742 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6743 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6744 if test -d "$dir" ; then
6745 _codecsdir="$dir"
6746 break;
6748 done
6750 # Fall back on default directory.
6751 if test -z "$_codecsdir" ; then
6752 _codecsdir="$_libdir/codecs"
6753 mingw32 && _codecsdir="codecs"
6754 os2 && _codecsdir="codecs"
6758 echocheck "Win32 codecs"
6759 if test "$_win32dll" = auto ; then
6760 _win32dll=no
6761 if x86_32 && ! qnx; then
6762 _win32dll=yes
6765 if test "$_win32dll" = yes ; then
6766 def_win32dll='#define CONFIG_WIN32DLL 1'
6767 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6768 _res_comment="using $_win32codecsdir"
6769 if ! win32 ; then
6770 def_win32_loader='#define WIN32_LOADER 1'
6771 _win32_emulation=yes
6772 else
6773 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6774 _res_comment="using native windows"
6776 _codecmodules="win32 $_codecmodules"
6777 else
6778 def_win32dll='#undef CONFIG_WIN32DLL'
6779 def_win32_loader='#undef WIN32_LOADER'
6780 _nocodecmodules="win32 $_nocodecmodules"
6782 echores "$_win32dll"
6785 echocheck "XAnim codecs"
6786 if test "$_xanim" = auto ; then
6787 _xanim=no
6788 _res_comment="dynamic loader support needed"
6789 if test "$_dl" = yes ; then
6790 _xanim=yes
6793 if test "$_xanim" = yes ; then
6794 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6795 def_xanim='#define CONFIG_XANIM 1'
6796 def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6797 _codecmodules="xanim $_codecmodules"
6798 _res_comment="using $_xanimcodecsdir"
6799 else
6800 def_xanim='#undef CONFIG_XANIM'
6801 def_xanim_path='#undef XACODEC_PATH'
6802 _nocodecmodules="xanim $_nocodecmodules"
6804 echores "$_xanim"
6807 echocheck "RealPlayer codecs"
6808 if test "$_real" = auto ; then
6809 _real=no
6810 _res_comment="dynamic loader support needed"
6811 if test "$_dl" = yes || test "$_win32dll" = yes &&
6812 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32) ; then
6813 _real=yes
6816 if test "$_real" = yes ; then
6817 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6818 def_real='#define CONFIG_REALCODECS 1'
6819 def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6820 _codecmodules="real $_codecmodules"
6821 _res_comment="using $_realcodecsdir"
6822 else
6823 def_real='#undef CONFIG_REALCODECS'
6824 def_real_path="#undef REALCODEC_PATH"
6825 _nocodecmodules="real $_nocodecmodules"
6827 echores "$_real"
6830 echocheck "QuickTime codecs"
6831 _qtx_emulation=no
6832 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6833 if test "$_qtx" = auto ; then
6834 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6836 if test "$_qtx" = yes ; then
6837 def_qtx='#define CONFIG_QTX_CODECS 1'
6838 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6839 _codecmodules="qtx $_codecmodules"
6840 darwin || win32 || _qtx_emulation=yes
6841 else
6842 def_qtx='#undef CONFIG_QTX_CODECS'
6843 _nocodecmodules="qtx $_nocodecmodules"
6845 echores "$_qtx"
6847 echocheck "Nemesi Streaming Media libraries"
6848 if test "$_nemesi" = auto && test "$_network" = yes ; then
6849 _nemesi=no
6850 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6851 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6852 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6853 _nemesi=yes
6856 if test "$_nemesi" = yes; then
6857 _native_rtsp=no
6858 def_nemesi='#define CONFIG_LIBNEMESI 1'
6859 _inputmodules="nemesi $_inputmodules"
6860 else
6861 _native_rtsp="$_network"
6862 _nemesi=no
6863 def_nemesi='#undef CONFIG_LIBNEMESI'
6864 _noinputmodules="nemesi $_noinputmodules"
6866 echores "$_nemesi"
6868 echocheck "LIVE555 Streaming Media libraries"
6869 if test "$_live" = auto && test "$_network" = yes ; then
6870 cat > $TMPCPP << EOF
6871 #include <liveMedia.hh>
6872 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6873 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6874 #endif
6875 int main(void) { return 0; }
6878 _live=no
6879 for I in $extra_cflags "-I$_libdir/live" "-I/usr/lib/live" "-I/usr/lib64/live" "-I/usr/local/live" "-I/usr/local/lib/live" ; do
6880 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6881 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6882 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6883 $_livelibdir/groupsock/libgroupsock.a \
6884 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6885 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6886 $extra_ldflags -lstdc++" \
6887 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6888 -I$_livelibdir/UsageEnvironment/include \
6889 -I$_livelibdir/BasicUsageEnvironment/include \
6890 -I$_livelibdir/groupsock/include" && \
6891 _live=yes && break
6892 done
6893 if test "$_live" != yes ; then
6894 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6895 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6896 _live_dist=yes
6900 if test "$_live" = yes && test "$_network" = yes; then
6901 test $_livelibdir && _res_comment="using $_livelibdir"
6902 def_live='#define CONFIG_LIVE555 1'
6903 _inputmodules="live555 $_inputmodules"
6904 elif test "$_live_dist" = yes && test "$_network" = yes; then
6905 _res_comment="using distribution version"
6906 _live="yes"
6907 def_live='#define CONFIG_LIVE555 1'
6908 extra_ldflags="$extra_ldflags $ld_tmp"
6909 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6910 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6911 _inputmodules="live555 $_inputmodules"
6912 else
6913 _live=no
6914 def_live='#undef CONFIG_LIVE555'
6915 _noinputmodules="live555 $_noinputmodules"
6917 echores "$_live"
6920 echocheck "FFmpeg libavutil"
6921 if test "$_libavutil" = auto ; then
6922 _libavutil=no
6923 cat > $TMPC << EOF
6924 #include <libavutil/common.h>
6925 int main(void) { av_gcd(1,1); return 0; }
6927 if $_pkg_config --exists libavutil ; then
6928 _inc_libavutil=$($_pkg_config --cflags libavutil)
6929 _ld_tmp=$($_pkg_config --libs libavutil)
6930 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6931 && _libavutil=yes
6932 elif cc_check -lavutil $_ld_lm ; then
6933 extra_ldflags="$extra_ldflags -lavutil"
6934 _libavutil=yes
6937 def_libavutil='#undef CONFIG_LIBAVUTIL'
6938 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6939 # libavutil is not available, but it is mandatory ...
6940 if test "$_libavutil" = no ; then
6941 die "You need libavutil, MPlayer will not compile without!"
6943 echores "$_libavutil"
6945 echocheck "FFmpeg libavcodec"
6946 if test "$_libavcodec" = auto ; then
6947 _libavcodec=no
6948 cat > $TMPC << EOF
6949 #include <libavcodec/avcodec.h>
6950 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6952 if $_pkg_config --exists libavcodec ; then
6953 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6954 _ld_tmp=$($_pkg_config --libs libavcodec)
6955 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6956 && _libavcodec=yes
6957 elif cc_check -lavcodec $_ld_lm ; then
6958 extra_ldflags="$extra_ldflags -lavcodec"
6959 _libavcodec=yes
6962 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6963 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6964 if test "$_libavcodec" = yes ; then
6965 _codecmodules="libavcodec $_codecmodules"
6966 else
6967 _nocodecmodules="libavcodec $_nocodecmodules"
6969 echores "$_libavcodec"
6971 echocheck "FFmpeg libavformat"
6972 if test "$_libavformat" = auto ; then
6973 _libavformat=no
6974 cat > $TMPC <<EOF
6975 #include <libavformat/avformat.h>
6976 #include <libavcodec/opt.h>
6977 int main(void) { av_alloc_format_context(); return 0; }
6979 if $_pkg_config --exists libavformat ; then
6980 _inc_libavformat=$($_pkg_config --cflags libavformat)
6981 _ld_tmp=$($_pkg_config --libs libavformat)
6982 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6983 && _libavformat=yes
6984 elif cc_check $_ld_lm -lavformat ; then
6985 extra_ldflags="$extra_ldflags -lavformat"
6986 _libavformat=yes
6989 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6990 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6991 echores "$_libavformat"
6993 echocheck "FFmpeg libpostproc"
6994 if test "$_libpostproc" = auto ; then
6995 _libpostproc=no
6996 cat > $TMPC << EOF
6997 #include <inttypes.h>
6998 #include <libpostproc/postprocess.h>
6999 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
7001 if $_pkg_config --exists libpostproc ; then
7002 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
7003 _ld_tmp=$($_pkg_config --libs libpostproc)
7004 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
7005 && _libpostproc=yes
7006 elif cc_check -lpostproc $_ld_lm ; then
7007 extra_ldflags="$extra_ldflags -lpostproc"
7008 _libpostproc=yes
7011 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
7012 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
7013 echores "$_libpostproc"
7015 echocheck "FFmpeg libswscale"
7016 if test "$_libswscale" = auto ; then
7017 _libswscale=no
7018 cat > $TMPC << EOF
7019 #include <libswscale/swscale.h>
7020 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7022 if $_pkg_config --exists libswscale ; then
7023 _inc_libswscale=$($_pkg_config --cflags libswscale)
7024 _ld_tmp=$($_pkg_config --libs libswscale)
7025 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
7026 && _libswscale=yes
7027 elif cc_check -lswscale ; then
7028 extra_ldflags="$extra_ldflags -lswscale"
7029 _libswscale=yes
7032 def_libswscale='#undef CONFIG_LIBSWSCALE'
7033 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7034 echores "$_libswscale"
7036 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
7037 if ! test -z "$_ffmpeg_source" ; then
7038 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
7041 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
7042 if ! test -z "$_ffmpeg_source" ; then
7043 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
7046 echocheck "libdv-0.9.5+"
7047 if test "$_libdv" = auto ; then
7048 _libdv=no
7049 cat > $TMPC <<EOF
7050 #include <libdv/dv.h>
7051 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7053 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7055 if test "$_libdv" = yes ; then
7056 def_libdv='#define CONFIG_LIBDV095 1'
7057 extra_ldflags="$extra_ldflags -ldv"
7058 _codecmodules="libdv $_codecmodules"
7059 else
7060 def_libdv='#undef CONFIG_LIBDV095'
7061 _nocodecmodules="libdv $_nocodecmodules"
7063 echores "$_libdv"
7066 echocheck "Xvid"
7067 if test "$_xvid" = auto ; then
7068 _xvid=no
7069 cat > $TMPC << EOF
7070 #include <xvid.h>
7071 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7073 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7074 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7075 done
7078 if test "$_xvid" = yes ; then
7079 def_xvid='#define CONFIG_XVID4 1'
7080 _codecmodules="xvid $_codecmodules"
7081 else
7082 def_xvid='#undef CONFIG_XVID4'
7083 _nocodecmodules="xvid $_nocodecmodules"
7085 echores "$_xvid"
7087 echocheck "x264"
7088 if test "$_x264" = auto ; then
7089 cat > $TMPC << EOF
7090 #include <inttypes.h>
7091 #include <x264.h>
7092 #if X264_BUILD < 79
7093 #error We do not support old versions of x264. Get the latest from git.
7094 #endif
7095 int main(void) { x264_encoder_open((void*)0); return 0; }
7097 _x264=no
7098 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7099 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7100 done
7103 if test "$_x264" = yes ; then
7104 def_x264='#define CONFIG_X264 1'
7105 _codecmodules="x264 $_codecmodules"
7106 else
7107 def_x264='#undef CONFIG_X264'
7108 _nocodecmodules="x264 $_nocodecmodules"
7110 echores "$_x264"
7112 echocheck "libnut"
7113 if test "$_libnut" = auto ; then
7114 cat > $TMPC << EOF
7115 #include <stdio.h>
7116 #include <stdlib.h>
7117 #include <inttypes.h>
7118 #include <libnut.h>
7119 nut_context_tt * nut;
7120 int main(void) { (void)nut_error(0); return 0; }
7122 _libnut=no
7123 cc_check -lnut && _libnut=yes
7126 if test "$_libnut" = yes ; then
7127 def_libnut='#define CONFIG_LIBNUT 1'
7128 extra_ldflags="$extra_ldflags -lnut"
7129 else
7130 def_libnut='#undef CONFIG_LIBNUT'
7132 echores "$_libnut"
7134 # These VO checks must be done after libavcodec/libswscale one
7135 echocheck "/dev/mga_vid"
7136 if test "$_mga" = auto ; then
7137 _mga=no
7138 test -c /dev/mga_vid && _mga=yes
7140 if test "$_mga" = yes ; then
7141 if test "$_libswscale_internals" = yes ; then
7142 def_mga='#define CONFIG_MGA 1'
7143 _vomodules="mga $_vomodules"
7144 else
7145 _res_comment="libswscale internal headers are required by mga, sorry"
7146 def_mga='#undef CONFIG_MGA'
7147 _novomodules="mga $_novomodules"
7149 else
7150 def_mga='#undef CONFIG_MGA'
7151 _novomodules="mga $_novomodules"
7153 echores "$_mga"
7156 echocheck "xmga"
7157 if test "$_xmga" = auto ; then
7158 _xmga=no
7159 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7161 if test "$_xmga" = yes ; then
7162 if test "$_libswscale_internals" = yes ; then
7163 def_xmga='#define CONFIG_XMGA 1'
7164 _vomodules="xmga $_vomodules"
7165 else
7166 _res_comment="libswscale internal headers are required by mga, sorry"
7167 def_xmga='#undef CONFIG_XMGA'
7168 _novomodules="xmga $_novomodules"
7170 else
7171 def_xmga='#undef CONFIG_XMGA'
7172 _novomodules="xmga $_novomodules"
7174 echores "$_xmga"
7176 echocheck "zr"
7177 if test "$_zr" = auto ; then
7178 #36067's seem to identify themselves as 36057PQC's, so the line
7179 #below should work for 36067's and 36057's.
7180 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7181 _zr=yes
7182 else
7183 _zr=no
7186 if test "$_zr" = yes ; then
7187 if test "$_libavcodec_internals" = yes ; then
7188 def_zr='#define CONFIG_ZR 1'
7189 _vomodules="zr zr2 $_vomodules"
7190 else
7191 _res_comment="libavcodec internal headers are required by zr, sorry"
7192 _novomodules="zr $_novomodules"
7193 def_zr='#undef CONFIG_ZR'
7195 else
7196 def_zr='#undef CONFIG_ZR'
7197 _novomodules="zr zr2 $_novomodules"
7199 echores "$_zr"
7201 # mencoder requires (optional) those libs: libmp3lame
7202 if test "$_mencoder" != no ; then
7204 echocheck "libmp3lame"
7205 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7206 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7207 if test "$_mp3lame" = auto ; then
7208 _mp3lame=no
7209 cat > $TMPC <<EOF
7210 #include <lame/lame.h>
7211 int main(void) { lame_version_t lv; (void) lame_init();
7212 get_lame_version_numerical(&lv);
7213 return 0; }
7215 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7217 if test "$_mp3lame" = yes ; then
7218 def_mp3lame="#define CONFIG_MP3LAME 1"
7219 _ld_mp3lame=-lmp3lame
7220 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7221 cat > $TMPC << EOF
7222 #include <lame/lame.h>
7223 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7225 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7226 cat > $TMPC << EOF
7227 #include <lame/lame.h>
7228 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7230 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7231 else
7232 def_mp3lame='#undef CONFIG_MP3LAME'
7234 echores "$_mp3lame"
7236 fi # test "$_mencoder" != no
7238 echocheck "mencoder"
7239 if test "$_mencoder" = yes ; then
7240 def_muxers='#define CONFIG_MUXERS 1'
7241 else
7242 def_muxers='#define CONFIG_MUXERS 0'
7244 echores "$_mencoder"
7247 echocheck "UnRAR executable"
7248 if test "$_unrar_exec" = auto ; then
7249 _unrar_exec="yes"
7250 mingw32 && _unrar_exec="no"
7252 if test "$_unrar_exec" = yes ; then
7253 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7254 else
7255 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7257 echores "$_unrar_exec"
7259 echocheck "TV interface"
7260 if test "$_tv" = yes ; then
7261 def_tv='#define CONFIG_TV 1'
7262 _inputmodules="tv $_inputmodules"
7263 else
7264 _noinputmodules="tv $_noinputmodules"
7265 def_tv='#undef CONFIG_TV'
7267 echores "$_tv"
7270 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7271 echocheck "*BSD BT848 bt8xx header"
7272 _ioctl_bt848_h=no
7273 for file in "machine/ioctl_bt848.h" \
7274 "dev/bktr/ioctl_bt848.h" \
7275 "dev/video/bktr/ioctl_bt848.h" \
7276 "dev/ic/bt8xx.h" ; do
7277 cat > $TMPC <<EOF
7278 #include <sys/types.h>
7279 #include <sys/ioctl.h>
7280 #include <$file>
7281 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7283 if cc_check ; then
7284 _ioctl_bt848_h=yes
7285 _ioctl_bt848_h_name="$file"
7286 break;
7288 done
7289 if test "$_ioctl_bt848_h" = yes ; then
7290 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7291 _res_comment="using $_ioctl_bt848_h_name"
7292 else
7293 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7295 echores "$_ioctl_bt848_h"
7297 echocheck "*BSD ioctl_meteor.h"
7298 _ioctl_meteor_h=no
7299 for file in "machine/ioctl_meteor.h" \
7300 "dev/bktr/ioctl_meteor.h" \
7301 "dev/video/bktr/ioctl_meteor.h" ; do
7302 cat > $TMPC <<EOF
7303 #include <sys/types.h>
7304 #include <$file>
7305 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7307 if cc_check ; then
7308 _ioctl_meteor_h=yes
7309 _ioctl_meteor_h_name="$file"
7310 break;
7312 done
7313 if test "$_ioctl_meteor_h" = yes ; then
7314 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7315 _res_comment="using $_ioctl_meteor_h_name"
7316 else
7317 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7319 echores "$_ioctl_meteor_h"
7321 echocheck "*BSD BrookTree 848 TV interface"
7322 if test "$_tv_bsdbt848" = auto ; then
7323 _tv_bsdbt848=no
7324 if test "$_tv" = yes ; then
7325 cat > $TMPC <<EOF
7326 #include <sys/types.h>
7327 $def_ioctl_meteor_h_name
7328 $def_ioctl_bt848_h_name
7329 #ifdef IOCTL_METEOR_H_NAME
7330 #include IOCTL_METEOR_H_NAME
7331 #endif
7332 #ifdef IOCTL_BT848_H_NAME
7333 #include IOCTL_BT848_H_NAME
7334 #endif
7335 int main(void) {
7336 ioctl(0, METEORSINPUT, 0);
7337 ioctl(0, TVTUNER_GETFREQ, 0);
7338 return 0;
7341 cc_check && _tv_bsdbt848=yes
7344 if test "$_tv_bsdbt848" = yes ; then
7345 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7346 _inputmodules="tv-bsdbt848 $_inputmodules"
7347 else
7348 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7349 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7351 echores "$_tv_bsdbt848"
7352 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7355 echocheck "DirectShow TV interface"
7356 if test "$_tv_dshow" = auto ; then
7357 _tv_dshow=no
7358 if test "$_tv" = yes && win32 ; then
7359 cat > $TMPC <<EOF
7360 #include <ole2.h>
7361 int main(void) {
7362 void* p;
7363 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7364 return 0;
7367 cc_check -lole32 -luuid && _tv_dshow=yes
7370 if test "$_tv_dshow" = yes ; then
7371 _inputmodules="tv-dshow $_inputmodules"
7372 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7373 extra_ldflags="$extra_ldflags -lole32 -luuid"
7374 else
7375 _noinputmodules="tv-dshow $_noinputmodules"
7376 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7378 echores "$_tv_dshow"
7381 echocheck "Video 4 Linux TV interface"
7382 if test "$_tv_v4l1" = auto ; then
7383 _tv_v4l1=no
7384 if test "$_tv" = yes && linux ; then
7385 cat > $TMPC <<EOF
7386 #include <stdlib.h>
7387 #include <linux/videodev.h>
7388 int main(void) { return 0; }
7390 cc_check && _tv_v4l1=yes
7393 if test "$_tv_v4l1" = yes ; then
7394 _audio_input=yes
7395 _tv_v4l=yes
7396 def_tv_v4l='#define CONFIG_TV_V4L 1'
7397 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7398 _inputmodules="tv-v4l $_inputmodules"
7399 else
7400 _noinputmodules="tv-v4l1 $_noinputmodules"
7401 def_tv_v4l='#undef CONFIG_TV_V4L'
7403 echores "$_tv_v4l1"
7406 echocheck "Video 4 Linux 2 TV interface"
7407 if test "$_tv_v4l2" = auto ; then
7408 _tv_v4l2=no
7409 if test "$_tv" = yes && linux ; then
7410 cat > $TMPC <<EOF
7411 #include <stdlib.h>
7412 #include <linux/types.h>
7413 #include <linux/videodev2.h>
7414 int main(void) { return 0; }
7416 cc_check && _tv_v4l2=yes
7419 if test "$_tv_v4l2" = yes ; then
7420 _audio_input=yes
7421 _tv_v4l=yes
7422 def_tv_v4l='#define CONFIG_TV_V4L 1'
7423 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7424 _inputmodules="tv-v4l2 $_inputmodules"
7425 else
7426 _noinputmodules="tv-v4l2 $_noinputmodules"
7427 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7429 echores "$_tv_v4l2"
7432 echocheck "Radio interface"
7433 if test "$_radio" = yes ; then
7434 def_radio='#define CONFIG_RADIO 1'
7435 _inputmodules="radio $_inputmodules"
7436 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7437 _radio_capture=no
7439 if test "$_radio_capture" = yes ; then
7440 _audio_input=yes
7441 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7442 else
7443 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7445 else
7446 _noinputmodules="radio $_noinputmodules"
7447 def_radio='#undef CONFIG_RADIO'
7448 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7449 _radio_capture=no
7451 echores "$_radio"
7452 echocheck "Capture for Radio interface"
7453 echores "$_radio_capture"
7455 echocheck "Video 4 Linux 2 Radio interface"
7456 if test "$_radio_v4l2" = auto ; then
7457 _radio_v4l2=no
7458 if test "$_radio" = yes && linux ; then
7459 cat > $TMPC <<EOF
7460 #include <stdlib.h>
7461 #include <linux/types.h>
7462 #include <linux/videodev2.h>
7463 int main(void) { return 0; }
7465 cc_check && _radio_v4l2=yes
7468 if test "$_radio_v4l2" = yes ; then
7469 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7470 else
7471 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7473 echores "$_radio_v4l2"
7475 echocheck "Video 4 Linux Radio interface"
7476 if test "$_radio_v4l" = auto ; then
7477 _radio_v4l=no
7478 if test "$_radio" = yes && linux ; then
7479 cat > $TMPC <<EOF
7480 #include <stdlib.h>
7481 #include <linux/videodev.h>
7482 int main(void) { return 0; }
7484 cc_check && _radio_v4l=yes
7487 if test "$_radio_v4l" = yes ; then
7488 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7489 else
7490 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7492 echores "$_radio_v4l"
7494 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7495 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7496 echocheck "*BSD BrookTree 848 Radio interface"
7497 _radio_bsdbt848=no
7498 cat > $TMPC <<EOF
7499 #include <sys/types.h>
7500 $def_ioctl_bt848_h_name
7501 #ifdef IOCTL_BT848_H_NAME
7502 #include IOCTL_BT848_H_NAME
7503 #endif
7504 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7506 cc_check && _radio_bsdbt848=yes
7507 echores "$_radio_bsdbt848"
7508 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7510 if test "$_radio_bsdbt848" = yes ; then
7511 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7512 else
7513 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7516 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7517 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7518 die "Radio driver requires BSD BT848, V4L or V4L2!"
7521 echocheck "Video 4 Linux 2 MPEG PVR interface"
7522 if test "$_pvr" = auto ; then
7523 _pvr=no
7524 if test "$_tv_v4l2" = yes && linux ; then
7525 cat > $TMPC <<EOF
7526 #include <stdlib.h>
7527 #include <inttypes.h>
7528 #include <linux/types.h>
7529 #include <linux/videodev2.h>
7530 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7532 cc_check && _pvr=yes
7535 if test "$_pvr" = yes ; then
7536 def_pvr='#define CONFIG_PVR 1'
7537 _inputmodules="pvr $_inputmodules"
7538 else
7539 _noinputmodules="pvr $_noinputmodules"
7540 def_pvr='#undef CONFIG_PVR'
7542 echores "$_pvr"
7545 echocheck "ftp"
7546 if ! beos && test "$_ftp" = yes ; then
7547 def_ftp='#define CONFIG_FTP 1'
7548 _inputmodules="ftp $_inputmodules"
7549 else
7550 _noinputmodules="ftp $_noinputmodules"
7551 def_ftp='#undef CONFIG_FTP'
7553 echores "$_ftp"
7555 echocheck "vstream client"
7556 if test "$_vstream" = auto ; then
7557 _vstream=no
7558 cat > $TMPC <<EOF
7559 #include <vstream-client.h>
7560 void vstream_error(const char *format, ... ) {}
7561 int main(void) { vstream_start(); return 0; }
7563 cc_check -lvstream-client && _vstream=yes
7565 if test "$_vstream" = yes ; then
7566 def_vstream='#define CONFIG_VSTREAM 1'
7567 _inputmodules="vstream $_inputmodules"
7568 extra_ldflags="$extra_ldflags -lvstream-client"
7569 else
7570 _noinputmodules="vstream $_noinputmodules"
7571 def_vstream='#undef CONFIG_VSTREAM'
7573 echores "$_vstream"
7576 echocheck "OSD menu"
7577 if test "$_menu" = yes ; then
7578 def_menu='#define CONFIG_MENU 1'
7579 test $_dvbin = "yes" && _menu_dvbin=yes
7580 else
7581 def_menu='#undef CONFIG_MENU'
7582 _menu_dvbin=no
7584 echores "$_menu"
7587 echocheck "Subtitles sorting"
7588 if test "$_sortsub" = yes ; then
7589 def_sortsub='#define CONFIG_SORTSUB 1'
7590 else
7591 def_sortsub='#undef CONFIG_SORTSUB'
7593 echores "$_sortsub"
7596 echocheck "XMMS inputplugin support"
7597 if test "$_xmms" = yes ; then
7598 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7599 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7600 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7601 else
7602 _xmmsplugindir=/usr/lib/xmms/Input
7603 _xmmslibdir=/usr/lib
7606 def_xmms='#define CONFIG_XMMS 1'
7607 if darwin ; then
7608 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7609 else
7610 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7612 else
7613 def_xmms='#undef CONFIG_XMMS'
7615 echores "$_xmms"
7617 if test "$_charset" != "noconv" ; then
7618 def_charset="#define MSG_CHARSET \"$_charset\""
7619 else
7620 def_charset="#undef MSG_CHARSET"
7621 _charset="UTF-8"
7624 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
7625 echocheck "iconv program"
7626 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
7627 if test "$?" -ne 0 ; then
7628 echores "no"
7629 echo "No working iconv program found, use "
7630 echo "--charset=UTF-8 to continue anyway."
7631 echo "If you also have problems with iconv library functions use --charset=noconv."
7632 exit 1
7633 else
7634 echores "yes"
7638 #############################################################################
7640 echocheck "automatic gdb attach"
7641 if test "$_crash_debug" = yes ; then
7642 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7643 else
7644 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7645 _crash_debug=no
7647 echores "$_crash_debug"
7649 echocheck "compiler support for noexecstack"
7650 cat > $TMPC <<EOF
7651 int main(void) { return 0; }
7653 if cc_check -Wl,-z,noexecstack ; then
7654 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7655 echores "yes"
7656 else
7657 echores "no"
7660 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7661 if cc_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7662 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7663 echores "yes"
7664 else
7665 echores "no"
7669 # Dynamic linking flags
7670 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7671 _ld_dl_dynamic=''
7672 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7673 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7674 _ld_dl_dynamic='-rdynamic'
7677 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7678 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7679 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7681 def_debug='#undef MP_DEBUG'
7682 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7685 echocheck "joystick"
7686 def_joystick='#undef CONFIG_JOYSTICK'
7687 if test "$_joystick" = yes ; then
7688 if linux ; then
7689 # TODO add some check
7690 def_joystick='#define CONFIG_JOYSTICK 1'
7691 else
7692 _joystick="no"
7693 _res_comment="unsupported under $system_name"
7696 echores "$_joystick"
7698 echocheck "lirc"
7699 if test "$_lirc" = auto ; then
7700 _lirc=no
7701 cat > $TMPC <<EOF
7702 #include <lirc/lirc_client.h>
7703 int main(void) { return 0; }
7705 cc_check -llirc_client && _lirc=yes
7707 if test "$_lirc" = yes ; then
7708 def_lirc='#define CONFIG_LIRC 1'
7709 libs_mplayer="$libs_mplayer -llirc_client"
7710 else
7711 def_lirc='#undef CONFIG_LIRC'
7713 echores "$_lirc"
7715 echocheck "lircc"
7716 if test "$_lircc" = auto ; then
7717 _lircc=no
7718 cat > $TMPC <<EOF
7719 #include <lirc/lircc.h>
7720 int main(void) { return 0; }
7722 cc_check -llircc && _lircc=yes
7724 if test "$_lircc" = yes ; then
7725 def_lircc='#define CONFIG_LIRCC 1'
7726 libs_mplayer="$libs_mplayer -llircc"
7727 else
7728 def_lircc='#undef CONFIG_LIRCC'
7730 echores "$_lircc"
7732 if arm; then
7733 # Detect maemo development platform libraries availability (http://www.maemo.org),
7734 # they are used when run on Nokia 770|8x0
7735 echocheck "maemo (Nokia 770|8x0)"
7736 if test "$_maemo" = auto ; then
7737 _maemo=no
7738 cat > $TMPC << EOF
7739 #include <libosso.h>
7740 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7742 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7744 if test "$_maemo" = yes ; then
7745 def_maemo='#define CONFIG_MAEMO 1'
7746 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7747 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7748 else
7749 def_maemo='#undef CONFIG_MAEMO'
7751 echores "$_maemo"
7754 #############################################################################
7756 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7757 # the OMF format needs to come after the 'extern symbol prefix' check, which
7758 # uses nm.
7759 if os2 ; then
7760 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7763 # linker paths should be the same for mencoder and mplayer
7764 _ld_tmp=""
7765 for I in $libs_mplayer ; do
7766 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7767 if test -z "$_tmp" ; then
7768 extra_ldflags="$extra_ldflags $I"
7769 else
7770 _ld_tmp="$_ld_tmp $I"
7772 done
7773 libs_mplayer=$_ld_tmp
7776 #############################################################################
7777 # 64 bit file offsets?
7778 if test "$_largefiles" = yes || freebsd ; then
7779 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7780 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7781 # dvdread support requires this (for off64_t)
7782 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7786 CXXFLAGS=" $CFLAGS -Iffmpeg -D__STDC_LIMIT_MACROS"
7788 # This must be the last test to be performed. Any other tests following it
7789 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7790 # against libdvdread (to permit MPlayer to use its own copy of the library).
7791 # So any compilation using the flags added here but not linking against
7792 # libdvdread can fail.
7793 echocheck "DVD support (libdvdnav)"
7794 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7795 _dvdnav=no
7797 dvdnav_internal=no
7798 if test "$_dvdnav" = auto ; then
7799 if test "$_dvdread_internal" = yes ; then
7800 _dvdnav=yes
7801 dvdnav_internal=yes
7802 _res_comment="internal"
7803 else
7804 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7807 if test "$_dvdnav" = auto ; then
7808 cat > $TMPC <<EOF
7809 #include <inttypes.h>
7810 #include <dvdnav/dvdnav.h>
7811 int main(void) { dvdnav_t *dvd=0; return 0; }
7813 _dvdnav=no
7814 _dvdnavdir=$($_dvdnavconfig --cflags)
7815 _dvdnavlibs=$($_dvdnavconfig --libs)
7816 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7818 if test "$_dvdnav" = yes ; then
7819 _largefiles=yes
7820 def_dvdnav='#define CONFIG_DVDNAV 1'
7821 if test "$dvdnav_internal" = yes ; then
7822 cflags_libdvdnav="-Ilibdvdnav"
7823 _inputmodules="dvdnav(internal) $_inputmodules"
7824 else
7825 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7826 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7827 _inputmodules="dvdnav $_inputmodules"
7829 else
7830 def_dvdnav='#undef CONFIG_DVDNAV'
7831 _noinputmodules="dvdnav $_noinputmodules"
7833 echores "$_dvdnav"
7835 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7836 # Read dvdnav comment above.
7838 #############################################################################
7839 echo "Creating config.mak"
7840 cat > config.mak << EOF
7841 # -------- Generated by configure -----------
7843 # Ensure that locale settings do not interfere with shell commands.
7844 export LC_ALL = C
7846 CONFIGURATION = $_configuration
7848 CHARSET = $_charset
7849 DOC_LANGS = $language_doc
7850 DOC_LANG_ALL = $doc_lang_all
7851 MAN_LANGS = $language_man
7852 MAN_LANG_ALL = $man_lang_all
7854 prefix = \$(DESTDIR)$_prefix
7855 BINDIR = \$(DESTDIR)$_bindir
7856 DATADIR = \$(DESTDIR)$_datadir
7857 LIBDIR = \$(DESTDIR)$_libdir
7858 MANDIR = \$(DESTDIR)$_mandir
7859 CONFDIR = \$(DESTDIR)$_confdir
7860 LOCALEDIR = \$(DESTDIR)$_localedir
7862 AR = $_ar
7863 AS = $_cc
7864 CC = $_cc
7865 CXX = $_cc
7866 HOST_CC = $_host_cc
7867 YASM = $_yasm
7868 INSTALL = $_install
7869 INSTALLSTRIP = $_install_strip
7870 RANLIB = $_ranlib
7871 WINDRES = $_windres
7873 CFLAGS = $CFLAGS $extra_cflags
7874 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7875 CFLAGS_DHAHELPER = $cflags_dhahelper
7876 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7877 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7878 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7879 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7880 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7881 CFLAGS_STACKREALIGN = $cflags_stackrealign
7882 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7883 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7884 YASMFLAGS = $YASMFLAGS
7886 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7887 EXTRALIBS_MPLAYER = $libs_mplayer
7888 EXTRALIBS_MENCODER = $libs_mencoder
7890 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 &,"
7891 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 &,"
7893 GETCH = $_getch
7894 HELP_FILE = $_mp_help
7895 TIMER = $_timer
7897 EXESUF = $_exesuf
7898 EXESUFS_ALL = .exe
7900 $_target_arch
7901 $_target_subarch
7902 $(echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/')
7904 MENCODER = $_mencoder
7905 MPLAYER = $_mplayer
7907 NEED_GETTIMEOFDAY = $_need_gettimeofday
7908 NEED_GLOB = $_need_glob
7909 NEED_MMAP = $_need_mmap
7910 NEED_SETENV = $_need_setenv
7911 NEED_SHMEM = $_need_shmem
7912 NEED_STRSEP = $_need_strsep
7913 NEED_SWAB = $_need_swab
7914 NEED_VSSCANF = $_need_vsscanf
7916 # features
7917 3DFX = $_3dfx
7918 AA = $_aa
7919 ALSA1X = $_alsa1x
7920 ALSA9 = $_alsa9
7921 ALSA5 = $_alsa5
7922 APPLE_IR = $_apple_ir
7923 APPLE_REMOTE = $_apple_remote
7924 ARTS = $_arts
7925 AUDIO_INPUT = $_audio_input
7926 BITMAP_FONT = $_bitmap_font
7927 BL = $_bl
7928 CACA = $_caca
7929 CDDA = $_cdda
7930 CDDB = $_cddb
7931 COREAUDIO = $_coreaudio
7932 COREVIDEO = $_corevideo
7933 DART = $_dart
7934 DFBMGA = $_dfbmga
7935 DGA = $_dga
7936 DIRECT3D = $_direct3d
7937 DIRECTFB = $_directfb
7938 DIRECTX = $_directx
7939 DVBIN = $_dvbin
7940 DVDNAV = $_dvdnav
7941 DVDNAV_INTERNAL = $dvdnav_internal
7942 DVDREAD = $_dvdread
7943 DVDREAD_INTERNAL = $_dvdread_internal
7944 DXR2 = $_dxr2
7945 DXR3 = $_dxr3
7946 ESD = $_esd
7947 FAAC=$_faac
7948 FAAD = $_faad
7949 FAAD_INTERNAL = $_faad_internal
7950 FASTMEMCPY = $_fastmemcpy
7951 FBDEV = $_fbdev
7952 FREETYPE = $_freetype
7953 FTP = $_ftp
7954 GIF = $_gif
7955 GGI = $_ggi
7956 GL = $_gl
7957 GL_WIN32 = $_gl_win32
7958 GL_X11 = $_gl_x11
7959 MATRIXVIEW = $matrixview
7960 HAVE_POSIX_SELECT = $_posix_select
7961 HAVE_SYS_MMAN_H = $_mman
7962 IVTV = $_ivtv
7963 JACK = $_jack
7964 JOYSTICK = $_joystick
7965 JPEG = $_jpeg
7966 KVA = $_kva
7967 LADSPA = $_ladspa
7968 LIBA52 = $_liba52
7969 LIBA52_INTERNAL = $_liba52_internal
7970 LIBASS = $_ass
7971 LIBBS2B = $_libbs2b
7972 LIBDCA = $_libdca
7973 LIBDV = $_libdv
7974 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7975 LIBLZO = $_liblzo
7976 LIBMAD = $_mad
7977 LIBMENU = $_menu
7978 LIBMENU_DVBIN = $_menu_dvbin
7979 LIBMPEG2 = $_libmpeg2
7980 LIBNEMESI = $_nemesi
7981 LIBNUT = $_libnut
7982 LIBSMBCLIENT = $_smb
7983 LIBTHEORA = $_theora
7984 LIRC = $_lirc
7985 LIVE555 = $_live
7986 MACOSX_BUNDLE = $_macosx_bundle
7987 MACOSX_FINDER = $_macosx_finder
7988 MD5SUM = $_md5sum
7989 MGA = $_mga
7990 MNG = $_mng
7991 MP3LAME = $_mp3lame
7992 MP3LIB = $_mp3lib
7993 MUSEPACK = $_musepack
7994 NAS = $_nas
7995 NATIVE_RTSP = $_native_rtsp
7996 NETWORK = $_network
7997 OPENAL = $_openal
7998 OSS = $_ossaudio
7999 PE_EXECUTABLE = $_pe_executable
8000 PNG = $_png
8001 PNM = $_pnm
8002 PRIORITY = $_priority
8003 PULSE = $_pulse
8004 PVR = $_pvr
8005 QTX_CODECS = $_qtx
8006 QTX_CODECS_WIN32 = $_qtx_codecs_win32
8007 QTX_EMULATION = $_qtx_emulation
8008 QUARTZ = $_quartz
8009 RADIO=$_radio
8010 RADIO_CAPTURE=$_radio_capture
8011 REAL_CODECS = $_real
8012 S3FB = $_s3fb
8013 SDL = $_sdl
8014 SPEEX = $_speex
8015 STREAM_CACHE = $_stream_cache
8016 SGIAUDIO = $_sgiaudio
8017 SUNAUDIO = $_sunaudio
8018 SVGA = $_svga
8019 TDFXFB = $_tdfxfb
8020 TDFXVID = $_tdfxvid
8021 TGA = $_tga
8022 TOOLAME=$_toolame
8023 TREMOR_INTERNAL = $_tremor_internal
8024 TV = $_tv
8025 TV_BSDBT848 = $_tv_bsdbt848
8026 TV_DSHOW = $_tv_dshow
8027 TV_V4L = $_tv_v4l
8028 TV_V4L1 = $_tv_v4l1
8029 TV_V4L2 = $_tv_v4l2
8030 TWOLAME=$_twolame
8031 UNRAR_EXEC = $_unrar_exec
8032 V4L2 = $_v4l2
8033 VCD = $_vcd
8034 VDPAU = $_vdpau
8035 VESA = $_vesa
8036 VIDIX = $_vidix
8037 VIDIX_PCIDB = $_vidix_pcidb_val
8038 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8039 VIDIX_IVTV=$_vidix_drv_ivtv
8040 VIDIX_MACH64=$_vidix_drv_mach64
8041 VIDIX_MGA=$_vidix_drv_mga
8042 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8043 VIDIX_NVIDIA=$_vidix_drv_nvidia
8044 VIDIX_PM2=$_vidix_drv_pm2
8045 VIDIX_PM3=$_vidix_drv_pm3
8046 VIDIX_RADEON=$_vidix_drv_radeon
8047 VIDIX_RAGE128=$_vidix_drv_rage128
8048 VIDIX_S3=$_vidix_drv_s3
8049 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8050 VIDIX_SIS=$_vidix_drv_sis
8051 VIDIX_UNICHROME=$_vidix_drv_unichrome
8052 VORBIS = $_vorbis
8053 VSTREAM = $_vstream
8054 WII = $_wii
8055 WIN32DLL = $_win32dll
8056 WIN32WAVEOUT = $_win32waveout
8057 WIN32_EMULATION = $_win32_emulation
8058 WINVIDIX = $winvidix
8059 X11 = $_x11
8060 X264 = $_x264
8061 XANIM_CODECS = $_xanim
8062 XMGA = $_xmga
8063 XMMS_PLUGINS = $_xmms
8064 XV = $_xv
8065 XVID4 = $_xvid
8066 XVIDIX = $xvidix
8067 XVMC = $_xvmc
8068 XVR100 = $_xvr100
8069 YUV4MPEG = $_yuv4mpeg
8070 ZR = $_zr
8072 # FFmpeg
8073 LIBAVUTIL = $_libavutil
8074 LIBAVCODEC = $_libavcodec
8075 LIBAVFORMAT = $_libavformat
8076 LIBPOSTPROC = $_libpostproc
8077 LIBSWSCALE = $_libswscale
8078 LIBAVCODEC_INTERNALS = $_libavcodec_internals
8079 LIBSWSCALE_INTERNALS = $_libswscale_internals
8080 FFMPEG_SOURCE_PATH = $_ffmpeg_source
8082 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8083 CONFIG_AANDCT=yes
8084 CONFIG_FFT=yes
8085 CONFIG_FFT_MMX=$fft_mmx
8086 CONFIG_GOLOMB=yes
8087 CONFIG_LPC=yes
8088 CONFIG_MDCT=yes
8089 CONFIG_RDFT=yes
8091 CONFIG_BZLIB=$bzlib
8092 CONFIG_ENCODERS=yes
8093 CONFIG_GPL=yes
8094 CONFIG_MLIB = $_mlib
8095 CONFIG_MUXERS=$_mencoder
8096 CONFIG_VDPAU=$_vdpau
8097 CONFIG_XVMC=$_xvmc
8098 CONFIG_ZLIB=$_zlib
8100 HAVE_PTHREADS = $_pthreads
8101 HAVE_SHM = $_shm
8102 HAVE_W32THREADS = $_w32threads
8103 HAVE_YASM = $_have_yasm
8107 #############################################################################
8109 ff_config_enable () {
8110 _nprefix=$3;
8111 test -z "$_nprefix" && _nprefix='CONFIG'
8112 for part in $1; do
8113 if $(echo $2 | grep -q -E "(^| )$part($| )"); then
8114 echo "#define ${_nprefix}_$part 1"
8115 else
8116 echo "#define ${_nprefix}_$part 0"
8118 done
8121 echo "Creating config.h"
8122 cat > $TMPH << EOF
8123 /*----------------------------------------------------------------------------
8124 ** This file has been automatically generated by configure any changes in it
8125 ** will be lost when you run configure again.
8126 ** Instead of modifying definitions here, use the --enable/--disable options
8127 ** of the configure script! See ./configure --help for details.
8128 *---------------------------------------------------------------------------*/
8130 #ifndef MPLAYER_CONFIG_H
8131 #define MPLAYER_CONFIG_H
8133 /* Undefine this if you do not want to select mono audio (left or right)
8134 with a stereo MPEG layer 2/3 audio stream. The command line option
8135 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8136 right-only), with 0 being the default.
8138 #define CONFIG_FAKE_MONO 1
8140 /* set up audio OUTBURST. Do not change this! */
8141 #define OUTBURST 512
8143 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8144 #undef FAST_OSD
8145 #undef FAST_OSD_TABLE
8147 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8148 #define MPEG12_POSTPROC 1
8149 #define ATTRIBUTE_ALIGNED_MAX 16
8153 #define CONFIGURATION "$_configuration"
8155 #define MPLAYER_DATADIR "$_datadir"
8156 #define MPLAYER_CONFDIR "$_confdir"
8157 #define MPLAYER_LIBDIR "$_libdir"
8158 #define MPLAYER_LOCALEDIR "$_localedir"
8160 $def_translation
8162 /* definitions needed by included libraries */
8163 #define HAVE_INTTYPES_H 1
8164 /* libmpeg2 + FFmpeg */
8165 $def_fast_inttypes
8166 /* libdvdcss */
8167 #define HAVE_ERRNO_H 1
8168 /* libdvdcss + libdvdread */
8169 #define HAVE_LIMITS_H 1
8170 /* libdvdcss + libfaad2 */
8171 #define HAVE_UNISTD_H 1
8172 /* libfaad2 + libdvdread */
8173 #define STDC_HEADERS 1
8174 #define HAVE_MEMCPY 1
8175 /* libfaad2 */
8176 #define HAVE_STRING_H 1
8177 #define HAVE_STRINGS_H 1
8178 #define HAVE_SYS_STAT_H 1
8179 #define HAVE_SYS_TYPES_H 1
8180 /* libdvdnav */
8181 #define READ_CACHE_TRACE 0
8182 /* libdvdread */
8183 #define HAVE_DLFCN_H 1
8184 $def_dvdcss
8187 /* system headers */
8188 $def_alloca_h
8189 $def_alsa_asoundlib_h
8190 $def_altivec_h
8191 $def_malloc_h
8192 $def_mman_h
8193 $def_mman_has_map_failed
8194 $def_soundcard_h
8195 $def_sys_asoundlib_h
8196 $def_sys_soundcard_h
8197 $def_sys_sysinfo_h
8198 $def_termios_h
8199 $def_termios_sys_h
8200 $def_winsock2_h
8203 /* system functions */
8204 $def_exp2
8205 $def_exp2f
8206 $def_gethostbyname2
8207 $def_gettimeofday
8208 $def_glob
8209 $def_langinfo
8210 $def_llrint
8211 $def_log2
8212 $def_log2f
8213 $def_lrint
8214 $def_lrintf
8215 $def_map_memalign
8216 $def_memalign
8217 $def_nanosleep
8218 $def_posix_select
8219 $def_round
8220 $def_roundf
8221 $def_select
8222 $def_setenv
8223 $def_shm
8224 $def_strsep
8225 $def_swab
8226 $def_sysi86
8227 $def_sysi86_iv
8228 $def_termcap
8229 $def_termios
8230 $def_truncf
8231 $def_vsscanf
8234 /* system-specific features */
8235 $def_asmalign_pot
8236 $def_builtin_expect
8237 $def_dl
8238 $def_extern_asm
8239 $def_extern_prefix
8240 $def_iconv
8241 $def_kstat
8242 $def_macosx_bundle
8243 $def_macosx_finder
8244 $def_maemo
8245 $def_named_asm_args
8246 $def_priority
8247 $def_quicktime
8248 $def_restrict_keyword
8249 $def_rtc
8250 $def_unrar_exec
8253 /* configurable options */
8254 $def_charset
8255 $def_crash_debug
8256 $def_debug
8257 $def_dynamic_plugins
8258 $def_fastmemcpy
8259 $def_menu
8260 $def_runtime_cpudetection
8261 $def_sighandler
8262 $def_sortsub
8263 $def_stream_cache
8264 $def_pthread_cache
8267 /* CPU stuff */
8268 #define __CPU__ $iproc
8269 $def_words_endian
8270 $def_bigendian
8271 $(ff_config_enable "$_arch_all" "$_arch" "ARCH")
8272 $(ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE")
8275 /* DVD/VCD/CD */
8276 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8277 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8278 $def_bsdi_dvd
8279 $def_cddb
8280 $def_cdio
8281 $def_cdparanoia
8282 $def_cdrom
8283 $def_dvd
8284 $def_dvd_bsd
8285 $def_dvd_darwin
8286 $def_dvd_linux
8287 $def_dvd_openbsd
8288 $def_dvdio
8289 $def_dvdnav
8290 $def_dvdread
8291 $def_hpux_scsi_h
8292 $def_libcdio
8293 $def_sol_scsi_h
8294 $def_vcd
8297 /* codec libraries */
8298 $def_faac
8299 $def_faad
8300 $def_faad_internal
8301 $def_liba52
8302 $def_liba52_internal
8303 $def_libdca
8304 $def_libdv
8305 $def_liblzo
8306 $def_libmpeg2
8307 $def_mad
8308 $def_mp3lame
8309 $def_mp3lame_preset
8310 $def_mp3lame_preset_medium
8311 $def_mp3lib
8312 $def_musepack
8313 $def_speex
8314 $def_theora
8315 $def_toolame
8316 $def_tremor
8317 $def_twolame
8318 $def_vorbis
8319 $def_x264
8320 $def_xvid
8321 $def_zlib
8323 $def_libnut
8326 /* binary codecs */
8327 $def_qtx
8328 $def_qtx_win32
8329 $def_real
8330 $def_real_path
8331 $def_win32_loader
8332 $def_win32dll
8333 #define WIN32_PATH "$_win32codecsdir"
8334 $def_xanim
8335 $def_xanim_path
8336 $def_xmms
8337 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8340 /* Audio output drivers */
8341 $def_alsa
8342 $def_alsa1x
8343 $def_alsa5
8344 $def_alsa9
8345 $def_arts
8346 $def_coreaudio
8347 $def_dart
8348 $def_esd
8349 $def_esd_latency
8350 $def_jack
8351 $def_nas
8352 $def_openal
8353 $def_openal_h
8354 $def_ossaudio
8355 $def_ossaudio_devdsp
8356 $def_ossaudio_devmixer
8357 $def_pulse
8358 $def_sgiaudio
8359 $def_sunaudio
8360 $def_win32waveout
8362 $def_ladspa
8363 $def_libbs2b
8366 /* input */
8367 $def_apple_ir
8368 $def_apple_remote
8369 $def_ioctl_bt848_h_name
8370 $def_ioctl_meteor_h_name
8371 $def_joystick
8372 $def_lirc
8373 $def_lircc
8374 $def_pvr
8375 $def_radio
8376 $def_radio_bsdbt848
8377 $def_radio_capture
8378 $def_radio_v4l
8379 $def_radio_v4l2
8380 $def_tv
8381 $def_tv_bsdbt848
8382 $def_tv_dshow
8383 $def_tv_v4l
8384 $def_tv_v4l1
8385 $def_tv_v4l2
8388 /* font stuff */
8389 $def_ass
8390 $def_bitmap_font
8391 $def_enca
8392 $def_fontconfig
8393 $def_freetype
8394 $def_fribidi
8397 /* networking */
8398 $def_closesocket
8399 $def_ftp
8400 $def_inet6
8401 $def_inet_aton
8402 $def_inet_pton
8403 $def_live
8404 $def_nemesi
8405 $def_network
8406 $def_smb
8407 $def_socklen_t
8408 $def_vstream
8411 /* libvo options */
8412 $def_3dfx
8413 $def_aa
8414 $def_bl
8415 $def_caca
8416 $def_corevideo
8417 $def_dfbmga
8418 $def_dga
8419 $def_dga1
8420 $def_dga2
8421 $def_direct3d
8422 $def_directfb
8423 $def_directfb_version
8424 $def_directx
8425 $def_dvb
8426 $def_dvb_head
8427 $def_dvbin
8428 $def_dxr2
8429 $def_dxr3
8430 $def_fbdev
8431 $def_ggi
8432 $def_ggiwmh
8433 $def_gif
8434 $def_gif_4
8435 $def_gif_tvt_hack
8436 $def_gl
8437 $def_gl_win32
8438 $def_gl_x11
8439 $def_matrixview
8440 $def_ivtv
8441 $def_jpeg
8442 $def_kva
8443 $def_md5sum
8444 $def_mga
8445 $def_mng
8446 $def_png
8447 $def_pnm
8448 $def_quartz
8449 $def_s3fb
8450 $def_sdl
8451 $def_sdl_sdl_h
8452 $def_sdlbuggy
8453 $def_svga
8454 $def_tdfxfb
8455 $def_tdfxvid
8456 $def_tga
8457 $def_v4l2
8458 $def_vdpau
8459 $def_vesa
8460 $def_vidix
8461 $def_vidix_drv_cyberblade
8462 $def_vidix_drv_ivtv
8463 $def_vidix_drv_mach64
8464 $def_vidix_drv_mga
8465 $def_vidix_drv_mga_crtc2
8466 $def_vidix_drv_nvidia
8467 $def_vidix_drv_pm3
8468 $def_vidix_drv_radeon
8469 $def_vidix_drv_rage128
8470 $def_vidix_drv_s3
8471 $def_vidix_drv_sh_veu
8472 $def_vidix_drv_sis
8473 $def_vidix_drv_unichrome
8474 $def_vidix_pfx
8475 $def_vm
8476 $def_wii
8477 $def_x11
8478 $def_xdpms
8479 $def_xf86keysym
8480 $def_xinerama
8481 $def_xmga
8482 $def_xss
8483 $def_xv
8484 $def_xvmc
8485 $def_xvr100
8486 $def_yuv4mpeg
8487 $def_zr
8490 /* FFmpeg */
8491 $def_libavcodec
8492 $def_libavformat
8493 $def_libavutil
8494 $def_libpostproc
8495 $def_libswscale
8496 $def_libavcodec_internals
8497 $def_libswscale_internals
8499 #define CONFIG_DECODERS 1
8500 #define CONFIG_ENCODERS 1
8501 #define CONFIG_DEMUXERS 1
8502 $def_muxers
8504 $def_arpa_inet_h
8505 $def_bswap
8506 $def_bzlib
8507 $def_dcbzl
8508 $def_dos_paths
8509 $def_fast_64bit
8510 $def_fast_unaligned
8511 $def_memalign_hack
8512 $def_mlib
8513 $def_mkstemp
8514 $def_posix_memalign
8515 $def_pthreads
8516 $def_ten_operands
8517 $def_threads
8518 $def_xform_asm
8519 $def_yasm
8521 #define CONFIG_FASTDIV 0
8522 #define CONFIG_FFSERVER 0
8523 #define CONFIG_GPL 1
8524 #define CONFIG_GRAY 0
8525 #define CONFIG_HARDCODED_TABLES 0
8526 #define CONFIG_LIBVORBIS 0
8527 #define CONFIG_POWERPC_PERF 0
8528 #define CONFIG_SMALL 0
8529 #define CONFIG_SWSCALE 1
8530 #define CONFIG_SWSCALE_ALPHA 1
8532 #define HAVE_ATTRIBUTE_PACKED 1
8533 #define HAVE_GETHRTIME 0
8534 #define HAVE_INLINE_ASM 1
8535 #define HAVE_LDBRX 0
8536 #define HAVE_POLL_H 1
8537 #define HAVE_PPC4XX 0
8538 #define HAVE_VFP_ARGS 1
8539 #define HAVE_VIRTUALALLOC 0
8541 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8542 #define CONFIG_AANDCT 1
8543 #define CONFIG_FFT 1
8544 #define CONFIG_GOLOMB 1
8545 #define CONFIG_LPC 1
8546 #define CONFIG_MDCT 1
8547 #define CONFIG_RDFT 1
8549 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8550 $def_ebx_available
8551 #ifndef MP_DEBUG
8552 #define HAVE_EBP_AVAILABLE 1
8553 #else
8554 #define HAVE_EBP_AVAILABLE 0
8555 #endif
8557 #define CONFIG_H263_VAAPI_HWACCEL 0
8558 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8559 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8560 #define CONFIG_H264_VAAPI_HWACCEL 0
8561 #define CONFIG_VC1_VAAPI_HWACCEL 0
8562 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8564 #endif /* MPLAYER_CONFIG_H */
8567 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8568 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8570 #############################################################################
8572 ./version.sh `$_cc -dumpversion`
8574 cat << EOF
8576 Config files successfully generated by ./configure $_configuration !
8578 Install prefix: $_prefix
8579 Data directory: $_datadir
8580 Config direct.: $_confdir
8582 Byte order: $_byte_order
8583 Optimizing for: $_optimizing
8585 Languages:
8586 Messages: $language_msg
8587 Manual pages: $language_man
8588 Documentation: $language_doc
8590 Enabled optional drivers:
8591 Input: $_inputmodules
8592 Codecs: $_codecmodules
8593 Audio output: $_aomodules
8594 Video output: $_vomodules
8596 Disabled optional drivers:
8597 Input: $_noinputmodules
8598 Codecs: $_nocodecmodules
8599 Audio output: $_noaomodules
8600 Video output: $_novomodules
8602 'config.h' and 'config.mak' contain your configuration options.
8603 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8604 compile *** DO NOT REPORT BUGS if you tweak these files ***
8606 'make' will now compile MPlayer and 'make install' will install it.
8607 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8612 if test "$_mtrr" = yes ; then
8613 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8614 echo
8617 if ! x86_32; then
8618 cat <<EOF
8619 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8620 operating system ($system_name). You may encounter a few files that cannot
8621 be played due to missing open source video/audio codec support.
8627 cat <<EOF
8628 Check $TMPLOG if you wonder why an autodetection failed (make sure
8629 development headers/packages are installed).
8631 NOTE: The --enable-* parameters unconditionally force options on, completely
8632 skipping autodetection. This behavior is unlike what you may be used to from
8633 autoconf-based configure scripts that can decide to override you. This greater
8634 level of control comes at a price. You may have to provide the correct compiler
8635 and linker flags yourself.
8636 If you used one of these options (except --enable-menu and similar ones that
8637 turn on internal features) and experience a compilation or linking failure,
8638 make sure you have passed the necessary compiler/linker flags to configure.
8640 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8644 if test "$_warn_CFLAGS" = yes; then
8645 cat <<EOF
8647 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8648 but:
8650 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8652 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8653 To do so, execute 'CFLAGS= ./configure <options>'
8658 # Last move:
8659 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"