Update MPlayer sources
[mplayer/kovensky.git] / configure
blob2ef6e4e26cd52e498cf9525d0e7d380b1d0b95bc
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 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")
201 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
203 show_help(){
204 cat << EOF
205 Usage: $0 [OPTIONS]...
207 Configuration:
208 -h, --help display this help and exit
210 Installation directories:
211 --prefix=DIR prefix directory for installation [/usr/local]
212 --bindir=DIR directory for installing binaries [PREFIX/bin]
213 --datadir=DIR directory for installing machine independent
214 data files (skins, etc) [PREFIX/share/mplayer]
215 --mandir=DIR directory for installing man pages [PREFIX/share/man]
216 --confdir=DIR directory for installing configuration files
217 [PREFIX/etc/mplayer]
218 --localedir=DIR directory for locale tree [PREFIX/share/locale]
219 --libdir=DIR directory for object code libraries [PREFIX/lib]
220 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
221 --win32codecsdir=DIR directory for Windows DLLs [LIBDIR/codecs]
222 --xanimcodecsdir=DIR directory for XAnim codecs [LIBDIR/codecs]
223 --realcodecsdir=DIR directory for RealPlayer codecs [LIBDIR/codecs]
225 Optional features:
226 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
227 --disable-mplayer disable MPlayer compilation [enable]
228 --disable-largefiles disable support for files > 2GB [enable]
229 --enable-linux-devfs set default devices to devfs [disable]
230 --enable-termcap use termcap database for key codes [autodetect]
231 --enable-termios use termios database for key codes [autodetect]
232 --disable-iconv disable iconv for encoding conversion [autodetect]
233 --disable-langinfo do not use langinfo [autodetect]
234 --enable-lirc enable LIRC (remote control) support [autodetect]
235 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
236 --enable-joystick enable joystick support [disable]
237 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
238 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
239 --disable-vm disable X video mode extensions [autodetect]
240 --disable-xf86keysym disable support for multimedia keys [autodetect]
241 --enable-radio enable radio interface [disable]
242 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
243 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
244 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
245 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
246 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
247 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
248 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
249 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
250 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
251 --disable-network disable networking [enable]
252 --enable-winsock2_h enable winsock2_h [autodetect]
253 --enable-smb enable Samba (SMB) input [autodetect]
254 --enable-live enable LIVE555 Streaming Media [autodetect]
255 --enable-nemesi enable Nemesi Streaming Media [autodetect]
256 --disable-vcd disable VCD support [autodetect]
257 --disable-dvdnav disable libdvdnav [autodetect]
258 --disable-dvdread disable libdvdread [autodetect]
259 --disable-dvdread-internal disable internal libdvdread [autodetect]
260 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
261 --disable-cdparanoia disable cdparanoia [autodetect]
262 --disable-cddb disable cddb [autodetect]
263 --disable-bitmap-font disable bitmap font support [enable]
264 --disable-freetype disable FreeType 2 font rendering [autodetect]
265 --disable-fontconfig disable fontconfig font lookup [autodetect]
266 --disable-unrarexec disable using of UnRAR executable [enabled]
267 --enable-menu enable OSD menu (not DVD menu) [disabled]
268 --disable-sortsub disable subtitle sorting [enabled]
269 --enable-fribidi enable the FriBiDi libs [autodetect]
270 --disable-enca disable ENCA charset oracle library [autodetect]
271 --disable-maemo disable maemo specific features [autodetect]
272 --enable-macosx-finder enable Mac OS X Finder invocation parameter
273 parsing [disabled]
274 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
275 --disable-inet6 disable IPv6 support [autodetect]
276 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
277 --disable-ftp disable FTP support [enabled]
278 --disable-vstream disable TiVo vstream client support [autodetect]
279 --disable-pthreads disable Posix threads support [autodetect]
280 --disable-w32threads disable Win32 threads support [autodetect]
281 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
282 --enable-rpath enable runtime linker path for extra libs [disabled]
284 Codecs:
285 --enable-gif enable GIF support [autodetect]
286 --enable-png enable PNG input/output support [autodetect]
287 --enable-mng enable MNG input support [autodetect]
288 --enable-jpeg enable JPEG input/output support [autodetect]
289 --enable-libcdio enable libcdio support [autodetect]
290 --enable-liblzo enable liblzo support [autodetect]
291 --disable-win32dll disable Win32 DLL support [autodetect]
292 --disable-qtx disable QuickTime codecs support [enabled]
293 --disable-xanim disable XAnim codecs support [enabled]
294 --disable-real disable RealPlayer codecs support [enabled]
295 --disable-xvid disable Xvid [autodetect]
296 --disable-x264 disable x264 [autodetect]
297 --disable-libnut disable libnut [autodetect]
298 --disable-libavutil disable libavutil [autodetect]
299 --disable-libavcodec disable libavcodec [autodetect]
300 --disable-libavformat disable libavformat [autodetect]
301 --disable-libpostproc disable libpostproc [autodetect]
302 --disable-libswscale disable libswscale [autodetect]
303 --disable-tremor-internal disable internal Tremor [enabled]
304 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
305 --enable-tremor enable external Tremor [autodetect]
306 --disable-libvorbis disable libvorbis support [autodetect]
307 --disable-speex disable Speex support [autodetect]
308 --enable-theora enable OggTheora libraries [autodetect]
309 --enable-faad enable external FAAD2 (AAC) [autodetect]
310 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
311 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
312 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
313 --disable-ladspa disable LADSPA plugin support [autodetect]
314 --disable-libbs2b disable libbs2b audio filter support [autodetect]
315 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
316 --disable-mad disable libmad (MPEG audio) support [autodetect]
317 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
318 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
319 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
320 --enable-xmms enable XMMS input plugin support [disabled]
321 --enable-libdca enable libdca support [autodetect]
322 --disable-mp3lib disable builtin mp3lib [autodetect]
323 --disable-liba52 disable liba52 [autodetect]
324 --enable-liba52-internal enable builtin liba52 [disabled]
325 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
326 --disable-musepack disable musepack support [autodetect]
328 Video output:
329 --disable-vidix disable VIDIX [for x86 *nix]
330 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
331 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
332 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
333 --disable-vidix-pcidb disable VIDIX PCI device name database
334 --enable-dhahelper enable VIDIX dhahelper support
335 --enable-svgalib_helper enable VIDIX svgalib_helper support
336 --enable-gl enable OpenGL video output [autodetect]
337 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
338 --enable-dga2 enable DGA 2 support [autodetect]
339 --enable-dga1 enable DGA 1 support [autodetect]
340 --enable-vesa enable VESA video output [autodetect]
341 --enable-svga enable SVGAlib video output [autodetect]
342 --enable-sdl enable SDL video output [autodetect]
343 --enable-kva enable KVA video output [autodetect]
344 --enable-aa enable AAlib video output [autodetect]
345 --enable-caca enable CACA video output [autodetect]
346 --enable-ggi enable GGI video output [autodetect]
347 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
348 --enable-direct3d enable Direct3D video output [autodetect]
349 --enable-directx enable DirectX video output [autodetect]
350 --enable-dxr2 enable DXR2 video output [autodetect]
351 --enable-dxr3 enable DXR3/H+ video output [autodetect]
352 --enable-ivtv enable IVTV TV-Out video output [autodetect]
353 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
354 --enable-dvb enable DVB video output [autodetect]
355 --enable-mga enable mga_vid video output [autodetect]
356 --enable-xmga enable mga_vid X11 video output [autodetect]
357 --enable-xv enable Xv video output [autodetect]
358 --enable-xvmc enable XvMC acceleration [disable]
359 --enable-vdpau enable VDPAU acceleration [autodetect]
360 --enable-vm enable XF86VidMode support [autodetect]
361 --enable-xinerama enable Xinerama support [autodetect]
362 --enable-x11 enable X11 video output [autodetect]
363 --enable-xshape enable XShape support [autodetect]
364 --disable-xss disable screensaver support via xss [autodetect]
365 --enable-fbdev enable FBDev video output [autodetect]
366 --enable-mlib enable mediaLib video output (Solaris) [disable]
367 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
368 --enable-tdfxfb enable tdfxfb video output [disable]
369 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
370 --enable-wii enable Nintendo Wii/GameCube video output [disable]
371 --enable-directfb enable DirectFB video output [autodetect]
372 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
373 --enable-bl enable Blinkenlights video output [disable]
374 --enable-tdfxvid enable tdfx_vid video output [disable]
375 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
376 --disable-tga disable Targa video output [enable]
377 --disable-pnm disable PNM video output [enable]
378 --disable-md5sum disable md5sum video output [enable]
379 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
380 --disable-corevideo disable CoreVideo video output [autodetect]
381 --disable-quartz disable Quartz video output [autodetect]
383 Audio output:
384 --disable-alsa disable ALSA audio output [autodetect]
385 --disable-ossaudio disable OSS audio output [autodetect]
386 --disable-arts disable aRts audio output [autodetect]
387 --disable-esd disable esd audio output [autodetect]
388 --disable-pulse disable Pulseaudio audio output [autodetect]
389 --disable-jack disable JACK audio output [autodetect]
390 --enable-openal enable OpenAL audio output [disable]
391 --disable-nas disable NAS audio output [autodetect]
392 --disable-sgiaudio disable SGI audio output [autodetect]
393 --disable-sunaudio disable Sun audio output [autodetect]
394 --disable-kai disable KAI audio output [autodetect]
395 --disable-dart disable DART audio output [autodetect]
396 --disable-win32waveout disable Windows waveout audio output [autodetect]
397 --disable-coreaudio disable CoreAudio audio output [autodetect]
398 --disable-select disable using select() on the audio device [enable]
400 Language options:
401 --enable-translation enable support for translated output [disable]
402 --charset=charset convert the console messages to this character set
403 --language-doc=lang language to use for the documentation [en]
404 --language-man=lang language to use for the man pages [en]
405 --language=lang default language to use [en]
406 Specific options override --language. You can pass a list of languages separated
407 by whitespace or commas instead of a single language. Nonexisting translations
408 will be dropped from each list. All documentation and man page translations
409 available in the list will be installed, for the messages the first available
410 translation will be used. The value "all" will activate all translations. The
411 LINGUAS environment variable is honored. In all cases the fallback is English.
412 Available values are: all $man_lang_all
414 Miscellaneous options:
415 --enable-runtime-cpudetection enable runtime CPU detection [disable]
416 --enable-cross-compile enable cross-compilation [autodetect]
417 --cc=COMPILER C compiler to build MPlayer [gcc]
418 --host-cc=COMPILER C compiler for tools needed while building [gcc]
419 --as=ASSEMBLER assembler to build MPlayer [as]
420 --nm=NM nm tool to build MPlayer [nm]
421 --yasm=YASM Yasm assembler to build MPlayer [yasm]
422 --ar=AR librarian to build MPlayer [ar]
423 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
424 --windres=WINDRES windres to build MPlayer [windres]
425 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
426 --enable-static build a statically linked binary
427 --with-install=PATH path to a custom install program
429 Advanced options:
430 --enable-mmx enable MMX [autodetect]
431 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
432 --enable-3dnow enable 3DNow! [autodetect]
433 --enable-3dnowext enable extended 3DNow! [autodetect]
434 --enable-sse enable SSE [autodetect]
435 --enable-sse2 enable SSE2 [autodetect]
436 --enable-ssse3 enable SSSE3 [autodetect]
437 --enable-shm enable shm [autodetect]
438 --enable-altivec enable AltiVec (PowerPC) [autodetect]
439 --enable-armv5te enable DSP extensions (ARM) [autodetect]
440 --enable-armv6 enable ARMv6 (ARM) [autodetect]
441 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
442 --enable-armvfp enable ARM VFP (ARM) [autodetect]
443 --enable-neon enable NEON (ARM) [autodetect]
444 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
445 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
446 --enable-big-endian force byte order to big-endian [autodetect]
447 --enable-debug[=1-3] compile-in debugging information [disable]
448 --enable-profile compile-in profiling information [disable]
449 --disable-sighandler disable sighandler for crashes [enable]
450 --enable-crash-debug enable automatic gdb attach on crash [disable]
451 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
452 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
454 Use these options if autodetection fails:
455 --extra-cflags=FLAGS extra CFLAGS
456 --extra-ldflags=FLAGS extra LDFLAGS
457 --extra-libs=FLAGS extra linker flags
458 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
459 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
460 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
462 --with-freetype-config=PATH path to freetype-config
463 --with-fribidi-config=PATH path to fribidi-config
464 --with-glib-config=PATH path to glib*-config
465 --with-gtk-config=PATH path to gtk*-config
466 --with-sdl-config=PATH path to sdl*-config
467 --with-dvdnav-config=PATH path to dvdnav-config
468 --with-dvdread-config=PATH path to dvdread-config
470 This configure script is NOT autoconf-based, even though its output is similar.
471 It will try to autodetect all configuration options. If you --enable an option
472 it will be forcefully turned on, skipping autodetection. This can break
473 compilation, so you need to know what you are doing.
475 exit 0
476 } #show_help()
478 # GOTCHA: the variables below defines the default behavior for autodetection
479 # and have - unless stated otherwise - at least 2 states : yes no
480 # If autodetection is available then the third state is: auto
481 _mmx=auto
482 _3dnow=auto
483 _3dnowext=auto
484 _mmxext=auto
485 _sse=auto
486 _sse2=auto
487 _ssse3=auto
488 _cmov=auto
489 _fast_cmov=auto
490 _fast_clz=auto
491 _armv5te=auto
492 _armv6=auto
493 _armv6t2=auto
494 _armvfp=auto
495 neon=auto
496 _iwmmxt=auto
497 _mtrr=auto
498 _altivec=auto
499 _install=install
500 _ranlib=ranlib
501 _windres=windres
502 _cc=cc
503 _ar=ar
504 test "$CC" && _cc="$CC"
505 _as=auto
506 _nm=auto
507 _yasm=yasm
508 _runtime_cpudetection=no
509 _cross_compile=auto
510 _prefix="/usr/local"
511 _libavutil=auto
512 _libavcodec=auto
513 _libavformat=auto
514 _libpostproc=auto
515 _libswscale=auto
516 _libavcodec_internals=no
517 _libswscale_internals=no
518 _mencoder=yes
519 _mplayer=yes
520 _x11=auto
521 _xshape=auto
522 _xss=auto
523 _dga1=auto
524 _dga2=auto
525 _xv=auto
526 _xvmc=no #auto when complete
527 _vdpau=auto
528 _sdl=auto
529 _kva=auto
530 _direct3d=auto
531 _directx=auto
532 _win32waveout=auto
533 _nas=auto
534 _png=auto
535 _mng=auto
536 _jpeg=auto
537 _pnm=yes
538 _md5sum=yes
539 _yuv4mpeg=yes
540 _gif=auto
541 _gl=auto
542 matrixview=yes
543 _ggi=auto
544 _ggiwmh=auto
545 _aa=auto
546 _caca=auto
547 _svga=auto
548 _vesa=auto
549 _fbdev=auto
550 _dvb=auto
551 _dxr2=auto
552 _dxr3=auto
553 _ivtv=auto
554 _v4l2=auto
555 _iconv=auto
556 _langinfo=auto
557 _rtc=auto
558 _ossaudio=auto
559 _arts=auto
560 _esd=auto
561 _pulse=auto
562 _jack=auto
563 _kai=auto
564 _dart=auto
565 _openal=no
566 _libcdio=auto
567 _liblzo=auto
568 _mad=auto
569 _mp3lame=auto
570 _toolame=auto
571 _twolame=auto
572 _tremor=auto
573 _tremor_internal=yes
574 _tremor_low=no
575 _libvorbis=auto
576 _speex=auto
577 _theora=auto
578 _mp3lib=auto
579 _liba52=auto
580 _liba52_internal=no
581 _libdca=auto
582 _libmpeg2=auto
583 _faad=auto
584 _faad_internal=auto
585 _faad_fixed=no
586 _faac=auto
587 _ladspa=auto
588 _libbs2b=auto
589 _xmms=no
590 _vcd=auto
591 _dvdnav=auto
592 _dvdnavconfig=dvdnav-config
593 _dvdreadconfig=dvdread-config
594 _dvdread=auto
595 _dvdread_internal=auto
596 _libdvdcss_internal=auto
597 _xanim=auto
598 _real=auto
599 _live=auto
600 _nemesi=auto
601 _native_rtsp=yes
602 _xinerama=auto
603 _mga=auto
604 _xmga=auto
605 _vm=auto
606 _xf86keysym=auto
607 _mlib=no #broken, thus disabled
608 _sgiaudio=auto
609 _sunaudio=auto
610 _alsa=auto
611 _fastmemcpy=yes
612 _unrar_exec=auto
613 _win32dll=auto
614 _select=yes
615 _radio=no
616 _radio_capture=no
617 _radio_v4l=auto
618 _radio_v4l2=auto
619 _radio_bsdbt848=auto
620 _tv=yes
621 _tv_v4l1=auto
622 _tv_v4l2=auto
623 _tv_bsdbt848=auto
624 _tv_dshow=auto
625 _pvr=auto
626 _network=yes
627 _winsock2_h=auto
628 _smb=auto
629 _vidix=auto
630 _vidix_pcidb=yes
631 _dhahelper=no
632 _svgalib_helper=no
633 _joystick=no
634 _xvid=auto
635 _x264=auto
636 _libnut=auto
637 _lirc=auto
638 _lircc=auto
639 _apple_remote=auto
640 _apple_ir=auto
641 _gui=no
642 _gtk1=no
643 _termcap=auto
644 _termios=auto
645 _3dfx=no
646 _s3fb=no
647 _wii=no
648 _tdfxfb=no
649 _tdfxvid=no
650 _xvr100=auto
651 _tga=yes
652 _directfb=auto
653 _zr=auto
654 _bl=no
655 _largefiles=yes
656 #language=en
657 _shm=auto
658 _linux_devfs=no
659 _translation=no
660 _charset="UTF-8"
661 _dynamic_plugins=no
662 _crash_debug=no
663 _sighandler=yes
664 _libdv=auto
665 _cdparanoia=auto
666 _cddb=auto
667 _big_endian=auto
668 _bitmap_font=yes
669 _freetype=auto
670 _fontconfig=auto
671 _menu=no
672 _qtx=auto
673 _maemo=auto
674 _coreaudio=auto
675 _corevideo=auto
676 _quartz=auto
677 quicktime=auto
678 _macosx_finder=no
679 _macosx_bundle=auto
680 _sortsub=yes
681 _freetypeconfig='freetype-config'
682 _fribidi=auto
683 _fribidiconfig='fribidi-config'
684 _enca=auto
685 _inet6=auto
686 _gethostbyname2=auto
687 _ftp=yes
688 _musepack=auto
689 _vstream=auto
690 _pthreads=auto
691 _w32threads=auto
692 _ass=auto
693 _rpath=no
694 _asmalign_pot=auto
695 _stream_cache=yes
696 _priority=no
697 def_dos_paths="#define HAVE_DOS_PATHS 0"
698 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
699 def_priority="#undef CONFIG_PRIORITY"
700 def_pthread_cache="#undef PTHREAD_CACHE"
701 _need_shmem=yes
702 for ac_option do
703 case "$ac_option" in
704 --help|-help|-h)
705 show_help
707 --prefix=*)
708 _prefix=$(echo $ac_option | cut -d '=' -f 2)
710 --bindir=*)
711 _bindir=$(echo $ac_option | cut -d '=' -f 2)
713 --datadir=*)
714 _datadir=$(echo $ac_option | cut -d '=' -f 2)
716 --mandir=*)
717 _mandir=$(echo $ac_option | cut -d '=' -f 2)
719 --confdir=*)
720 _confdir=$(echo $ac_option | cut -d '=' -f 2)
722 --libdir=*)
723 _libdir=$(echo $ac_option | cut -d '=' -f 2)
725 --codecsdir=*)
726 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
728 --win32codecsdir=*)
729 _win32codecsdir=$(echo $ac_option | cut -d '=' -f 2)
731 --xanimcodecsdir=*)
732 _xanimcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
734 --realcodecsdir=*)
735 _realcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
737 --localedir=*)
738 _localedir=$(echo $ac_option | cut -d '=' -f 2)
741 --with-install=*)
742 _install=$(echo $ac_option | cut -d '=' -f 2 )
744 --with-xvmclib=*)
745 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
748 --with-sdl-config=*)
749 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
751 --with-freetype-config=*)
752 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
754 --with-fribidi-config=*)
755 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
757 --with-gtk-config=*)
758 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
760 --with-glib-config=*)
761 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
763 --with-dvdnav-config=*)
764 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
766 --with-dvdread-config=*)
767 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
770 --extra-cflags=*)
771 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
773 --extra-ldflags=*)
774 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
776 --extra-libs=*)
777 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
779 --extra-libs-mplayer=*)
780 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
782 --extra-libs-mencoder=*)
783 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
786 --target=*)
787 _target=$(echo $ac_option | cut -d '=' -f 2)
789 --cc=*)
790 _cc=$(echo $ac_option | cut -d '=' -f 2)
792 --host-cc=*)
793 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
795 --as=*)
796 _as=$(echo $ac_option | cut -d '=' -f 2)
798 --nm=*)
799 _nm=$(echo $ac_option | cut -d '=' -f 2)
801 --yasm=*)
802 _yasm=$(echo $ac_option | cut -d '=' -f 2)
804 --ar=*)
805 _ar=$(echo $ac_option | cut -d '=' -f 2)
807 --ranlib=*)
808 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
810 --windres=*)
811 _windres=$(echo $ac_option | cut -d '=' -f 2)
813 --charset=*)
814 _charset=$(echo $ac_option | cut -d '=' -f 2)
816 --language-doc=*)
817 language_doc=$(echo $ac_option | cut -d '=' -f 2)
819 --language-man=*)
820 language_man=$(echo $ac_option | cut -d '=' -f 2)
822 --language=*)
823 language=$(echo $ac_option | cut -d '=' -f 2)
826 --enable-static)
827 _ld_static='-static'
829 --disable-static)
830 _ld_static=''
832 --enable-profile)
833 _profile='-p'
835 --disable-profile)
836 _profile=
838 --enable-debug)
839 _debug='-g'
841 --enable-debug=*)
842 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
844 --disable-debug)
845 _debug=
847 --enable-translation) _translation=yes ;;
848 --disable-translation) _translation=no ;;
849 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
850 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
851 --enable-cross-compile) _cross_compile=yes ;;
852 --disable-cross-compile) _cross_compile=no ;;
853 --enable-mencoder) _mencoder=yes ;;
854 --disable-mencoder) _mencoder=no ;;
855 --enable-mplayer) _mplayer=yes ;;
856 --disable-mplayer) _mplayer=no ;;
857 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
858 --disable-dynamic-plugins) _dynamic_plugins=no ;;
859 --enable-x11) _x11=yes ;;
860 --disable-x11) _x11=no ;;
861 --enable-xshape) _xshape=yes ;;
862 --disable-xshape) _xshape=no ;;
863 --enable-xss) _xss=yes ;;
864 --disable-xss) _xss=no ;;
865 --enable-xv) _xv=yes ;;
866 --disable-xv) _xv=no ;;
867 --enable-xvmc) _xvmc=yes ;;
868 --disable-xvmc) _xvmc=no ;;
869 --enable-vdpau) _vdpau=yes ;;
870 --disable-vdpau) _vdpau=no ;;
871 --enable-sdl) _sdl=yes ;;
872 --disable-sdl) _sdl=no ;;
873 --enable-kva) _kva=yes ;;
874 --disable-kva) _kva=no ;;
875 --enable-direct3d) _direct3d=yes ;;
876 --disable-direct3d) _direct3d=no ;;
877 --enable-directx) _directx=yes ;;
878 --disable-directx) _directx=no ;;
879 --enable-win32waveout) _win32waveout=yes ;;
880 --disable-win32waveout) _win32waveout=no ;;
881 --enable-nas) _nas=yes ;;
882 --disable-nas) _nas=no ;;
883 --enable-png) _png=yes ;;
884 --disable-png) _png=no ;;
885 --enable-mng) _mng=yes ;;
886 --disable-mng) _mng=no ;;
887 --enable-jpeg) _jpeg=yes ;;
888 --disable-jpeg) _jpeg=no ;;
889 --enable-pnm) _pnm=yes ;;
890 --disable-pnm) _pnm=no ;;
891 --enable-md5sum) _md5sum=yes ;;
892 --disable-md5sum) _md5sum=no ;;
893 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
894 --disable-yuv4mpeg) _yuv4mpeg=no ;;
895 --enable-gif) _gif=yes ;;
896 --disable-gif) _gif=no ;;
897 --enable-gl) _gl=yes ;;
898 --disable-gl) _gl=no ;;
899 --enable-matrixview) matrixview=yes ;;
900 --disable-matrixview) matrixview=no ;;
901 --enable-ggi) _ggi=yes ;;
902 --disable-ggi) _ggi=no ;;
903 --enable-ggiwmh) _ggiwmh=yes ;;
904 --disable-ggiwmh) _ggiwmh=no ;;
905 --enable-aa) _aa=yes ;;
906 --disable-aa) _aa=no ;;
907 --enable-caca) _caca=yes ;;
908 --disable-caca) _caca=no ;;
909 --enable-svga) _svga=yes ;;
910 --disable-svga) _svga=no ;;
911 --enable-vesa) _vesa=yes ;;
912 --disable-vesa) _vesa=no ;;
913 --enable-fbdev) _fbdev=yes ;;
914 --disable-fbdev) _fbdev=no ;;
915 --enable-dvb) _dvb=yes ;;
916 --disable-dvb) _dvb=no ;;
917 --enable-dxr2) _dxr2=yes ;;
918 --disable-dxr2) _dxr2=no ;;
919 --enable-dxr3) _dxr3=yes ;;
920 --disable-dxr3) _dxr3=no ;;
921 --enable-ivtv) _ivtv=yes ;;
922 --disable-ivtv) _ivtv=no ;;
923 --enable-v4l2) _v4l2=yes ;;
924 --disable-v4l2) _v4l2=no ;;
925 --enable-iconv) _iconv=yes ;;
926 --disable-iconv) _iconv=no ;;
927 --enable-langinfo) _langinfo=yes ;;
928 --disable-langinfo) _langinfo=no ;;
929 --enable-rtc) _rtc=yes ;;
930 --disable-rtc) _rtc=no ;;
931 --enable-libdv) _libdv=yes ;;
932 --disable-libdv) _libdv=no ;;
933 --enable-ossaudio) _ossaudio=yes ;;
934 --disable-ossaudio) _ossaudio=no ;;
935 --enable-arts) _arts=yes ;;
936 --disable-arts) _arts=no ;;
937 --enable-esd) _esd=yes ;;
938 --disable-esd) _esd=no ;;
939 --enable-pulse) _pulse=yes ;;
940 --disable-pulse) _pulse=no ;;
941 --enable-jack) _jack=yes ;;
942 --disable-jack) _jack=no ;;
943 --enable-openal) _openal=yes ;;
944 --disable-openal) _openal=no ;;
945 --enable-kai) _kai=yes ;;
946 --disable-kai) _kai=no ;;
947 --enable-dart) _dart=yes ;;
948 --disable-dart) _dart=no ;;
949 --enable-mad) _mad=yes ;;
950 --disable-mad) _mad=no ;;
951 --enable-mp3lame) _mp3lame=yes ;;
952 --disable-mp3lame) _mp3lame=no ;;
953 --enable-toolame) _toolame=yes ;;
954 --disable-toolame) _toolame=no ;;
955 --enable-twolame) _twolame=yes ;;
956 --disable-twolame) _twolame=no ;;
957 --enable-libcdio) _libcdio=yes ;;
958 --disable-libcdio) _libcdio=no ;;
959 --enable-liblzo) _liblzo=yes ;;
960 --disable-liblzo) _liblzo=no ;;
961 --enable-libvorbis) _libvorbis=yes ;;
962 --disable-libvorbis) _libvorbis=no ;;
963 --enable-speex) _speex=yes ;;
964 --disable-speex) _speex=no ;;
965 --enable-tremor) _tremor=yes ;;
966 --disable-tremor) _tremor=no ;;
967 --enable-tremor-internal) _tremor_internal=yes ;;
968 --disable-tremor-internal) _tremor_internal=no ;;
969 --enable-tremor-low) _tremor_low=yes ;;
970 --disable-tremor-low) _tremor_low=no ;;
971 --enable-theora) _theora=yes ;;
972 --disable-theora) _theora=no ;;
973 --enable-mp3lib) _mp3lib=yes ;;
974 --disable-mp3lib) _mp3lib=no ;;
975 --enable-liba52-internal) _liba52_internal=yes ;;
976 --disable-liba52-internal) _liba52_internal=no ;;
977 --enable-liba52) _liba52=yes ;;
978 --disable-liba52) _liba52=no ;;
979 --enable-libdca) _libdca=yes ;;
980 --disable-libdca) _libdca=no ;;
981 --enable-libmpeg2) _libmpeg2=yes ;;
982 --disable-libmpeg2) _libmpeg2=no ;;
983 --enable-musepack) _musepack=yes ;;
984 --disable-musepack) _musepack=no ;;
985 --enable-faad) _faad=yes ;;
986 --disable-faad) _faad=no ;;
987 --enable-faad-internal) _faad_internal=yes ;;
988 --disable-faad-internal) _faad_internal=no ;;
989 --enable-faad-fixed) _faad_fixed=yes ;;
990 --disable-faad-fixed) _faad_fixed=no ;;
991 --enable-faac) _faac=yes ;;
992 --disable-faac) _faac=no ;;
993 --enable-ladspa) _ladspa=yes ;;
994 --disable-ladspa) _ladspa=no ;;
995 --enable-libbs2b) _libbs2b=yes ;;
996 --disable-libbs2b) _libbs2b=no ;;
997 --enable-xmms) _xmms=yes ;;
998 --disable-xmms) _xmms=no ;;
999 --enable-vcd) _vcd=yes ;;
1000 --disable-vcd) _vcd=no ;;
1001 --enable-dvdread) _dvdread=yes ;;
1002 --disable-dvdread) _dvdread=no ;;
1003 --enable-dvdread-internal) _dvdread_internal=yes ;;
1004 --disable-dvdread-internal) _dvdread_internal=no ;;
1005 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1006 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1007 --enable-dvdnav) _dvdnav=yes ;;
1008 --disable-dvdnav) _dvdnav=no ;;
1009 --enable-xanim) _xanim=yes ;;
1010 --disable-xanim) _xanim=no ;;
1011 --enable-real) _real=yes ;;
1012 --disable-real) _real=no ;;
1013 --enable-live) _live=yes ;;
1014 --disable-live) _live=no ;;
1015 --enable-nemesi) _nemesi=yes ;;
1016 --disable-nemesi) _nemesi=no ;;
1017 --enable-xinerama) _xinerama=yes ;;
1018 --disable-xinerama) _xinerama=no ;;
1019 --enable-mga) _mga=yes ;;
1020 --disable-mga) _mga=no ;;
1021 --enable-xmga) _xmga=yes ;;
1022 --disable-xmga) _xmga=no ;;
1023 --enable-vm) _vm=yes ;;
1024 --disable-vm) _vm=no ;;
1025 --enable-xf86keysym) _xf86keysym=yes ;;
1026 --disable-xf86keysym) _xf86keysym=no ;;
1027 --enable-mlib) _mlib=yes ;;
1028 --disable-mlib) _mlib=no ;;
1029 --enable-sunaudio) _sunaudio=yes ;;
1030 --disable-sunaudio) _sunaudio=no ;;
1031 --enable-sgiaudio) _sgiaudio=yes ;;
1032 --disable-sgiaudio) _sgiaudio=no ;;
1033 --enable-alsa) _alsa=yes ;;
1034 --disable-alsa) _alsa=no ;;
1035 --enable-tv) _tv=yes ;;
1036 --disable-tv) _tv=no ;;
1037 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1038 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1039 --enable-tv-v4l1) _tv_v4l1=yes ;;
1040 --disable-tv-v4l1) _tv_v4l1=no ;;
1041 --enable-tv-v4l2) _tv_v4l2=yes ;;
1042 --disable-tv-v4l2) _tv_v4l2=no ;;
1043 --enable-tv-dshow) _tv_dshow=yes ;;
1044 --disable-tv-dshow) _tv_dshow=no ;;
1045 --enable-radio) _radio=yes ;;
1046 --enable-radio-capture) _radio_capture=yes ;;
1047 --disable-radio-capture) _radio_capture=no ;;
1048 --disable-radio) _radio=no ;;
1049 --enable-radio-v4l) _radio_v4l=yes ;;
1050 --disable-radio-v4l) _radio_v4l=no ;;
1051 --enable-radio-v4l2) _radio_v4l2=yes ;;
1052 --disable-radio-v4l2) _radio_v4l2=no ;;
1053 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1054 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1055 --enable-pvr) _pvr=yes ;;
1056 --disable-pvr) _pvr=no ;;
1057 --enable-fastmemcpy) _fastmemcpy=yes ;;
1058 --disable-fastmemcpy) _fastmemcpy=no ;;
1059 --enable-network) _network=yes ;;
1060 --disable-network) _network=no ;;
1061 --enable-winsock2_h) _winsock2_h=yes ;;
1062 --disable-winsock2_h) _winsock2_h=no ;;
1063 --enable-smb) _smb=yes ;;
1064 --disable-smb) _smb=no ;;
1065 --enable-vidix) _vidix=yes ;;
1066 --disable-vidix) _vidix=no ;;
1067 --with-vidix-drivers=*)
1068 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1070 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1071 --enable-dhahelper) _dhahelper=yes ;;
1072 --disable-dhahelper) _dhahelper=no ;;
1073 --enable-svgalib_helper) _svgalib_helper=yes ;;
1074 --disable-svgalib_helper) _svgalib_helper=no ;;
1075 --enable-joystick) _joystick=yes ;;
1076 --disable-joystick) _joystick=no ;;
1077 --enable-xvid) _xvid=yes ;;
1078 --disable-xvid) _xvid=no ;;
1079 --enable-x264) _x264=yes ;;
1080 --disable-x264) _x264=no ;;
1081 --enable-libnut) _libnut=yes ;;
1082 --disable-libnut) _libnut=no ;;
1083 --enable-libavutil) _libavutil=yes ;;
1084 --disable-libavutil) _libavutil=no ;;
1085 --enable-libavcodec) _libavcodec=yes ;;
1086 --disable-libavcodec) _libavcodec=no ;;
1087 --enable-libavformat) _libavformat=yes ;;
1088 --disable-libavformat) _libavformat=no ;;
1089 --enable-libpostproc) _libpostproc=yes ;;
1090 --disable-libpostproc) _libpostproc=no ;;
1091 --enable-libswscale) _libswscale=yes ;;
1092 --disable-libswscale) _libswscale=no ;;
1093 --ffmpeg-source-dir=*)
1094 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1096 --enable-lirc) _lirc=yes ;;
1097 --disable-lirc) _lirc=no ;;
1098 --enable-lircc) _lircc=yes ;;
1099 --disable-lircc) _lircc=no ;;
1100 --enable-apple-remote) _apple_remote=yes ;;
1101 --disable-apple-remote) _apple_remote=no ;;
1102 --enable-apple-ir) _apple_ir=yes ;;
1103 --disable-apple-ir) _apple_ir=no ;;
1104 --enable-gui) _gui=yes ;;
1105 --disable-gui) _gui=no ;;
1106 --enable-gtk1) _gtk1=yes ;;
1107 --disable-gtk1) _gtk1=no ;;
1108 --enable-termcap) _termcap=yes ;;
1109 --disable-termcap) _termcap=no ;;
1110 --enable-termios) _termios=yes ;;
1111 --disable-termios) _termios=no ;;
1112 --enable-3dfx) _3dfx=yes ;;
1113 --disable-3dfx) _3dfx=no ;;
1114 --enable-s3fb) _s3fb=yes ;;
1115 --disable-s3fb) _s3fb=no ;;
1116 --enable-wii) _wii=yes ;;
1117 --disable-wii) _wii=no ;;
1118 --enable-tdfxfb) _tdfxfb=yes ;;
1119 --disable-tdfxfb) _tdfxfb=no ;;
1120 --disable-tdfxvid) _tdfxvid=no ;;
1121 --enable-tdfxvid) _tdfxvid=yes ;;
1122 --disable-xvr100) _xvr100=no ;;
1123 --enable-xvr100) _xvr100=yes ;;
1124 --disable-tga) _tga=no ;;
1125 --enable-tga) _tga=yes ;;
1126 --enable-directfb) _directfb=yes ;;
1127 --disable-directfb) _directfb=no ;;
1128 --enable-zr) _zr=yes ;;
1129 --disable-zr) _zr=no ;;
1130 --enable-bl) _bl=yes ;;
1131 --disable-bl) _bl=no ;;
1132 --enable-mtrr) _mtrr=yes ;;
1133 --disable-mtrr) _mtrr=no ;;
1134 --enable-largefiles) _largefiles=yes ;;
1135 --disable-largefiles) _largefiles=no ;;
1136 --enable-shm) _shm=yes ;;
1137 --disable-shm) _shm=no ;;
1138 --enable-select) _select=yes ;;
1139 --disable-select) _select=no ;;
1140 --enable-linux-devfs) _linux_devfs=yes ;;
1141 --disable-linux-devfs) _linux_devfs=no ;;
1142 --enable-cdparanoia) _cdparanoia=yes ;;
1143 --disable-cdparanoia) _cdparanoia=no ;;
1144 --enable-cddb) _cddb=yes ;;
1145 --disable-cddb) _cddb=no ;;
1146 --enable-big-endian) _big_endian=yes ;;
1147 --disable-big-endian) _big_endian=no ;;
1148 --enable-bitmap-font) _bitmap_font=yes ;;
1149 --disable-bitmap-font) _bitmap_font=no ;;
1150 --enable-freetype) _freetype=yes ;;
1151 --disable-freetype) _freetype=no ;;
1152 --enable-fontconfig) _fontconfig=yes ;;
1153 --disable-fontconfig) _fontconfig=no ;;
1154 --enable-unrarexec) _unrar_exec=yes ;;
1155 --disable-unrarexec) _unrar_exec=no ;;
1156 --enable-ftp) _ftp=yes ;;
1157 --disable-ftp) _ftp=no ;;
1158 --enable-vstream) _vstream=yes ;;
1159 --disable-vstream) _vstream=no ;;
1160 --enable-pthreads) _pthreads=yes ;;
1161 --disable-pthreads) _pthreads=no ;;
1162 --enable-w32threads) _w32threads=yes ;;
1163 --disable-w32threads) _w32threads=no ;;
1164 --enable-ass) _ass=yes ;;
1165 --disable-ass) _ass=no ;;
1166 --enable-rpath) _rpath=yes ;;
1167 --disable-rpath) _rpath=no ;;
1169 --enable-fribidi) _fribidi=yes ;;
1170 --disable-fribidi) _fribidi=no ;;
1172 --enable-enca) _enca=yes ;;
1173 --disable-enca) _enca=no ;;
1175 --enable-inet6) _inet6=yes ;;
1176 --disable-inet6) _inet6=no ;;
1178 --enable-gethostbyname2) _gethostbyname2=yes ;;
1179 --disable-gethostbyname2) _gethostbyname2=no ;;
1181 --enable-dga1) _dga1=yes ;;
1182 --disable-dga1) _dga1=no ;;
1183 --enable-dga2) _dga2=yes ;;
1184 --disable-dga2) _dga2=no ;;
1186 --enable-menu) _menu=yes ;;
1187 --disable-menu) _menu=no ;;
1189 --enable-qtx) _qtx=yes ;;
1190 --disable-qtx) _qtx=no ;;
1192 --enable-coreaudio) _coreaudio=yes ;;
1193 --disable-coreaudio) _coreaudio=no ;;
1194 --enable-corevideo) _corevideo=yes ;;
1195 --disable-corevideo) _corevideo=no ;;
1196 --enable-quartz) _quartz=yes ;;
1197 --disable-quartz) _quartz=no ;;
1198 --enable-macosx-finder) _macosx_finder=yes ;;
1199 --disable-macosx-finder) _macosx_finder=no ;;
1200 --enable-macosx-bundle) _macosx_bundle=yes ;;
1201 --disable-macosx-bundle) _macosx_bundle=no ;;
1203 --enable-maemo) _maemo=yes ;;
1204 --disable-maemo) _maemo=no ;;
1206 --enable-sortsub) _sortsub=yes ;;
1207 --disable-sortsub) _sortsub=no ;;
1209 --enable-crash-debug) _crash_debug=yes ;;
1210 --disable-crash-debug) _crash_debug=no ;;
1211 --enable-sighandler) _sighandler=yes ;;
1212 --disable-sighandler) _sighandler=no ;;
1213 --enable-win32dll) _win32dll=yes ;;
1214 --disable-win32dll) _win32dll=no ;;
1216 --enable-sse) _sse=yes ;;
1217 --disable-sse) _sse=no ;;
1218 --enable-sse2) _sse2=yes ;;
1219 --disable-sse2) _sse2=no ;;
1220 --enable-ssse3) _ssse3=yes ;;
1221 --disable-ssse3) _ssse3=no ;;
1222 --enable-mmxext) _mmxext=yes ;;
1223 --disable-mmxext) _mmxext=no ;;
1224 --enable-3dnow) _3dnow=yes ;;
1225 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1226 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1227 --disable-3dnowext) _3dnowext=no ;;
1228 --enable-cmov) _cmov=yes ;;
1229 --disable-cmov) _cmov=no ;;
1230 --enable-fast-cmov) _fast_cmov=yes ;;
1231 --disable-fast-cmov) _fast_cmov=no ;;
1232 --enable-fast-clz) _fast_clz=yes ;;
1233 --disable-fast-clz) _fast_clz=no ;;
1234 --enable-altivec) _altivec=yes ;;
1235 --disable-altivec) _altivec=no ;;
1236 --enable-armv5te) _armv5te=yes ;;
1237 --disable-armv5te) _armv5te=no ;;
1238 --enable-armv6) _armv6=yes ;;
1239 --disable-armv6) _armv6=no ;;
1240 --enable-armv6t2) _armv6t2=yes ;;
1241 --disable-armv6t2) _armv6t2=no ;;
1242 --enable-armvfp) _armvfp=yes ;;
1243 --disable-armvfp) _armvfp=no ;;
1244 --enable-neon) neon=yes ;;
1245 --disable-neon) neon=no ;;
1246 --enable-iwmmxt) _iwmmxt=yes ;;
1247 --disable-iwmmxt) _iwmmxt=no ;;
1248 --enable-mmx) _mmx=yes ;;
1249 --disable-mmx) # 3Dnow! and MMX2 require MMX
1250 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1253 echo "Unknown parameter: $ac_option"
1254 exit 1
1257 esac
1258 done
1260 if test "$_gui" = yes ; then
1261 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1262 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1265 # Atmos: moved this here, to be correct, if --prefix is specified
1266 test -z "$_bindir" && _bindir="$_prefix/bin"
1267 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1268 test -z "$_mandir" && _mandir="$_prefix/share/man"
1269 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1270 test -z "$_libdir" && _libdir="$_prefix/lib"
1271 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1273 # Determine our OS name and CPU architecture
1274 if test -z "$_target" ; then
1275 # OS name
1276 system_name=$(uname -s 2>&1)
1277 case "$system_name" in
1278 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1280 Haiku)
1281 system_name=BeOS
1283 IRIX*)
1284 system_name=IRIX
1286 GNU/kFreeBSD)
1287 system_name=FreeBSD
1289 HP-UX*)
1290 system_name=HP-UX
1292 [cC][yY][gG][wW][iI][nN]*)
1293 system_name=CYGWIN
1295 MINGW32*)
1296 system_name=MINGW32
1298 OS/2*)
1299 system_name=OS/2
1302 system_name="$system_name-UNKNOWN"
1304 esac
1307 # host's CPU/instruction set
1308 host_arch=$(uname -p 2>&1)
1309 case "$host_arch" in
1310 i386|sparc|ppc|alpha|arm|mips|vax)
1312 powerpc) # Darwin returns 'powerpc'
1313 host_arch=ppc
1315 *) # uname -p on Linux returns 'unknown' for the processor type,
1316 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1318 # Maybe uname -m (machine hardware name) returns something we
1319 # recognize.
1321 # x86/x86pc is used by QNX
1322 case "$(uname -m 2>&1)" in
1323 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 ;;
1324 ia64) host_arch=ia64 ;;
1325 macppc|ppc) host_arch=ppc ;;
1326 ppc64) host_arch=ppc64 ;;
1327 alpha) host_arch=alpha ;;
1328 sparc) host_arch=sparc ;;
1329 sparc64) host_arch=sparc64 ;;
1330 parisc*|hppa*|9000*) host_arch=hppa ;;
1331 arm*|zaurus|cats) host_arch=arm ;;
1332 sh3|sh4|sh4a) host_arch=sh ;;
1333 s390) host_arch=s390 ;;
1334 s390x) host_arch=s390x ;;
1335 *mips*) host_arch=mips ;;
1336 vax) host_arch=vax ;;
1337 xtensa*) host_arch=xtensa ;;
1338 *) host_arch=UNKNOWN ;;
1339 esac
1341 esac
1342 else # if test -z "$_target"
1343 system_name=$(echo $_target | cut -d '-' -f 2)
1344 case "$(echo $system_name | tr A-Z a-z)" in
1345 linux) system_name=Linux ;;
1346 freebsd) system_name=FreeBSD ;;
1347 gnu/kfreebsd) system_name=FreeBSD ;;
1348 netbsd) system_name=NetBSD ;;
1349 bsd/os) system_name=BSD/OS ;;
1350 openbsd) system_name=OpenBSD ;;
1351 dragonfly) system_name=DragonFly ;;
1352 sunos) system_name=SunOS ;;
1353 qnx) system_name=QNX ;;
1354 morphos) system_name=MorphOS ;;
1355 amigaos) system_name=AmigaOS ;;
1356 mingw32*) system_name=MINGW32 ;;
1357 esac
1358 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1359 host_arch=$(echo $_target | cut -d '-' -f 1)
1360 if test $(echo $host_arch) != "x86_64" ; then
1361 host_arch=$(echo $host_arch | tr '_' '-')
1365 extra_cflags="-I. $extra_cflags"
1366 _timer=timer-linux.c
1367 _getch=getch2.c
1368 if freebsd ; then
1369 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1370 extra_cflags="$extra_cflags -I/usr/local/include"
1373 if netbsd || dragonfly ; then
1374 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1375 extra_cflags="$extra_cflags -I/usr/pkg/include"
1378 if darwin; then
1379 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1380 _timer=timer-darwin.c
1383 if aix ; then
1384 extra_ldflags="$extra_ldflags -lC"
1387 if irix ; then
1388 _ranlib='ar -r'
1389 elif linux ; then
1390 _ranlib='true'
1393 if win32 ; then
1394 _exesuf=".exe"
1395 extra_cflags="$extra_cflags -fno-common"
1396 # -lwinmm is always needed for osdep/timer-win2.c
1397 extra_ldflags="$extra_ldflags -lwinmm"
1398 _pe_executable=yes
1399 _timer=timer-win2.c
1400 _priority=yes
1401 def_dos_paths="#define HAVE_DOS_PATHS 1"
1402 def_priority="#define CONFIG_PRIORITY 1"
1405 if mingw32 ; then
1406 _getch=getch2-win.c
1407 _need_shmem=no
1410 if amigaos ; then
1411 _select=no
1412 _sighandler=no
1413 _stream_cache=no
1414 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1415 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1418 if qnx ; then
1419 extra_ldflags="$extra_ldflags -lph"
1422 if os2 ; then
1423 _exesuf=".exe"
1424 _getch=getch2-os2.c
1425 _need_shmem=no
1426 _priority=yes
1427 def_dos_paths="#define HAVE_DOS_PATHS 1"
1428 def_priority="#define CONFIG_PRIORITY 1"
1431 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1432 test "$I" && break
1433 done
1436 TMPLOG="configure.log"
1437 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1438 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1439 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1440 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1441 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1443 rm -f "$TMPLOG"
1444 echo configuration: $_configuration > "$TMPLOG"
1445 echo >> "$TMPLOG"
1448 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1449 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1453 # Checking CC version...
1454 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1455 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1456 echocheck "$_cc version"
1457 cc_vendor=intel
1458 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1459 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1460 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1461 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1462 # TODO verify older icc/ecc compatibility
1463 case $cc_version in
1465 cc_version="v. ?.??, bad"
1466 cc_fail=yes
1468 10.1|11.0|11.1)
1469 cc_version="$cc_version, ok"
1472 cc_version="$cc_version, bad"
1473 cc_fail=yes
1475 esac
1476 echores "$cc_version"
1477 else
1478 for _cc in "$_cc" gcc cc ; do
1479 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1480 if test "$cc_name_tmp" = "gcc"; then
1481 cc_name=$cc_name_tmp
1482 echocheck "$_cc version"
1483 cc_vendor=gnu
1484 cc_version=$($_cc -dumpversion 2>&1)
1485 case $cc_version in
1486 2.96*)
1487 cc_fail=yes
1490 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1491 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1492 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1494 esac
1495 echores "$cc_version"
1496 break
1498 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1499 if test "$cc_name_tmp" = "Sun C"; then
1500 echocheck "$_cc version"
1501 cc_vendor=sun
1502 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1503 _res_comment="experimental support only"
1504 echores "Sun C $cc_version"
1505 break
1507 done
1508 fi # icc
1509 test "$cc_fail" = yes && die "unsupported compiler version"
1511 if test -z "$_target" && x86 ; then
1512 cat > $TMPC << EOF
1513 int main(void) {
1514 int test[(int)sizeof(char *)-7];
1515 return 0;
1518 cc_check && host_arch=x86_64 || host_arch=i386
1521 echo "Detected operating system: $system_name"
1522 echo "Detected host architecture: $host_arch"
1524 echocheck "host cc"
1525 test "$_host_cc" || _host_cc=$_cc
1526 echores $_host_cc
1528 echocheck "cross compilation"
1529 if test $_cross_compile = auto ; then
1530 cat > $TMPC << EOF
1531 int main(void) { return 0; }
1533 _cross_compile=yes
1534 cc_check && "$TMPEXE" && _cross_compile=no
1536 echores $_cross_compile
1538 if test $_cross_compile = yes; then
1539 tmp_run() {
1540 return 0
1544 # ---
1546 # now that we know what compiler should be used for compilation, try to find
1547 # out which assembler is used by the $_cc compiler
1548 if test "$_as" = auto ; then
1549 _as=$($_cc -print-prog-name=as)
1550 test -z "$_as" && _as=as
1553 if test "$_nm" = auto ; then
1554 _nm=$($_cc -print-prog-name=nm)
1555 test -z "$_nm" && _nm=nm
1558 # XXX: this should be ok..
1559 _cpuinfo="echo"
1561 if test "$_runtime_cpudetection" = no ; then
1563 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1564 # FIXME: Remove the cygwin check once AMD CPUs are supported
1565 if test -r /proc/cpuinfo && ! cygwin; then
1566 # Linux with /proc mounted, extract CPU information from it
1567 _cpuinfo="cat /proc/cpuinfo"
1568 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1569 # FreeBSD with Linux emulation /proc mounted,
1570 # extract CPU information from it
1571 # Don't use it on x86 though, it never reports 3Dnow
1572 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1573 elif darwin && ! x86 ; then
1574 # use hostinfo on Darwin
1575 _cpuinfo="hostinfo"
1576 elif aix; then
1577 # use 'lsattr' on AIX
1578 _cpuinfo="lsattr -E -l proc0 -a type"
1579 elif x86; then
1580 # all other OSes try to extract CPU information from a small helper
1581 # program cpuinfo instead
1582 $_cc -o cpuinfo$_exesuf cpuinfo.c
1583 _cpuinfo="./cpuinfo$_exesuf"
1586 if x86 ; then
1587 # gather more CPU information
1588 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1589 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1590 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1591 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1592 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1594 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1596 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1597 -e s/xmm/sse/ -e s/kni/sse/)
1599 for ext in $pparam ; do
1600 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1601 done
1603 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1604 test $_sse = kernel_check && _mmxext=kernel_check
1606 echocheck "CPU vendor"
1607 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1609 echocheck "CPU type"
1610 echores "$pname"
1613 fi # test "$_runtime_cpudetection" = no
1615 if x86 && test "$_runtime_cpudetection" = no ; then
1616 extcheck() {
1617 if test "$1" = kernel_check ; then
1618 echocheck "kernel support of $2"
1619 cat > $TMPC <<EOF
1620 #include <stdlib.h>
1621 #include <signal.h>
1622 void catch() { exit(1); }
1623 int main(void) {
1624 signal(SIGILL, catch);
1625 __asm__ volatile ("$3":::"memory"); return 0;
1629 if cc_check && tmp_run ; then
1630 eval _$2=yes
1631 echores "yes"
1632 _optimizing="$_optimizing $2"
1633 return 0
1634 else
1635 eval _$2=no
1636 echores "failed"
1637 echo "It seems that your kernel does not correctly support $2."
1638 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1639 return 1
1642 return 0
1645 extcheck $_mmx "mmx" "emms"
1646 extcheck $_mmxext "mmxext" "sfence"
1647 extcheck $_3dnow "3dnow" "femms"
1648 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1649 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1650 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1651 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1652 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1654 echocheck "mtrr support"
1655 if test "$_mtrr" = kernel_check ; then
1656 _mtrr="yes"
1657 _optimizing="$_optimizing mtrr"
1659 echores "$_mtrr"
1661 if test "$_gcc3_ext" != ""; then
1662 # if we had to disable sse/sse2 because the active kernel does not
1663 # support this instruction set extension, we also have to tell
1664 # gcc3 to not generate sse/sse2 instructions for normal C code
1665 cat > $TMPC << EOF
1666 int main(void) { return 0; }
1668 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1674 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1675 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1676 _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'
1677 case "$host_arch" in
1678 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1679 _arch='X86 X86_32'
1680 _target_arch="ARCH_X86 = yes"
1681 _target_subarch="ARCH_X86_32 = yes"
1682 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1683 iproc=486
1684 proc=i486
1687 if test "$_runtime_cpudetection" = no ; then
1688 case "$pvendor" in
1689 AuthenticAMD)
1690 case "$pfamily" in
1691 3) proc=i386 iproc=386 ;;
1692 4) proc=i486 iproc=486 ;;
1693 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1694 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1695 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1696 proc=k6-3
1697 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1698 proc=geode
1699 elif test "$pmodel" -ge 8; then
1700 proc=k6-2
1701 elif test "$pmodel" -ge 6; then
1702 proc=k6
1703 else
1704 proc=i586
1707 6) iproc=686
1708 # It's a bit difficult to determine the correct type of Family 6
1709 # AMD CPUs just from their signature. Instead, we check directly
1710 # whether it supports SSE.
1711 if test "$_sse" = yes; then
1712 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1713 proc=athlon-xp
1714 else
1715 # Again, gcc treats athlon and athlon-tbird similarly.
1716 proc=athlon
1719 15) iproc=686
1720 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1721 # caught and remedied in the optimization tests below.
1722 proc=k8
1725 *) proc=amdfam10 iproc=686
1726 test $_fast_clz = "auto" && _fast_clz=yes
1728 esac
1730 GenuineIntel)
1731 case "$pfamily" in
1732 3) proc=i386 iproc=386 ;;
1733 4) proc=i486 iproc=486 ;;
1734 5) iproc=586
1735 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1736 proc=pentium-mmx # 4 is desktop, 8 is mobile
1737 else
1738 proc=i586
1741 6) iproc=686
1742 if test "$pmodel" -ge 15; then
1743 proc=core2
1744 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1745 proc=pentium-m
1746 elif test "$pmodel" -ge 7; then
1747 proc=pentium3
1748 elif test "$pmodel" -ge 3; then
1749 proc=pentium2
1750 else
1751 proc=i686
1753 test $_fast_clz = "auto" && _fast_clz=yes
1755 15) iproc=686
1756 # A nocona in 32-bit mode has no more capabilities than a prescott.
1757 if test "$pmodel" -ge 3; then
1758 proc=prescott
1759 else
1760 proc=pentium4
1761 test $_fast_clz = "auto" && _fast_clz=yes
1763 test $_fast_cmov = "auto" && _fast_cmov=no
1765 *) proc=prescott iproc=686 ;;
1766 esac
1768 CentaurHauls)
1769 case "$pfamily" in
1770 5) iproc=586
1771 if test "$pmodel" -ge 8; then
1772 proc=winchip2
1773 elif test "$pmodel" -ge 4; then
1774 proc=winchip-c6
1775 else
1776 proc=i586
1779 6) iproc=686
1780 if test "$pmodel" -ge 9; then
1781 proc=c3-2
1782 else
1783 proc=c3
1784 iproc=586
1787 *) proc=i686 iproc=i686 ;;
1788 esac
1790 unknown)
1791 case "$pfamily" in
1792 3) proc=i386 iproc=386 ;;
1793 4) proc=i486 iproc=486 ;;
1794 *) proc=i586 iproc=586 ;;
1795 esac
1798 proc=i586 iproc=586 ;;
1799 esac
1800 test $_fast_clz = "auto" && _fast_clz=no
1801 fi # test "$_runtime_cpudetection" = no
1804 # check that gcc supports our CPU, if not, fall back to earlier ones
1805 # LGB: check -mcpu and -march swithing step by step with enabling
1806 # to fall back till 386.
1808 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1810 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1811 cpuopt=-mtune
1812 else
1813 cpuopt=-mcpu
1816 echocheck "GCC & CPU optimization abilities"
1817 cat > $TMPC << EOF
1818 int main(void) { return 0; }
1820 if test "$_runtime_cpudetection" = no ; then
1821 cc_check -march=native && proc=native
1822 if test "$proc" = "k8"; then
1823 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1825 if test "$proc" = "athlon-xp"; then
1826 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1828 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1829 cc_check -march=$proc $cpuopt=$proc || proc=k6
1831 if test "$proc" = "k6" || test "$proc" = "c3"; then
1832 if ! cc_check -march=$proc $cpuopt=$proc; then
1833 if cc_check -march=i586 $cpuopt=i686; then
1834 proc=i586-i686
1835 else
1836 proc=i586
1840 if test "$proc" = "prescott" ; then
1841 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1843 if test "$proc" = "core2" ; then
1844 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1846 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
1847 cc_check -march=$proc $cpuopt=$proc || proc=i686
1849 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1850 cc_check -march=$proc $cpuopt=$proc || proc=i586
1852 if test "$proc" = "i586"; then
1853 cc_check -march=$proc $cpuopt=$proc || proc=i486
1855 if test "$proc" = "i486" ; then
1856 cc_check -march=$proc $cpuopt=$proc || proc=i386
1858 if test "$proc" = "i386" ; then
1859 cc_check -march=$proc $cpuopt=$proc || proc=error
1861 if test "$proc" = "error" ; then
1862 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1863 _mcpu=""
1864 _march=""
1865 _optimizing=""
1866 elif test "$proc" = "i586-i686"; then
1867 _march="-march=i586"
1868 _mcpu="$cpuopt=i686"
1869 _optimizing="$proc"
1870 else
1871 _march="-march=$proc"
1872 _mcpu="$cpuopt=$proc"
1873 _optimizing="$proc"
1875 else # if test "$_runtime_cpudetection" = no
1876 _mcpu="$cpuopt=generic"
1877 # at least i486 required, for bswap instruction
1878 _march="-march=i486"
1879 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1880 cc_check $_mcpu || _mcpu=""
1881 cc_check $_march $_mcpu || _march=""
1884 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1885 ## autodetected mcpu/march parameters
1886 if test "$_target" ; then
1887 # TODO: it may be a good idea to check GCC and fall back in all cases
1888 if test "$host_arch" = "i586-i686"; then
1889 _march="-march=i586"
1890 _mcpu="$cpuopt=i686"
1891 else
1892 _march="-march=$host_arch"
1893 _mcpu="$cpuopt=$host_arch"
1896 proc="$host_arch"
1898 case "$proc" in
1899 i386) iproc=386 ;;
1900 i486) iproc=486 ;;
1901 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1902 i686|athlon*|pentium*) iproc=686 ;;
1903 *) iproc=586 ;;
1904 esac
1907 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1908 _fast_cmov="yes"
1909 else
1910 _fast_cmov="no"
1912 test $_fast_clz = "auto" && _fast_clz=yes
1914 echores "$proc"
1917 ia64)
1918 _arch='IA64'
1919 _target_arch='ARCH_IA64 = yes'
1920 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1921 iproc='ia64'
1924 x86_64|amd64)
1925 _arch='X86 X86_64'
1926 _target_subarch='ARCH_X86_64 = yes'
1927 _target_arch="ARCH_X86 = yes"
1928 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1929 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1930 iproc='x86_64'
1932 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1933 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1934 cpuopt=-mtune
1935 else
1936 cpuopt=-mcpu
1938 if test "$_runtime_cpudetection" = no ; then
1939 case "$pvendor" in
1940 AuthenticAMD)
1941 case "$pfamily" in
1942 15) proc=k8
1943 test $_fast_clz = "auto" && _fast_clz=no
1945 *) proc=amdfam10;;
1946 esac
1948 GenuineIntel)
1949 case "$pfamily" in
1950 6) proc=core2;;
1952 # 64-bit prescotts exist, but as far as GCC is concerned they
1953 # have the same capabilities as a nocona.
1954 proc=nocona
1955 test $_fast_cmov = "auto" && _fast_cmov=no
1956 test $_fast_clz = "auto" && _fast_clz=no
1958 esac
1961 proc=error;;
1962 esac
1963 fi # test "$_runtime_cpudetection" = no
1965 echocheck "GCC & CPU optimization abilities"
1966 cat > $TMPC << EOF
1967 int main(void) { return 0; }
1969 # This is a stripped-down version of the i386 fallback.
1970 if test "$_runtime_cpudetection" = no ; then
1971 cc_check -march=native && proc=native
1972 # --- AMD processors ---
1973 if test "$proc" = "k8"; then
1974 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1976 # This will fail if gcc version < 3.3, which is ok because earlier
1977 # versions don't really support 64-bit on amd64.
1978 # Is this a valid assumption? -Corey
1979 if test "$proc" = "athlon-xp"; then
1980 cc_check -march=$proc $cpuopt=$proc || proc=error
1982 # --- Intel processors ---
1983 if test "$proc" = "core2"; then
1984 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
1986 if test "$proc" = "x86-64"; then
1987 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1989 if test "$proc" = "nocona"; then
1990 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1992 if test "$proc" = "pentium4"; then
1993 cc_check -march=$proc $cpuopt=$proc || proc=error
1996 _march="-march=$proc"
1997 _mcpu="$cpuopt=$proc"
1998 if test "$proc" = "error" ; then
1999 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2000 _mcpu=""
2001 _march=""
2003 else # if test "$_runtime_cpudetection" = no
2004 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2005 _march="-march=x86-64"
2006 _mcpu="$cpuopt=generic"
2007 cc_check $_mcpu || _mcpu="x86-64"
2008 cc_check $_mcpu || _mcpu=""
2009 cc_check $_march $_mcpu || _march=""
2012 _optimizing="$proc"
2013 test $_fast_cmov = "auto" && _fast_cmov=yes
2014 test $_fast_clz = "auto" && _fast_clz=yes
2016 echores "$proc"
2019 sparc|sparc64)
2020 _arch='SPARC'
2021 _target_arch='ARCH_SPARC = yes'
2022 iproc='sparc'
2023 if test "$host_arch" = "sparc64" ; then
2024 _vis='yes'
2025 proc='ultrasparc'
2026 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2027 elif sunos ; then
2028 echocheck "CPU type"
2029 karch=$(uname -m)
2030 case "$(echo $karch)" in
2031 sun4) proc=v7 ;;
2032 sun4c) proc=v7 ;;
2033 sun4d) proc=v8 ;;
2034 sun4m) proc=v8 ;;
2035 sun4u) proc=ultrasparc _vis='yes' ;;
2036 sun4v) proc=v9 ;;
2037 *) proc=v8 ;;
2038 esac
2039 echores "$proc"
2040 else
2041 proc=v8
2043 _mcpu="-mcpu=$proc"
2044 _optimizing="$proc"
2047 arm*)
2048 _arch='ARM'
2049 _target_arch='ARCH_ARM = yes'
2050 iproc='arm'
2053 avr32)
2054 _arch='AVR32'
2055 _target_arch='ARCH_AVR32 = yes'
2056 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2057 iproc='avr32'
2058 test $_fast_clz = "auto" && _fast_clz=yes
2061 sh|sh4)
2062 _arch='SH4'
2063 _target_arch='ARCH_SH4 = yes'
2064 iproc='sh4'
2067 ppc|ppc64|powerpc|powerpc64)
2068 _arch='PPC'
2069 def_dcbzl='#define HAVE_DCBZL 0'
2070 _target_arch='ARCH_PPC = yes'
2071 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2072 iproc='ppc'
2074 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2075 _arch='PPC PPC64'
2076 _target_subarch='ARCH_PPC64 = yes'
2077 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2079 echocheck "CPU type"
2080 case $system_name in
2081 Linux)
2082 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2083 if test -n "$($_cpuinfo | grep altivec)"; then
2084 test $_altivec = auto && _altivec=yes
2087 Darwin)
2088 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2089 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2090 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2091 test $_altivec = auto && _altivec=yes
2094 NetBSD)
2095 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2096 case $cc_version in
2097 2*|3.0*|3.1*|3.2*|3.3*)
2100 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2101 test $_altivec = auto && _altivec=yes
2104 esac
2106 AIX)
2107 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2109 esac
2110 if test "$_altivec" = yes; then
2111 echores "$proc altivec"
2112 else
2113 _altivec=no
2114 echores "$proc"
2117 echocheck "GCC & CPU optimization abilities"
2119 if test -n "$proc"; then
2120 case "$proc" in
2121 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2122 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2123 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2124 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2125 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2126 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2127 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2128 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2129 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2130 *) ;;
2131 esac
2132 # gcc 3.1(.1) and up supports 7400 and 7450
2133 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2134 case "$proc" in
2135 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2136 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2137 *) ;;
2138 esac
2140 # gcc 3.2 and up supports 970
2141 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2142 case "$proc" in
2143 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2144 def_dcbzl='#define HAVE_DCBZL 1' ;;
2145 *) ;;
2146 esac
2148 # gcc 3.3 and up supports POWER4
2149 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2150 case "$proc" in
2151 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2152 *) ;;
2153 esac
2155 # gcc 3.4 and up supports 440*
2156 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2157 case "$proc" in
2158 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2159 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2160 *) ;;
2161 esac
2163 # gcc 4.0 and up supports POWER5
2164 if test "$_cc_major" -ge "4"; then
2165 case "$proc" in
2166 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2167 *) ;;
2168 esac
2172 if test -n "$_mcpu"; then
2173 _optimizing=$(echo $_mcpu | cut -c 8-)
2174 echores "$_optimizing"
2175 else
2176 echores "none"
2179 test $_fast_clz = "auto" && _fast_clz=yes
2183 alpha*)
2184 _arch='ALPHA'
2185 _target_arch='ARCH_ALPHA = yes'
2186 iproc='alpha'
2187 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2189 echocheck "CPU type"
2190 cat > $TMPC << EOF
2191 int main(void) {
2192 unsigned long ver, mask;
2193 __asm__ ("implver %0" : "=r" (ver));
2194 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2195 printf("%ld-%x\n", ver, ~mask);
2196 return 0;
2199 $_cc -o "$TMPEXE" "$TMPC"
2200 case $("$TMPEXE") in
2202 0-0) proc="ev4"; _mvi="0";;
2203 1-0) proc="ev5"; _mvi="0";;
2204 1-1) proc="ev56"; _mvi="0";;
2205 1-101) proc="pca56"; _mvi="1";;
2206 2-303) proc="ev6"; _mvi="1";;
2207 2-307) proc="ev67"; _mvi="1";;
2208 2-1307) proc="ev68"; _mvi="1";;
2209 esac
2210 echores "$proc"
2212 echocheck "GCC & CPU optimization abilities"
2213 if test "$proc" = "ev68" ; then
2214 cc_check -mcpu=$proc || proc=ev67
2216 if test "$proc" = "ev67" ; then
2217 cc_check -mcpu=$proc || proc=ev6
2219 _mcpu="-mcpu=$proc"
2220 echores "$proc"
2222 test $_fast_clz = "auto" && _fast_clz=yes
2224 _optimizing="$proc"
2227 mips)
2228 _arch='SGI_MIPS'
2229 _target_arch='ARCH_SGI_MIPS = yes'
2230 iproc='sgi-mips'
2232 if irix ; then
2233 echocheck "CPU type"
2234 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2235 case "$(echo $proc)" in
2236 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2237 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2238 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2239 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2240 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2241 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2242 esac
2243 # gcc < 3.x does not support -mtune.
2244 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2245 _mcpu=''
2247 echores "$proc"
2250 test $_fast_clz = "auto" && _fast_clz=yes
2254 hppa)
2255 _arch='PA_RISC'
2256 _target_arch='ARCH_PA_RISC = yes'
2257 iproc='PA-RISC'
2260 s390)
2261 _arch='S390'
2262 _target_arch='ARCH_S390 = yes'
2263 iproc='390'
2266 s390x)
2267 _arch='S390X'
2268 _target_arch='ARCH_S390X = yes'
2269 iproc='390x'
2272 vax)
2273 _arch='VAX'
2274 _target_arch='ARCH_VAX = yes'
2275 iproc='vax'
2278 xtensa)
2279 _arch='XTENSA'
2280 _target_arch='ARCH_XTENSA = yes'
2281 iproc='xtensa'
2284 generic)
2285 _arch='GENERIC'
2286 _target_arch='ARCH_GENERIC = yes'
2290 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2291 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2292 die "unsupported architecture $host_arch"
2294 esac # case "$host_arch" in
2296 if test "$_runtime_cpudetection" = yes ; then
2297 if x86 ; then
2298 test "$_cmov" != no && _cmov=yes
2299 x86_32 && _cmov=no
2300 test "$_mmx" != no && _mmx=yes
2301 test "$_3dnow" != no && _3dnow=yes
2302 test "$_3dnowext" != no && _3dnowext=yes
2303 test "$_mmxext" != no && _mmxext=yes
2304 test "$_sse" != no && _sse=yes
2305 test "$_sse2" != no && _sse2=yes
2306 test "$_ssse3" != no && _ssse3=yes
2307 test "$_mtrr" != no && _mtrr=yes
2309 if ppc; then
2310 _altivec=yes
2315 # endian testing
2316 echocheck "byte order"
2317 if test "$_big_endian" = auto ; then
2318 cat > $TMPC <<EOF
2319 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2320 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2321 int main(void) { return (int)ascii_name; }
2323 if cc_check ; then
2324 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2325 _big_endian=yes
2326 else
2327 _big_endian=no
2329 else
2330 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2333 if test "$_big_endian" = yes ; then
2334 _byte_order='big-endian'
2335 def_words_endian='#define WORDS_BIGENDIAN 1'
2336 def_bigendian='#define HAVE_BIGENDIAN 1'
2337 else
2338 _byte_order='little-endian'
2339 def_words_endian='#undef WORDS_BIGENDIAN'
2340 def_bigendian='#define HAVE_BIGENDIAN 0'
2342 echores "$_byte_order"
2345 echocheck "extern symbol prefix"
2346 cat > $TMPC << EOF
2347 int ff_extern;
2349 cc_check -c || die "Symbol mangling check failed."
2350 sym=$($_nm -P -g $TMPEXE)
2351 extern_prefix=${sym%%ff_extern*}
2352 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2353 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2354 echores $extern_prefix
2357 echocheck "assembler support of -pipe option"
2358 cat > $TMPC << EOF
2359 int main(void) { return 0; }
2361 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2362 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2365 echocheck "compiler support of named assembler arguments"
2366 _named_asm_args=yes
2367 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2368 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2369 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2370 _named_asm_args=no
2371 def_named_asm_args="#undef NAMED_ASM_ARGS"
2373 echores $_named_asm_args
2376 if darwin && test "$cc_vendor" = "gnu" ; then
2377 echocheck "GCC support of -mstackrealign"
2378 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2379 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2380 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2381 # wrong code with this flag, but this can be worked around by adding
2382 # -fno-unit-at-a-time as described in the blog post at
2383 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2384 cat > $TMPC << EOF
2385 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2386 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2388 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2389 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2390 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2391 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2392 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2395 # Checking for CFLAGS
2396 _install_strip="-s"
2397 if test "$_profile" != "" || test "$_debug" != "" ; then
2398 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2399 _install_strip=
2400 elif test -z "$CFLAGS" ; then
2401 if test "$cc_vendor" = "intel" ; then
2402 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2403 elif test "$cc_vendor" = "sun" ; then
2404 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2405 elif test "$cc_vendor" != "gnu" ; then
2406 CFLAGS="-O2 $_march $_mcpu $_pipe"
2407 else
2408 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2409 extra_ldflags="$extra_ldflags -ffast-math"
2411 else
2412 _warn_CFLAGS=yes
2415 cat > $TMPC << EOF
2416 int main(void) { return 0; }
2418 if test "$cc_vendor" = "gnu" ; then
2419 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2420 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2421 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2422 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2423 cc_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2424 else
2425 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2428 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2431 if test -n "$LDFLAGS" ; then
2432 extra_ldflags="$extra_ldflags $LDFLAGS"
2433 _warn_CFLAGS=yes
2434 elif test "$cc_vendor" = "intel" ; then
2435 extra_ldflags="$extra_ldflags -i-static"
2437 if test -n "$CPPFLAGS" ; then
2438 extra_cflags="$extra_cflags $CPPFLAGS"
2439 _warn_CFLAGS=yes
2444 if x86_32 ; then
2445 # Checking assembler (_as) compatibility...
2446 # Added workaround for older as that reads from stdin by default - atmos
2447 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2448 echocheck "assembler ($_as $as_version)"
2450 _pref_as_version='2.9.1'
2451 echo 'nop' > $TMPS
2452 if test "$_mmx" = yes ; then
2453 echo 'emms' >> $TMPS
2455 if test "$_3dnow" = yes ; then
2456 _pref_as_version='2.10.1'
2457 echo 'femms' >> $TMPS
2459 if test "$_3dnowext" = yes ; then
2460 _pref_as_version='2.10.1'
2461 echo 'pswapd %mm0, %mm0' >> $TMPS
2463 if test "$_mmxext" = yes ; then
2464 _pref_as_version='2.10.1'
2465 echo 'movntq %mm0, (%eax)' >> $TMPS
2467 if test "$_sse" = yes ; then
2468 _pref_as_version='2.10.1'
2469 echo 'xorps %xmm0, %xmm0' >> $TMPS
2471 #if test "$_sse2" = yes ; then
2472 # _pref_as_version='2.11'
2473 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2475 if test "$_cmov" = yes ; then
2476 _pref_as_version='2.10.1'
2477 echo 'cmovb %eax, %ebx' >> $TMPS
2479 if test "$_ssse3" = yes ; then
2480 _pref_as_version='2.16.92'
2481 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2483 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2485 if test "$as_verc_fail" != yes ; then
2486 echores "ok"
2487 else
2488 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2489 echores "failed"
2490 die "obsolete binutils version"
2493 fi #if x86_32
2495 echocheck ".align is a power of two"
2496 if test "$_asmalign_pot" = auto ; then
2497 _asmalign_pot=no
2498 cat > $TMPC << EOF
2499 int main(void) { __asm__ (".align 3"); return 0; }
2501 cc_check && _asmalign_pot=yes
2503 if test "$_asmalign_pot" = "yes" ; then
2504 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2505 else
2506 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2508 echores $_asmalign_pot
2510 if x86 ; then
2511 echocheck "10 assembler operands"
2512 ten_operands=no
2513 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2514 cat > $TMPC << EOF
2515 int main(void) {
2516 int x=0;
2517 __asm__ volatile(
2519 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2521 return 0;
2524 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2525 echores $ten_operands
2527 echocheck "ebx availability"
2528 ebx_available=no
2529 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2530 cat > $TMPC << EOF
2531 int main(void) {
2532 int x;
2533 __asm__ volatile(
2534 "xor %0, %0"
2535 :"=b"(x)
2536 // just adding ebx to clobber list seems unreliable with some
2537 // compilers, e.g. Haiku's gcc 2.95
2539 // and the above check does not work for OSX 64 bit...
2540 __asm__ volatile("":::"%ebx");
2541 return 0;
2544 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2545 echores $ebx_available
2547 echocheck "PIC"
2548 pic=no
2549 cat > $TMPC << EOF
2550 int main(void) {
2551 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2552 #error PIC not enabled
2553 #endif
2554 return 0;
2557 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2558 echores $pic
2560 echocheck "yasm"
2561 if test -z "$YASMFLAGS" ; then
2562 if darwin ; then
2563 x86_64 && objformat="macho64" || objformat="macho"
2564 elif win32 ; then
2565 objformat="win32"
2566 else
2567 objformat="elf"
2569 # currently tested for Linux x86, x86_64
2570 YASMFLAGS="-f $objformat"
2571 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2572 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2573 case "$objformat" in
2574 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2575 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2576 esac
2577 else
2578 _warn_CFLAGS=yes
2581 echo "pabsw xmm0, xmm0" > $TMPS
2582 yasm_check || _yasm=""
2583 if test $_yasm ; then
2584 test "$_mmx" = "yes" && fft_mmx="yes"
2585 def_yasm='#define HAVE_YASM 1'
2586 _have_yasm="yes"
2587 echores "$_yasm"
2588 else
2589 def_yasm='#define HAVE_YASM 0'
2590 fft_mmx="no"
2591 _have_yasm="no"
2592 echores "no"
2595 echocheck "bswap"
2596 def_bswap='#define HAVE_BSWAP 0'
2597 echo 'bswap %eax' > $TMPS
2598 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2599 echores "$bswap"
2600 fi #if x86
2603 #FIXME: This should happen before the check for CFLAGS..
2604 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2605 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2607 # check if AltiVec is supported by the compiler, and how to enable it
2608 echocheck "GCC AltiVec flags"
2609 cat > $TMPC << EOF
2610 int main(void) { return 0; }
2612 if $(cc_check -maltivec -mabi=altivec) ; then
2613 _altivec_gcc_flags="-maltivec -mabi=altivec"
2614 # check if <altivec.h> should be included
2615 cat > $TMPC << EOF
2616 #include <altivec.h>
2617 int main(void) { return 0; }
2619 if $(cc_check $_altivec_gcc_flags) ; then
2620 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2621 inc_altivec_h='#include <altivec.h>'
2622 else
2623 cat > $TMPC << EOF
2624 int main(void) { return 0; }
2626 if $(cc_check -faltivec) ; then
2627 _altivec_gcc_flags="-faltivec"
2628 else
2629 _altivec=no
2630 _altivec_gcc_flags="none, AltiVec disabled"
2634 echores "$_altivec_gcc_flags"
2636 # check if the compiler supports braces for vector declarations
2637 cat > $TMPC << EOF
2638 $inc_altivec_h
2639 int main(void) { (vector int) {1}; return 0; }
2641 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2643 # Disable runtime cpudetection if we cannot generate AltiVec code or
2644 # AltiVec is disabled by the user.
2645 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2646 && _runtime_cpudetection=no
2648 # Show that we are optimizing for AltiVec (if enabled and supported).
2649 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2650 && _optimizing="$_optimizing altivec"
2652 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2653 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2656 if ppc ; then
2657 def_xform_asm='#define HAVE_XFORM_ASM 0'
2658 xform_asm=no
2659 echocheck "XFORM ASM support"
2660 cat > $TMPC << EOF
2661 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2663 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2664 echores "$xform_asm"
2667 if arm ; then
2668 echocheck "ARM pld instruction"
2669 cat > $TMPC << EOF
2670 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2672 pld=no
2673 cc_check && pld=yes
2674 echores "$pld"
2676 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2677 if test $_armv5te = "auto" ; then
2678 cat > $TMPC << EOF
2679 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2681 _armv5te=no
2682 cc_check && _armv5te=yes
2684 echores "$_armv5te"
2686 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2688 echocheck "ARMv6 (SIMD instructions)"
2689 if test $_armv6 = "auto" ; then
2690 cat > $TMPC << EOF
2691 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2693 _armv6=no
2694 cc_check && _armv6=yes
2696 echores "$_armv6"
2698 echocheck "ARMv6t2 (SIMD instructions)"
2699 if test $_armv6t2 = "auto" ; then
2700 cat > $TMPC << EOF
2701 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2703 _armv6t2=no
2704 cc_check && _armv6t2=yes
2706 echores "$_armv6"
2708 echocheck "ARM VFP"
2709 if test $_armvfp = "auto" ; then
2710 cat > $TMPC << EOF
2711 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2713 _armvfp=no
2714 cc_check && _armvfp=yes
2716 echores "$_armvfp"
2718 echocheck "ARM NEON"
2719 if test $neon = "auto" ; then
2720 cat > $TMPC << EOF
2721 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2723 neon=no
2724 cc_check && neon=yes
2726 echores "$neon"
2728 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2729 if test $_iwmmxt = "auto" ; then
2730 cat > $TMPC << EOF
2731 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2733 _iwmmxt=no
2734 cc_check && _iwmmxt=yes
2736 echores "$_iwmmxt"
2739 _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'
2740 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2741 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2742 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2743 test "$_3dnow" = yes && _cpuexts="AMD3DNOW $_cpuexts"
2744 test "$_3dnowext" = yes && _cpuexts="AMD3DNOWEXT $_cpuexts"
2745 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2746 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2747 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2748 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2749 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2750 test "$_fast_clz" = yes && _cpuexts="FAST_CLZ $_cpuexts"
2751 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2752 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2753 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2754 test "$_armv6t2" = yes && _cpuexts="ARMV6T2 $_cpuexts"
2755 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2756 test "$neon" = yes && _cpuexts="NEON $_cpuexts"
2757 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2758 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2759 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2761 # Checking kernel version...
2762 if x86_32 && linux ; then
2763 _k_verc_problem=no
2764 kernel_version=$(uname -r 2>&1)
2765 echocheck "$system_name kernel version"
2766 case "$kernel_version" in
2767 '') kernel_version="?.??"; _k_verc_fail=yes;;
2768 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2769 _k_verc_problem=yes;;
2770 esac
2771 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2772 _k_verc_fail=yes
2774 if test "$_k_verc_fail" ; then
2775 echores "$kernel_version, fail"
2776 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2777 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2778 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2779 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2780 echo "2.2.x you must upgrade it to get SSE support!"
2781 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2782 else
2783 echores "$kernel_version, ok"
2787 ######################
2788 # MAIN TESTS GO HERE #
2789 ######################
2792 echocheck "-lposix"
2793 cat > $TMPC <<EOF
2794 int main(void) { return 0; }
2796 if cc_check -lposix ; then
2797 extra_ldflags="$extra_ldflags -lposix"
2798 echores "yes"
2799 else
2800 echores "no"
2803 echocheck "-lm"
2804 cat > $TMPC <<EOF
2805 int main(void) { return 0; }
2807 if cc_check -lm ; then
2808 _ld_lm="-lm"
2809 echores "yes"
2810 else
2811 _ld_lm=""
2812 echores "no"
2816 echocheck "langinfo"
2817 if test "$_langinfo" = auto ; then
2818 cat > $TMPC <<EOF
2819 #include <langinfo.h>
2820 int main(void) { nl_langinfo(CODESET); return 0; }
2822 _langinfo=no
2823 cc_check && _langinfo=yes
2825 if test "$_langinfo" = yes ; then
2826 def_langinfo='#define HAVE_LANGINFO 1'
2827 else
2828 def_langinfo='#undef HAVE_LANGINFO'
2830 echores "$_langinfo"
2833 echocheck "translation support"
2834 if test "$_translation" = yes; then
2835 def_translation="#define CONFIG_TRANSLATION 1"
2836 else
2837 def_translation="#undef CONFIG_TRANSLATION"
2839 echores "$_translation"
2841 echocheck "language"
2842 # Set preferred languages, "all" uses English as main language.
2843 test -z "$language" && language=$LINGUAS
2844 test -z "$language_doc" && language_doc=$language
2845 test -z "$language_man" && language_man=$language
2846 language_doc=$(echo $language_doc | tr , " ")
2847 language_man=$(echo $language_man | tr , " ")
2849 test "$language_doc" = "all" && language_doc=$doc_lang_all
2850 test "$language_man" = "all" && language_man=$man_lang_all
2852 # Prune non-existing translations from language lists.
2853 # Set message translation to the first available language.
2854 # Fall back on English.
2855 for lang in $language_doc ; do
2856 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2857 done
2858 language_doc=$tmp_language_doc
2859 test -z "$language_doc" && language_doc=en
2861 for lang in $language_man ; do
2862 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2863 done
2864 language_man=$tmp_language_man
2865 test -z "$language_man" && language_man=en
2867 echores "man pages: $language_man - documentation: $language_doc"
2870 echocheck "enable sighandler"
2871 if test "$_sighandler" = yes ; then
2872 def_sighandler='#define CONFIG_SIGHANDLER 1'
2873 else
2874 def_sighandler='#undef CONFIG_SIGHANDLER'
2876 echores "$_sighandler"
2878 echocheck "runtime cpudetection"
2879 if test "$_runtime_cpudetection" = yes ; then
2880 _optimizing="Runtime CPU-Detection enabled"
2881 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2882 else
2883 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2885 echores "$_runtime_cpudetection"
2888 echocheck "restrict keyword"
2889 for restrict_keyword in restrict __restrict __restrict__ ; do
2890 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2891 if cc_check; then
2892 def_restrict_keyword=$restrict_keyword
2893 break;
2895 done
2896 if [ -n "$def_restrict_keyword" ]; then
2897 echores "$def_restrict_keyword"
2898 else
2899 echores "none"
2901 # Avoid infinite recursion loop ("#define restrict restrict")
2902 if [ "$def_restrict_keyword" != "restrict" ]; then
2903 def_restrict_keyword="#define restrict $def_restrict_keyword"
2904 else
2905 def_restrict_keyword=""
2909 echocheck "__builtin_expect"
2910 # GCC branch prediction hint
2911 cat > $TMPC << EOF
2912 int foo(int a) {
2913 a = __builtin_expect(a, 10);
2914 return a == 10 ? 0 : 1;
2916 int main(void) { return foo(10) && foo(0); }
2918 _builtin_expect=no
2919 cc_check && _builtin_expect=yes
2920 if test "$_builtin_expect" = yes ; then
2921 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2922 else
2923 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2925 echores "$_builtin_expect"
2928 echocheck "kstat"
2929 cat > $TMPC << EOF
2930 #include <kstat.h>
2931 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2933 _kstat=no
2934 cc_check -lkstat && _kstat=yes
2935 if test "$_kstat" = yes ; then
2936 def_kstat="#define HAVE_LIBKSTAT 1"
2937 extra_ldflags="$extra_ldflags -lkstat"
2938 else
2939 def_kstat="#undef HAVE_LIBKSTAT"
2941 echores "$_kstat"
2944 echocheck "posix4"
2945 # required for nanosleep on some systems
2946 cat > $TMPC << EOF
2947 #include <time.h>
2948 int main(void) { (void) nanosleep(0, 0); return 0; }
2950 _posix4=no
2951 cc_check -lposix4 && _posix4=yes
2952 if test "$_posix4" = yes ; then
2953 extra_ldflags="$extra_ldflags -lposix4"
2955 echores "$_posix4"
2957 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2958 echocheck $func
2959 cat > $TMPC << EOF
2960 #include <math.h>
2961 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2963 eval _$func=no
2964 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2965 if eval test "x\$_$func" = "xyes"; then
2966 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2967 echores yes
2968 else
2969 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2970 echores no
2972 done
2975 echocheck "mkstemp"
2976 cat > $TMPC << EOF
2977 #include <stdlib.h>
2978 int main(void) { char a; mkstemp(&a); return 0; }
2980 _mkstemp=no
2981 cc_check && _mkstemp=yes
2982 if test "$_mkstemp" = yes ; then
2983 def_mkstemp='#define HAVE_MKSTEMP 1'
2984 else
2985 def_mkstemp='#undef HAVE_MKSTEMP'
2987 echores "$_mkstemp"
2990 echocheck "nanosleep"
2991 # also check for nanosleep
2992 cat > $TMPC << EOF
2993 #include <time.h>
2994 int main(void) { (void) nanosleep(0, 0); return 0; }
2996 _nanosleep=no
2997 cc_check && _nanosleep=yes
2998 if test "$_nanosleep" = yes ; then
2999 def_nanosleep='#define HAVE_NANOSLEEP 1'
3000 else
3001 def_nanosleep='#undef HAVE_NANOSLEEP'
3003 echores "$_nanosleep"
3006 echocheck "socklib"
3007 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3008 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3009 cat > $TMPC << EOF
3010 #include <netdb.h>
3011 #include <sys/socket.h>
3012 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3014 _socklib=no
3015 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3016 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3017 done
3018 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3019 if test $_winsock2_h = auto ; then
3020 _winsock2_h=no
3021 cat > $TMPC << EOF
3022 #include <winsock2.h>
3023 int main(void) { (void) gethostbyname(0); return 0; }
3025 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3027 test "$_ld_sock" && _res_comment="using $_ld_sock"
3028 echores "$_socklib"
3031 if test $_winsock2_h = yes ; then
3032 _ld_sock="-lws2_32"
3033 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3034 else
3035 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3039 echocheck "arpa/inet.h"
3040 arpa_inet_h=no
3041 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3042 cat > $TMPC << EOF
3043 #include <arpa/inet.h>
3044 int main(void) { return 0; }
3046 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3047 echores "$arpa_inet_h"
3050 echocheck "inet_pton()"
3051 def_inet_pton='#define HAVE_INET_PTON 0'
3052 inet_pton=no
3053 cat > $TMPC << EOF
3054 #include <sys/types.h>
3055 #include <sys/socket.h>
3056 #include <arpa/inet.h>
3057 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3059 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3060 cc_check $_ld_tmp && inet_pton=yes && break
3061 done
3062 if test $inet_pton = yes ; then
3063 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3064 def_inet_pton='#define HAVE_INET_PTON 1'
3066 echores "$inet_pton"
3069 echocheck "inet_aton()"
3070 def_inet_aton='#define HAVE_INET_ATON 0'
3071 inet_aton=no
3072 cat > $TMPC << EOF
3073 #include <sys/types.h>
3074 #include <sys/socket.h>
3075 #include <arpa/inet.h>
3076 int main(void) { (void) inet_aton(0, 0); return 0; }
3078 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3079 cc_check $_ld_tmp && inet_aton=yes && break
3080 done
3081 if test $inet_aton = yes ; then
3082 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3083 def_inet_aton='#define HAVE_INET_ATON 1'
3085 echores "$inet_aton"
3088 echocheck "socklen_t"
3089 _socklen_t=no
3090 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3091 cat > $TMPC << EOF
3092 #include <$header>
3093 int main(void) { socklen_t v = 0; return v; }
3095 cc_check && _socklen_t=yes && break
3096 done
3097 if test "$_socklen_t" = yes ; then
3098 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3099 else
3100 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3102 echores "$_socklen_t"
3105 echocheck "closesocket()"
3106 _closesocket=no
3107 cat > $TMPC << EOF
3108 #include <winsock2.h>
3109 int main(void) { closesocket(~0); return 0; }
3111 cc_check $_ld_sock && _closesocket=yes
3112 if test "$_closesocket" = yes ; then
3113 def_closesocket='#define HAVE_CLOSESOCKET 1'
3114 else
3115 def_closesocket='#define HAVE_CLOSESOCKET 0'
3117 echores "$_closesocket"
3120 echocheck "network"
3121 test $_winsock2_h = no && test $inet_pton = no &&
3122 test $inet_aton = no && _network=no
3123 if test "$_network" = yes ; then
3124 def_network='#define CONFIG_NETWORK 1'
3125 extra_ldflags="$extra_ldflags $_ld_sock"
3126 _inputmodules="network $_inputmodules"
3127 else
3128 _noinputmodules="network $_noinputmodules"
3129 def_network='#undef CONFIG_NETWORK'
3130 _ftp=no
3132 echores "$_network"
3135 echocheck "inet6"
3136 if test "$_inet6" = auto ; then
3137 cat > $TMPC << EOF
3138 #include <sys/types.h>
3139 #if !defined(_WIN32) || defined(__CYGWIN__)
3140 #include <sys/socket.h>
3141 #include <netinet/in.h>
3142 #else
3143 #include <ws2tcpip.h>
3144 #endif
3145 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3147 _inet6=no
3148 if cc_check $_ld_sock ; then
3149 _inet6=yes
3152 if test "$_inet6" = yes ; then
3153 def_inet6='#define HAVE_AF_INET6 1'
3154 else
3155 def_inet6='#undef HAVE_AF_INET6'
3157 echores "$_inet6"
3160 echocheck "gethostbyname2"
3161 if test "$_gethostbyname2" = auto ; then
3162 cat > $TMPC << EOF
3163 #include <sys/types.h>
3164 #include <sys/socket.h>
3165 #include <netdb.h>
3166 int main(void) { gethostbyname2("", AF_INET); return 0; }
3168 _gethostbyname2=no
3169 if cc_check ; then
3170 _gethostbyname2=yes
3173 if test "$_gethostbyname2" = yes ; then
3174 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3175 else
3176 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3178 echores "$_gethostbyname2"
3181 echocheck "inttypes.h (required)"
3182 cat > $TMPC << EOF
3183 #include <inttypes.h>
3184 int main(void) { return 0; }
3186 _inttypes=no
3187 cc_check && _inttypes=yes
3188 echores "$_inttypes"
3190 if test "$_inttypes" = no ; then
3191 echocheck "bitypes.h (inttypes.h predecessor)"
3192 cat > $TMPC << EOF
3193 #include <sys/bitypes.h>
3194 int main(void) { return 0; }
3196 cc_check && _inttypes=yes
3197 if test "$_inttypes" = yes ; then
3198 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."
3199 else
3200 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3205 echocheck "int_fastXY_t in inttypes.h"
3206 cat > $TMPC << EOF
3207 #include <inttypes.h>
3208 int main(void) {
3209 volatile int_fast16_t v= 0;
3210 return v; }
3212 _fast_inttypes=no
3213 cc_check && _fast_inttypes=yes
3214 if test "$_fast_inttypes" = no ; then
3215 def_fast_inttypes='
3216 typedef signed char int_fast8_t;
3217 typedef signed int int_fast16_t;
3218 typedef signed int int_fast32_t;
3219 typedef signed long long int_fast64_t;
3220 typedef unsigned char uint_fast8_t;
3221 typedef unsigned int uint_fast16_t;
3222 typedef unsigned int uint_fast32_t;
3223 typedef unsigned long long uint_fast64_t;'
3225 echores "$_fast_inttypes"
3228 echocheck "malloc.h"
3229 cat > $TMPC << EOF
3230 #include <malloc.h>
3231 int main(void) { (void) malloc(0); return 0; }
3233 _malloc=no
3234 cc_check && _malloc=yes
3235 if test "$_malloc" = yes ; then
3236 def_malloc_h='#define HAVE_MALLOC_H 1'
3237 else
3238 def_malloc_h='#define HAVE_MALLOC_H 0'
3240 # malloc.h emits a warning in FreeBSD and OpenBSD
3241 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3242 echores "$_malloc"
3245 echocheck "memalign()"
3246 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3247 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3248 cat > $TMPC << EOF
3249 #include <malloc.h>
3250 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3252 _memalign=no
3253 cc_check && _memalign=yes
3254 if test "$_memalign" = yes ; then
3255 def_memalign='#define HAVE_MEMALIGN 1'
3256 else
3257 def_memalign='#define HAVE_MEMALIGN 0'
3258 def_map_memalign='#define memalign(a,b) malloc(b)'
3259 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3261 echores "$_memalign"
3264 echocheck "posix_memalign()"
3265 posix_memalign=no
3266 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3267 cat > $TMPC << EOF
3268 #define _XOPEN_SOURCE 600
3269 #include <stdlib.h>
3270 int main(void) { posix_memalign(NULL, 0, 0); }
3272 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3273 echores "$posix_memalign"
3276 echocheck "alloca.h"
3277 cat > $TMPC << EOF
3278 #include <alloca.h>
3279 int main(void) { (void) alloca(0); return 0; }
3281 _alloca=no
3282 cc_check && _alloca=yes
3283 if cc_check ; then
3284 def_alloca_h='#define HAVE_ALLOCA_H 1'
3285 else
3286 def_alloca_h='#undef HAVE_ALLOCA_H'
3288 echores "$_alloca"
3291 echocheck "fastmemcpy"
3292 if test "$_fastmemcpy" = yes ; then
3293 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3294 else
3295 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3297 echores "$_fastmemcpy"
3300 echocheck "mman.h"
3301 cat > $TMPC << EOF
3302 #include <sys/types.h>
3303 #include <sys/mman.h>
3304 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3306 _mman=no
3307 cc_check && _mman=yes
3308 if test "$_mman" = yes ; then
3309 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3310 else
3311 def_mman_h='#undef HAVE_SYS_MMAN_H'
3312 os2 && _need_mmap=yes
3314 echores "$_mman"
3316 cat > $TMPC << EOF
3317 #include <sys/types.h>
3318 #include <sys/mman.h>
3319 int main(void) { void *p = MAP_FAILED; return 0; }
3321 _mman_has_map_failed=no
3322 cc_check && _mman_has_map_failed=yes
3323 if test "$_mman_has_map_failed" = yes ; then
3324 def_mman_has_map_failed=''
3325 else
3326 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3329 echocheck "dynamic loader"
3330 cat > $TMPC << EOF
3331 #include <stddef.h>
3332 #include <dlfcn.h>
3333 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3335 _dl=no
3336 for _ld_tmp in "" "-ldl" ; do
3337 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3338 done
3339 if test "$_dl" = yes ; then
3340 def_dl='#define HAVE_LIBDL 1'
3341 else
3342 def_dl='#undef HAVE_LIBDL'
3344 echores "$_dl"
3347 echocheck "dynamic a/v plugins support"
3348 if test "$_dl" = no ; then
3349 _dynamic_plugins=no
3351 if test "$_dynamic_plugins" = yes ; then
3352 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3353 else
3354 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3356 echores "$_dynamic_plugins"
3359 def_threads='#define HAVE_THREADS 0'
3361 echocheck "pthread"
3362 if linux ; then
3363 THREAD_CFLAGS=-D_REENTRANT
3364 elif freebsd || netbsd || openbsd || bsdos ; then
3365 THREAD_CFLAGS=-D_THREAD_SAFE
3367 if test "$_pthreads" = auto ; then
3368 cat > $TMPC << EOF
3369 #include <pthread.h>
3370 void* func(void *arg) { return arg; }
3371 int main(void) {
3372 pthread_t tid;
3373 int res = 0;
3374 #ifdef PTW32_STATIC_LIB
3375 pthread_win32_process_attach_np();
3376 pthread_win32_thread_attach_np();
3377 #endif
3378 res = pthread_create (&tid, 0, func, 0) == 0 ? 0 : 1;
3379 return res;
3382 _pthreads=no
3383 if ! hpux ; then
3384 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3385 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3386 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3387 done
3388 # static pthreads on mingw32
3389 if test "$_pthreads" = no && mingw32 ; then
3390 _ld_tmp="-lpthreadGC2 -lws2_32"
3391 cc_check $_ld_tmp -DPTW32_STATIC_LIB && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && CFLAGS="$CFLAGS -DPTW32_STATIC_LIB"
3395 if test "$_pthreads" = yes ; then
3396 test -n "$_ld_pthread" && _res_comment="using $_ld_pthread"
3397 def_pthreads='#define HAVE_PTHREADS 1'
3398 def_threads='#define HAVE_THREADS 1'
3399 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3400 else
3401 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3402 def_pthreads='#undef HAVE_PTHREADS'
3403 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3404 mingw32 || _win32dll=no
3406 echores "$_pthreads"
3408 if cygwin ; then
3409 if test "$_pthreads" = yes ; then
3410 def_pthread_cache="#define PTHREAD_CACHE 1"
3411 else
3412 _stream_cache=no
3413 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3417 echocheck "w32threads"
3418 if test "$_pthreads" = yes ; then
3419 _res_comment="using pthread instead"
3420 _w32threads=no
3422 if test "$_w32threads" = auto ; then
3423 _w32threads=no
3424 mingw32 && _w32threads=yes
3426 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3427 echores "$_w32threads"
3429 echocheck "rpath"
3430 netbsd &&_rpath=yes
3431 if test "$_rpath" = yes ; then
3432 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3433 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3434 done
3435 extra_ldflags=$tmp
3437 echores "$_rpath"
3439 echocheck "iconv"
3440 if test "$_iconv" = auto ; then
3441 cat > $TMPC << EOF
3442 #include <stdio.h>
3443 #include <unistd.h>
3444 #include <iconv.h>
3445 #define INBUFSIZE 1024
3446 #define OUTBUFSIZE 4096
3448 char inbuffer[INBUFSIZE];
3449 char outbuffer[OUTBUFSIZE];
3451 int main(void) {
3452 size_t numread;
3453 iconv_t icdsc;
3454 char *tocode="UTF-8";
3455 char *fromcode="cp1250";
3456 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3457 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3458 char *iptr=inbuffer;
3459 char *optr=outbuffer;
3460 size_t inleft=numread;
3461 size_t outleft=OUTBUFSIZE;
3462 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3463 != (size_t)(-1)) {
3464 write(1, outbuffer, OUTBUFSIZE - outleft);
3467 if (iconv_close(icdsc) == -1)
3470 return 0;
3473 _iconv=no
3474 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3475 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3476 _iconv=yes && break
3477 done
3479 if test "$_iconv" = yes ; then
3480 def_iconv='#define CONFIG_ICONV 1'
3481 else
3482 def_iconv='#undef CONFIG_ICONV'
3484 echores "$_iconv"
3487 echocheck "soundcard.h"
3488 _soundcard_h=no
3489 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3490 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3491 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3492 cat > $TMPC << EOF
3493 #include <$_soundcard_header>
3494 int main(void) { return 0; }
3496 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3497 done
3499 if test "$_soundcard_h" = yes ; then
3500 if test $_soundcard_header = "sys/soundcard.h"; then
3501 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3502 else
3503 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3506 echores "$_soundcard_h"
3509 echocheck "sys/dvdio.h"
3510 cat > $TMPC << EOF
3511 #include <unistd.h>
3512 #include <sys/dvdio.h>
3513 int main(void) { return 0; }
3515 _dvdio=no
3516 cc_check && _dvdio=yes
3517 if test "$_dvdio" = yes ; then
3518 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3519 else
3520 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3522 echores "$_dvdio"
3525 echocheck "sys/cdio.h"
3526 cat > $TMPC << EOF
3527 #include <unistd.h>
3528 #include <sys/cdio.h>
3529 int main(void) { return 0; }
3531 _cdio=no
3532 cc_check && _cdio=yes
3533 if test "$_cdio" = yes ; then
3534 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3535 else
3536 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3538 echores "$_cdio"
3541 echocheck "linux/cdrom.h"
3542 cat > $TMPC << EOF
3543 #include <sys/types.h>
3544 #include <linux/cdrom.h>
3545 int main(void) { return 0; }
3547 _cdrom=no
3548 cc_check && _cdrom=yes
3549 if test "$_cdrom" = yes ; then
3550 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3551 else
3552 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3554 echores "$_cdrom"
3557 echocheck "dvd.h"
3558 cat > $TMPC << EOF
3559 #include <dvd.h>
3560 int main(void) { return 0; }
3562 _dvd=no
3563 cc_check && _dvd=yes
3564 if test "$_dvd" = yes ; then
3565 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3566 else
3567 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3569 echores "$_dvd"
3572 if bsdos; then
3573 echocheck "BSDI dvd.h"
3574 cat > $TMPC << EOF
3575 #include <dvd.h>
3576 int main(void) { return 0; }
3578 _bsdi_dvd=no
3579 cc_check && _bsdi_dvd=yes
3580 if test "$_bsdi_dvd" = yes ; then
3581 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3582 else
3583 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3585 echores "$_bsdi_dvd"
3586 fi #if bsdos
3589 if hpux; then
3590 # also used by AIX, but AIX does not support VCD and/or libdvdread
3591 echocheck "HP-UX SCSI header"
3592 cat > $TMPC << EOF
3593 #include <sys/scsi.h>
3594 int main(void) { return 0; }
3596 _hpux_scsi_h=no
3597 cc_check && _hpux_scsi_h=yes
3598 if test "$_hpux_scsi_h" = yes ; then
3599 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3600 else
3601 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3603 echores "$_hpux_scsi_h"
3604 fi #if hpux
3607 if sunos; then
3608 echocheck "userspace SCSI headers (Solaris)"
3609 cat > $TMPC << EOF
3610 #include <unistd.h>
3611 #include <stropts.h>
3612 #include <sys/scsi/scsi_types.h>
3613 #include <sys/scsi/impl/uscsi.h>
3614 int main(void) { return 0; }
3616 _sol_scsi_h=no
3617 cc_check && _sol_scsi_h=yes
3618 if test "$_sol_scsi_h" = yes ; then
3619 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3620 else
3621 def_sol_scsi_h='#undef SOLARIS_USCSI'
3623 echores "$_sol_scsi_h"
3624 fi #if sunos
3627 echocheck "termcap"
3628 if test "$_termcap" = auto ; then
3629 cat > $TMPC <<EOF
3630 #include <stddef.h>
3631 #include <term.h>
3632 int main(void) { tgetent(NULL, NULL); return 0; }
3634 _termcap=no
3635 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3636 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3637 && _termcap=yes && break
3638 done
3640 if test "$_termcap" = yes ; then
3641 def_termcap='#define HAVE_TERMCAP 1'
3642 test $_ld_tmp && _res_comment="using $_ld_tmp"
3643 else
3644 def_termcap='#undef HAVE_TERMCAP'
3646 echores "$_termcap"
3649 echocheck "termios"
3650 def_termios='#undef HAVE_TERMIOS'
3651 def_termios_h='#undef HAVE_TERMIOS_H'
3652 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3653 if test "$_termios" = auto ; then
3654 _termios=no
3655 for _termios_header in "sys/termios.h" "termios.h"; do
3656 cat > $TMPC <<EOF
3657 #include <$_termios_header>
3658 int main(void) { return 0; }
3660 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3661 done
3664 if test "$_termios" = yes ; then
3665 def_termios='#define HAVE_TERMIOS 1'
3666 if test "$_termios_header" = "termios.h" ; then
3667 def_termios_h='#define HAVE_TERMIOS_H 1'
3668 else
3669 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3672 echores "$_termios"
3675 echocheck "shm"
3676 if test "$_shm" = auto ; then
3677 cat > $TMPC << EOF
3678 #include <sys/types.h>
3679 #include <sys/shm.h>
3680 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3682 _shm=no
3683 cc_check && _shm=yes
3685 if test "$_shm" = yes ; then
3686 def_shm='#define HAVE_SHM 1'
3687 else
3688 def_shm='#undef HAVE_SHM'
3690 echores "$_shm"
3693 echocheck "strsep()"
3694 cat > $TMPC << EOF
3695 #include <string.h>
3696 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3698 _strsep=no
3699 cc_check && _strsep=yes
3700 if test "$_strsep" = yes ; then
3701 def_strsep='#define HAVE_STRSEP 1'
3702 _need_strsep=no
3703 else
3704 def_strsep='#undef HAVE_STRSEP'
3705 _need_strsep=yes
3707 echores "$_strsep"
3710 echocheck "vsscanf()"
3711 cat > $TMPC << EOF
3712 #define _ISOC99_SOURCE
3713 #include <stdarg.h>
3714 #include <stdio.h>
3715 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3717 _vsscanf=no
3718 cc_check && _vsscanf=yes
3719 if test "$_vsscanf" = yes ; then
3720 def_vsscanf='#define HAVE_VSSCANF 1'
3721 _need_vsscanf=no
3722 else
3723 def_vsscanf='#undef HAVE_VSSCANF'
3724 _need_vsscanf=yes
3726 echores "$_vsscanf"
3729 echocheck "swab()"
3730 cat > $TMPC << EOF
3731 #define _XOPEN_SOURCE 600
3732 #include <unistd.h>
3733 int main(void) { swab(0, 0, 0); return 0; }
3735 _swab=no
3736 cc_check && _swab=yes
3737 if test "$_swab" = yes ; then
3738 def_swab='#define HAVE_SWAB 1'
3739 _need_swab=no
3740 else
3741 def_swab='#undef HAVE_SWAB'
3742 _need_swab=yes
3744 echores "$_swab"
3746 echocheck "POSIX select()"
3747 cat > $TMPC << EOF
3748 #include <stdio.h>
3749 #include <stdlib.h>
3750 #include <sys/types.h>
3751 #include <string.h>
3752 #include <sys/time.h>
3753 #include <unistd.h>
3754 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3756 _posix_select=no
3757 def_posix_select='#undef HAVE_POSIX_SELECT'
3758 #select() of kLIBC (OS/2) supports socket only
3759 ! os2 && cc_check && _posix_select=yes \
3760 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3761 echores "$_posix_select"
3764 echocheck "audio select()"
3765 if test "$_select" = no ; then
3766 def_select='#undef HAVE_AUDIO_SELECT'
3767 elif test "$_select" = yes ; then
3768 def_select='#define HAVE_AUDIO_SELECT 1'
3770 echores "$_select"
3773 echocheck "gettimeofday()"
3774 cat > $TMPC << EOF
3775 #include <stdio.h>
3776 #include <sys/time.h>
3777 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3779 _gettimeofday=no
3780 cc_check && _gettimeofday=yes
3781 if test "$_gettimeofday" = yes ; then
3782 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3783 _need_gettimeofday=no
3784 else
3785 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3786 _need_gettimeofday=yes
3788 echores "$_gettimeofday"
3791 echocheck "glob()"
3792 cat > $TMPC << EOF
3793 #include <stdio.h>
3794 #include <glob.h>
3795 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3797 _glob=no
3798 cc_check && _glob=yes
3799 if test "$_glob" = yes ; then
3800 def_glob='#define HAVE_GLOB 1'
3801 _need_glob=no
3802 else
3803 def_glob='#undef HAVE_GLOB'
3804 _need_glob=yes
3806 echores "$_glob"
3809 echocheck "setenv()"
3810 cat > $TMPC << EOF
3811 #include <stdlib.h>
3812 int main(void) { setenv("","",0); return 0; }
3814 _setenv=no
3815 cc_check && _setenv=yes
3816 if test "$_setenv" = yes ; then
3817 def_setenv='#define HAVE_SETENV 1'
3818 _need_setenv=no
3819 else
3820 def_setenv='#undef HAVE_SETENV'
3821 _need_setenv=yes
3823 echores "$_setenv"
3826 echocheck "setmode()"
3827 _setmode=no
3828 def_setmode='#define HAVE_SETMODE 0'
3829 cat > $TMPC << EOF
3830 #include <io.h>
3831 int main(void) { setmode(0, 0); return 0; }
3833 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3834 echores "$_setmode"
3837 if sunos; then
3838 echocheck "sysi86()"
3839 cat > $TMPC << EOF
3840 #include <sys/sysi86.h>
3841 int main(void) { sysi86(0); return 0; }
3843 _sysi86=no
3844 cc_check && _sysi86=yes
3845 if test "$_sysi86" = yes ; then
3846 def_sysi86='#define HAVE_SYSI86 1'
3847 cat > $TMPC << EOF
3848 #include <sys/sysi86.h>
3849 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3851 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3852 else
3853 def_sysi86='#undef HAVE_SYSI86'
3855 echores "$_sysi86"
3856 fi #if sunos
3859 echocheck "sys/sysinfo.h"
3860 cat > $TMPC << EOF
3861 #include <sys/sysinfo.h>
3862 int main(void) {
3863 struct sysinfo s_info;
3864 sysinfo(&s_info);
3865 return 0;
3868 _sys_sysinfo=no
3869 cc_check && _sys_sysinfo=yes
3870 if test "$_sys_sysinfo" = yes ; then
3871 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3872 else
3873 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3875 echores "$_sys_sysinfo"
3878 if darwin; then
3880 echocheck "Mac OS X Finder Support"
3881 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3882 if test "$_macosx_finder" = yes ; then
3883 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3884 extra_ldflags="$extra_ldflags -framework Carbon"
3886 echores "$_macosx_finder"
3888 echocheck "Mac OS X Bundle file locations"
3889 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3890 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3891 if test "$_macosx_bundle" = yes ; then
3892 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3893 extra_ldflags="$extra_ldflags -framework Carbon"
3895 echores "$_macosx_bundle"
3897 echocheck "Apple Remote"
3898 if test "$_apple_remote" = auto ; then
3899 _apple_remote=no
3900 cat > $TMPC <<EOF
3901 #include <stdio.h>
3902 #include <IOKit/IOCFPlugIn.h>
3903 int main(void) {
3904 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3905 CFMutableDictionaryRef hidMatchDictionary;
3906 IOReturn ioReturnValue;
3908 // Set up a matching dictionary to search the I/O Registry by class.
3909 // name for all HID class devices
3910 hidMatchDictionary = IOServiceMatching("AppleIRController");
3912 // Now search I/O Registry for matching devices.
3913 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3914 hidMatchDictionary, &hidObjectIterator);
3916 // If search is unsuccessful, return nonzero.
3917 if (ioReturnValue != kIOReturnSuccess ||
3918 !IOIteratorIsValid(hidObjectIterator)) {
3919 return 1;
3921 return 0;
3924 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3926 if test "$_apple_remote" = yes ; then
3927 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3928 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3929 else
3930 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3932 echores "$_apple_remote"
3934 fi #if darwin
3936 if linux; then
3938 echocheck "Apple IR"
3939 if test "$_apple_ir" = auto ; then
3940 _apple_ir=no
3941 cat > $TMPC <<EOF
3942 #include <linux/types.h>
3943 #include <linux/input.h>
3944 int main(void) {
3945 struct input_event ev;
3946 struct input_id id;
3947 return 0;
3950 cc_check && _apple_ir=yes
3952 if test "$_apple_ir" = yes ; then
3953 def_apple_ir='#define CONFIG_APPLE_IR 1'
3954 else
3955 def_apple_ir='#undef CONFIG_APPLE_IR'
3957 echores "$_apple_ir"
3958 fi #if linux
3960 echocheck "$_target-pkg-config"
3961 _pkg_config=$_target-pkg-config
3962 if $($_pkg_config --version > /dev/null 2>&1); then
3963 if test "$_ld_static"; then
3964 _pkg_config="$_pkg_config --static"
3966 echores "yes"
3967 else
3968 _pkg_config=pkg-config
3969 echores "no"
3971 echocheck "pkg-config"
3972 if $($_pkg_config --version > /dev/null 2>&1); then
3973 if test "$_ld_static"; then
3974 _pkg_config="$_pkg_config --static"
3976 echores "yes"
3977 else
3978 _pkg_config=false
3979 echores "no"
3984 echocheck "Samba support (libsmbclient)"
3985 if test "$_smb" = yes; then
3986 extra_ldflags="$extra_ldflags -lsmbclient"
3988 if test "$_smb" = auto; then
3989 _smb=no
3990 cat > $TMPC << EOF
3991 #include <libsmbclient.h>
3992 int main(void) { smbc_opendir("smb://"); return 0; }
3994 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3995 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3996 _smb=yes && break
3997 done
4000 if test "$_smb" = yes; then
4001 def_smb="#define CONFIG_LIBSMBCLIENT 1"
4002 _inputmodules="smb $_inputmodules"
4003 else
4004 def_smb="#undef CONFIG_LIBSMBCLIENT"
4005 _noinputmodules="smb $_noinputmodules"
4007 echores "$_smb"
4010 #########
4011 # VIDEO #
4012 #########
4015 echocheck "tdfxfb"
4016 if test "$_tdfxfb" = yes ; then
4017 def_tdfxfb='#define CONFIG_TDFXFB 1'
4018 _vomodules="tdfxfb $_vomodules"
4019 else
4020 def_tdfxfb='#undef CONFIG_TDFXFB'
4021 _novomodules="tdfxfb $_novomodules"
4023 echores "$_tdfxfb"
4025 echocheck "s3fb"
4026 if test "$_s3fb" = yes ; then
4027 def_s3fb='#define CONFIG_S3FB 1'
4028 _vomodules="s3fb $_vomodules"
4029 else
4030 def_s3fb='#undef CONFIG_S3FB'
4031 _novomodules="s3fb $_novomodules"
4033 echores "$_s3fb"
4035 echocheck "wii"
4036 if test "$_wii" = yes ; then
4037 def_wii='#define CONFIG_WII 1'
4038 _vomodules="wii $_vomodules"
4039 else
4040 def_wii='#undef CONFIG_WII'
4041 _novomodules="wii $_novomodules"
4043 echores "$_wii"
4045 echocheck "tdfxvid"
4046 if test "$_tdfxvid" = yes ; then
4047 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4048 _vomodules="tdfx_vid $_vomodules"
4049 else
4050 def_tdfxvid='#undef CONFIG_TDFX_VID'
4051 _novomodules="tdfx_vid $_novomodules"
4053 echores "$_tdfxvid"
4055 echocheck "xvr100"
4056 if test "$_xvr100" = auto ; then
4057 cat > $TMPC << EOF
4058 #include <unistd.h>
4059 #include <sys/fbio.h>
4060 #include <sys/visual_io.h>
4061 int main(void) {
4062 struct vis_identifier ident;
4063 struct fbgattr attr;
4064 ioctl(0, VIS_GETIDENTIFIER, &ident);
4065 ioctl(0, FBIOGATTR, &attr);
4066 return 0;
4069 _xvr100=no
4070 cc_check && _xvr100=yes
4072 if test "$_xvr100" = yes ; then
4073 def_xvr100='#define CONFIG_XVR100 1'
4074 _vomodules="xvr100 $_vomodules"
4075 else
4076 def_tdfxvid='#undef CONFIG_XVR100'
4077 _novomodules="xvr100 $_novomodules"
4079 echores "$_xvr100"
4081 echocheck "tga"
4082 if test "$_tga" = yes ; then
4083 def_tga='#define CONFIG_TGA 1'
4084 _vomodules="tga $_vomodules"
4085 else
4086 def_tga='#undef CONFIG_TGA'
4087 _novomodules="tga $_novomodules"
4089 echores "$_tga"
4092 echocheck "md5sum support"
4093 if test "$_md5sum" = yes; then
4094 def_md5sum="#define CONFIG_MD5SUM 1"
4095 _vomodules="md5sum $_vomodules"
4096 else
4097 def_md5sum="#undef CONFIG_MD5SUM"
4098 _novomodules="md5sum $_novomodules"
4100 echores "$_md5sum"
4103 echocheck "yuv4mpeg support"
4104 if test "$_yuv4mpeg" = yes; then
4105 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4106 _vomodules="yuv4mpeg $_vomodules"
4107 else
4108 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4109 _novomodules="yuv4mpeg $_novomodules"
4111 echores "$_yuv4mpeg"
4114 echocheck "bl"
4115 if test "$_bl" = yes ; then
4116 def_bl='#define CONFIG_BL 1'
4117 _vomodules="bl $_vomodules"
4118 else
4119 def_bl='#undef CONFIG_BL'
4120 _novomodules="bl $_novomodules"
4122 echores "$_bl"
4125 echocheck "DirectFB"
4126 if test "$_directfb" = auto ; then
4127 _directfb=no
4128 cat > $TMPC <<EOF
4129 #include <directfb.h>
4130 int main(void) { DirectFBInit(0, 0); return 0; }
4132 for _inc_tmp in "" -I/usr/local/include/directfb \
4133 -I/usr/include/directfb -I/usr/local/include; do
4134 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4135 extra_cflags="$extra_cflags $_inc_tmp" && break
4136 done
4139 dfb_version() {
4140 expr $1 \* 65536 + $2 \* 256 + $3
4143 if test "$_directfb" = yes; then
4144 cat > $TMPC << EOF
4145 #include <directfb_version.h>
4147 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4150 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4151 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4152 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4153 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4154 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4155 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4156 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4157 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4158 _res_comment="$_directfb_version"
4159 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4160 else
4161 def_directfb_version='#undef DIRECTFBVERSION'
4162 _directfb=no
4163 _res_comment="version >=0.9.13 required"
4165 else
4166 _directfb=no
4167 _res_comment="failed to get version"
4170 echores "$_directfb"
4172 if test "$_directfb" = yes ; then
4173 def_directfb='#define CONFIG_DIRECTFB 1'
4174 _vomodules="directfb $_vomodules"
4175 libs_mplayer="$libs_mplayer -ldirectfb"
4176 else
4177 def_directfb='#undef CONFIG_DIRECTFB'
4178 _novomodules="directfb $_novomodules"
4180 if test "$_dfbmga" = yes; then
4181 _vomodules="dfbmga $_vomodules"
4182 def_dfbmga='#define CONFIG_DFBMGA 1'
4183 else
4184 _novomodules="dfbmga $_novomodules"
4185 def_dfbmga='#undef CONFIG_DFBMGA'
4189 echocheck "X11 headers presence"
4190 _x11_headers="no"
4191 _res_comment="check if the dev(el) packages are installed"
4192 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4193 if test -f "$I/X11/Xlib.h" ; then
4194 _x11_headers="yes"
4195 _res_comment=""
4196 break
4198 done
4199 if test $_cross_compile = no; then
4200 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4201 /usr/include/X11R6 /usr/openwin/include ; do
4202 if test -f "$I/X11/Xlib.h" ; then
4203 extra_cflags="$extra_cflags -I$I"
4204 _x11_headers="yes"
4205 _res_comment="using $I"
4206 break
4208 done
4210 echores "$_x11_headers"
4213 echocheck "X11"
4214 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4215 cat > $TMPC <<EOF
4216 #include <X11/Xlib.h>
4217 #include <X11/Xutil.h>
4218 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4220 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4221 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4222 -L/usr/lib ; do
4223 if netbsd; then
4224 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4225 else
4226 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4228 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4229 && _x11=yes && break
4230 done
4232 if test "$_x11" = yes ; then
4233 def_x11='#define CONFIG_X11 1'
4234 _vomodules="x11 xover $_vomodules"
4235 else
4236 _x11=no
4237 def_x11='#undef CONFIG_X11'
4238 _novomodules="x11 $_novomodules"
4239 _res_comment="check if the dev(el) packages are installed"
4240 # disable stuff that depends on X
4241 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4243 echores "$_x11"
4245 echocheck "Xss screensaver extensions"
4246 if test "$_xss" = auto ; then
4247 cat > $TMPC << EOF
4248 #include <X11/Xlib.h>
4249 #include <X11/extensions/scrnsaver.h>
4250 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4252 _xss=no
4253 cc_check -lXss && _xss=yes
4255 if test "$_xss" = yes ; then
4256 def_xss='#define CONFIG_XSS 1'
4257 libs_mplayer="$libs_mplayer -lXss"
4258 else
4259 def_xss='#undef CONFIG_XSS'
4261 echores "$_xss"
4263 echocheck "DPMS"
4264 _xdpms3=no
4265 _xdpms4=no
4266 if test "$_x11" = yes ; then
4267 cat > $TMPC <<EOF
4268 #include <X11/Xmd.h>
4269 #include <X11/Xlib.h>
4270 #include <X11/Xutil.h>
4271 #include <X11/Xatom.h>
4272 #include <X11/extensions/dpms.h>
4273 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4275 cc_check -lXdpms && _xdpms3=yes
4276 cat > $TMPC <<EOF
4277 #include <X11/Xlib.h>
4278 #include <X11/extensions/dpms.h>
4279 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4281 cc_check -lXext && _xdpms4=yes
4283 if test "$_xdpms4" = yes ; then
4284 def_xdpms='#define CONFIG_XDPMS 1'
4285 _res_comment="using Xdpms 4"
4286 echores "yes"
4287 elif test "$_xdpms3" = yes ; then
4288 def_xdpms='#define CONFIG_XDPMS 1'
4289 libs_mplayer="$libs_mplayer -lXdpms"
4290 _res_comment="using Xdpms 3"
4291 echores "yes"
4292 else
4293 def_xdpms='#undef CONFIG_XDPMS'
4294 echores "no"
4298 echocheck "Xv"
4299 if test "$_xv" = auto ; then
4300 cat > $TMPC <<EOF
4301 #include <X11/Xlib.h>
4302 #include <X11/extensions/Xvlib.h>
4303 int main(void) {
4304 (void) XvGetPortAttribute(0, 0, 0, 0);
4305 (void) XvQueryPortAttributes(0, 0, 0);
4306 return 0; }
4308 _xv=no
4309 cc_check -lXv && _xv=yes
4312 if test "$_xv" = yes ; then
4313 def_xv='#define CONFIG_XV 1'
4314 libs_mplayer="$libs_mplayer -lXv"
4315 _vomodules="xv $_vomodules"
4316 else
4317 def_xv='#undef CONFIG_XV'
4318 _novomodules="xv $_novomodules"
4320 echores "$_xv"
4323 echocheck "XvMC"
4324 if test "$_xv" = yes && test "$_xvmc" != no ; then
4325 _xvmc=no
4326 cat > $TMPC <<EOF
4327 #include <X11/Xlib.h>
4328 #include <X11/extensions/Xvlib.h>
4329 #include <X11/extensions/XvMClib.h>
4330 int main(void) {
4331 (void) XvMCQueryExtension(0,0,0);
4332 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4333 return 0; }
4335 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4336 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4337 done
4339 if test "$_xvmc" = yes ; then
4340 def_xvmc='#define CONFIG_XVMC 1'
4341 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4342 _vomodules="xvmc $_vomodules"
4343 _res_comment="using $_xvmclib"
4344 else
4345 def_xvmc='#define CONFIG_XVMC 0'
4346 _novomodules="xvmc $_novomodules"
4348 echores "$_xvmc"
4351 echocheck "VDPAU"
4352 if test "$_vdpau" = auto ; then
4353 _vdpau=no
4354 if test "$_dl" = yes ; then
4355 cat > $TMPC <<EOF
4356 #include <vdpau/vdpau_x11.h>
4357 int main(void) {
4358 (void) vdp_device_create_x11(0, 0, 0, 0);
4359 return VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE;}
4361 cc_check -lvdpau && _vdpau=yes
4364 if test "$_vdpau" = yes ; then
4365 def_vdpau='#define CONFIG_VDPAU 1'
4366 libs_mplayer="$libs_mplayer -lvdpau"
4367 _vomodules="vdpau $_vomodules"
4368 else
4369 def_vdpau='#define CONFIG_VDPAU 0'
4370 _novomodules="vdpau $_novomodules"
4372 echores "$_vdpau"
4375 echocheck "Xinerama"
4376 if test "$_xinerama" = auto ; then
4377 cat > $TMPC <<EOF
4378 #include <X11/Xlib.h>
4379 #include <X11/extensions/Xinerama.h>
4380 int main(void) { (void) XineramaIsActive(0); return 0; }
4382 _xinerama=no
4383 cc_check -lXinerama && _xinerama=yes
4386 if test "$_xinerama" = yes ; then
4387 def_xinerama='#define CONFIG_XINERAMA 1'
4388 libs_mplayer="$libs_mplayer -lXinerama"
4389 else
4390 def_xinerama='#undef CONFIG_XINERAMA'
4392 echores "$_xinerama"
4395 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4396 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4397 # named 'X extensions' or something similar.
4398 # This check may be useful for future mplayer versions (to change resolution)
4399 # If you run into problems, remove '-lXxf86vm'.
4400 echocheck "Xxf86vm"
4401 if test "$_vm" = auto ; then
4402 cat > $TMPC <<EOF
4403 #include <X11/Xlib.h>
4404 #include <X11/extensions/xf86vmode.h>
4405 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4407 _vm=no
4408 cc_check -lXxf86vm && _vm=yes
4410 if test "$_vm" = yes ; then
4411 def_vm='#define CONFIG_XF86VM 1'
4412 libs_mplayer="$libs_mplayer -lXxf86vm"
4413 else
4414 def_vm='#undef CONFIG_XF86VM'
4416 echores "$_vm"
4418 # Check for the presence of special keycodes, like audio control buttons
4419 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4420 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4421 # have these new keycodes.
4422 echocheck "XF86keysym"
4423 if test "$_xf86keysym" = auto; then
4424 _xf86keysym=no
4425 cat > $TMPC <<EOF
4426 #include <X11/Xlib.h>
4427 #include <X11/XF86keysym.h>
4428 int main(void) { return XF86XK_AudioPause; }
4430 cc_check && _xf86keysym=yes
4432 if test "$_xf86keysym" = yes ; then
4433 def_xf86keysym='#define CONFIG_XF86XK 1'
4434 else
4435 def_xf86keysym='#undef CONFIG_XF86XK'
4437 echores "$_xf86keysym"
4439 echocheck "DGA"
4440 if test "$_dga2" = auto && test "$_x11" = yes ; then
4441 cat > $TMPC << EOF
4442 #include <X11/Xlib.h>
4443 #include <X11/extensions/xf86dga.h>
4444 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4446 _dga2=no
4447 cc_check -lXxf86dga && _dga2=yes
4449 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4450 cat > $TMPC << EOF
4451 #include <X11/Xlib.h>
4452 #include <X11/extensions/xf86dga.h>
4453 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4455 _dga1=no
4456 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4459 _dga=no
4460 def_dga='#undef CONFIG_DGA'
4461 def_dga1='#undef CONFIG_DGA1'
4462 def_dga2='#undef CONFIG_DGA2'
4463 if test "$_dga1" = yes ; then
4464 _dga=yes
4465 def_dga1='#define CONFIG_DGA1 1'
4466 _res_comment="using DGA 1.0"
4467 elif test "$_dga2" = yes ; then
4468 _dga=yes
4469 def_dga2='#define CONFIG_DGA2 1'
4470 _res_comment="using DGA 2.0"
4472 if test "$_dga" = yes ; then
4473 def_dga='#define CONFIG_DGA 1'
4474 libs_mplayer="$libs_mplayer -lXxf86dga"
4475 _vomodules="dga $_vomodules"
4476 else
4477 _novomodules="dga $_novomodules"
4479 echores "$_dga"
4482 echocheck "3dfx"
4483 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4484 def_3dfx='#define CONFIG_3DFX 1'
4485 _vomodules="3dfx $_vomodules"
4486 else
4487 def_3dfx='#undef CONFIG_3DFX'
4488 _novomodules="3dfx $_novomodules"
4490 echores "$_3dfx"
4492 echocheck "VIDIX"
4493 def_vidix='#undef CONFIG_VIDIX'
4494 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4495 _vidix_drv_cyberblade=no
4496 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4497 _vidix_drv_ivtv=no
4498 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4499 _vidix_drv_mach64=no
4500 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4501 _vidix_drv_mga=no
4502 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4503 _vidix_drv_mga_crtc2=no
4504 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4505 _vidix_drv_nvidia=no
4506 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4507 _vidix_drv_pm2=no
4508 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4509 _vidix_drv_pm3=no
4510 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4511 _vidix_drv_radeon=no
4512 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4513 _vidix_drv_rage128=no
4514 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4515 _vidix_drv_s3=no
4516 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4517 _vidix_drv_sh_veu=no
4518 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4519 _vidix_drv_sis=no
4520 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4521 _vidix_drv_unichrome=no
4522 if test "$_vidix" = auto ; then
4523 _vidix=no
4524 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4525 && _vidix=yes
4526 x86_64 && win32 && _vidix=no
4527 (ppc || alpha) && linux && _vidix=yes
4529 echores "$_vidix"
4531 if test "$_vidix" = yes ; then
4532 def_vidix='#define CONFIG_VIDIX 1'
4533 _vomodules="cvidix $_vomodules"
4534 # FIXME: ivtv driver temporarily disabled until we have a proper test
4535 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4536 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4538 # some vidix drivers are architecture and os specific, discard them elsewhere
4539 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4540 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4542 for driver in $_vidix_drivers ; do
4543 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4544 eval _vidix_drv_${driver}=yes
4545 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4546 done
4548 echocheck "VIDIX PCI device name database"
4549 echores "$_vidix_pcidb"
4550 if test "$_vidix_pcidb" = yes ; then
4551 _vidix_pcidb_val=1
4552 else
4553 _vidix_pcidb_val=0
4556 echocheck "VIDIX dhahelper support"
4557 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4558 echores "$_dhahelper"
4560 echocheck "VIDIX svgalib_helper support"
4561 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4562 echores "$_svgalib_helper"
4564 else
4565 _novomodules="cvidix $_novomodules"
4568 if test "$_vidix" = yes && win32; then
4569 winvidix=yes
4570 _vomodules="winvidix $_vomodules"
4571 libs_mplayer="$libs_mplayer -lgdi32"
4572 else
4573 _novomodules="winvidix $_novomodules"
4575 if test "$_vidix" = yes && test "$_x11" = yes; then
4576 xvidix=yes
4577 _vomodules="xvidix $_vomodules"
4578 else
4579 _novomodules="xvidix $_novomodules"
4582 echocheck "GGI"
4583 if test "$_ggi" = auto ; then
4584 cat > $TMPC << EOF
4585 #include <ggi/ggi.h>
4586 int main(void) { ggiInit(); return 0; }
4588 _ggi=no
4589 cc_check -lggi && _ggi=yes
4591 if test "$_ggi" = yes ; then
4592 def_ggi='#define CONFIG_GGI 1'
4593 libs_mplayer="$libs_mplayer -lggi"
4594 _vomodules="ggi $_vomodules"
4595 else
4596 def_ggi='#undef CONFIG_GGI'
4597 _novomodules="ggi $_novomodules"
4599 echores "$_ggi"
4601 echocheck "GGI extension: libggiwmh"
4602 if test "$_ggiwmh" = auto ; then
4603 _ggiwmh=no
4604 cat > $TMPC << EOF
4605 #include <ggi/ggi.h>
4606 #include <ggi/wmh.h>
4607 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4609 cc_check -lggi -lggiwmh && _ggiwmh=yes
4611 # needed to get right output on obscure combination
4612 # like --disable-ggi --enable-ggiwmh
4613 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4614 def_ggiwmh='#define CONFIG_GGIWMH 1'
4615 libs_mplayer="$libs_mplayer -lggiwmh"
4616 else
4617 _ggiwmh=no
4618 def_ggiwmh='#undef CONFIG_GGIWMH'
4620 echores "$_ggiwmh"
4623 echocheck "AA"
4624 if test "$_aa" = auto ; then
4625 cat > $TMPC << EOF
4626 #include <aalib.h>
4627 extern struct aa_hardware_params aa_defparams;
4628 extern struct aa_renderparams aa_defrenderparams;
4629 int main(void) {
4630 aa_context *c;
4631 aa_renderparams *p;
4632 (void) aa_init(0, 0, 0);
4633 c = aa_autoinit(&aa_defparams);
4634 p = aa_getrenderparams();
4635 aa_autoinitkbd(c,0);
4636 return 0; }
4638 _aa=no
4639 for _ld_tmp in "-laa" ; do
4640 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4641 done
4643 if test "$_aa" = yes ; then
4644 def_aa='#define CONFIG_AA 1'
4645 if cygwin ; then
4646 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4648 _vomodules="aa $_vomodules"
4649 else
4650 def_aa='#undef CONFIG_AA'
4651 _novomodules="aa $_novomodules"
4653 echores "$_aa"
4656 echocheck "CACA"
4657 if test "$_caca" = auto ; then
4658 _caca=no
4659 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4660 cat > $TMPC << EOF
4661 #include <caca.h>
4662 #ifdef CACA_API_VERSION_1
4663 #include <caca0.h>
4664 #endif
4665 int main(void) { (void) caca_init(); return 0; }
4667 cc_check $(caca-config --libs) && _caca=yes
4670 if test "$_caca" = yes ; then
4671 def_caca='#define CONFIG_CACA 1'
4672 extra_cflags="$extra_cflags $(caca-config --cflags)"
4673 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4674 _vomodules="caca $_vomodules"
4675 else
4676 def_caca='#undef CONFIG_CACA'
4677 _novomodules="caca $_novomodules"
4679 echores "$_caca"
4682 echocheck "SVGAlib"
4683 if test "$_svga" = auto ; then
4684 cat > $TMPC << EOF
4685 #include <vga.h>
4686 int main(void) { return 0; }
4688 _svga=no
4689 cc_check -lvga $_ld_lm && _svga=yes
4691 if test "$_svga" = yes ; then
4692 def_svga='#define CONFIG_SVGALIB 1'
4693 libs_mplayer="$libs_mplayer -lvga"
4694 _vomodules="svga $_vomodules"
4695 else
4696 def_svga='#undef CONFIG_SVGALIB'
4697 _novomodules="svga $_novomodules"
4699 echores "$_svga"
4702 echocheck "FBDev"
4703 if test "$_fbdev" = auto ; then
4704 _fbdev=no
4705 linux && _fbdev=yes
4707 if test "$_fbdev" = yes ; then
4708 def_fbdev='#define CONFIG_FBDEV 1'
4709 _vomodules="fbdev $_vomodules"
4710 else
4711 def_fbdev='#undef CONFIG_FBDEV'
4712 _novomodules="fbdev $_novomodules"
4714 echores "$_fbdev"
4718 echocheck "DVB"
4719 if test "$_dvb" = auto ; then
4720 _dvb=no
4721 cat >$TMPC << EOF
4722 #include <poll.h>
4723 #include <sys/ioctl.h>
4724 #include <stdio.h>
4725 #include <time.h>
4726 #include <unistd.h>
4727 #include <linux/dvb/dmx.h>
4728 #include <linux/dvb/frontend.h>
4729 #include <linux/dvb/video.h>
4730 #include <linux/dvb/audio.h>
4731 int main(void) {return 0;}
4733 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4734 cc_check $_inc_tmp && _dvb=yes && \
4735 extra_cflags="$extra_cflags $_inc_tmp" && break
4736 done
4738 echores "$_dvb"
4739 if test "$_dvb" = yes ; then
4740 _dvbin=yes
4741 _inputmodules="dvb $_inputmodules"
4742 def_dvb='#define CONFIG_DVB 1'
4743 def_dvbin='#define CONFIG_DVBIN 1'
4744 _aomodules="mpegpes(dvb) $_aomodules"
4745 _vomodules="mpegpes(dvb) $_vomodules"
4746 else
4747 _dvbin=no
4748 _noinputmodules="dvb $_noinputmodules"
4749 def_dvb='#undef CONFIG_DVB'
4750 def_dvbin='#undef CONFIG_DVBIN '
4751 _aomodules="mpegpes(file) $_aomodules"
4752 _vomodules="mpegpes(file) $_vomodules"
4756 if darwin; then
4758 echocheck "QuickTime"
4759 if test "$quicktime" = auto ; then
4760 cat > $TMPC <<EOF
4761 #include <QuickTime/QuickTime.h>
4762 int main(void) {
4763 ImageDescription *desc;
4764 EnterMovies();
4765 ExitMovies();
4766 return 0;
4769 quicktime=no
4770 cc_check -framework QuickTime && quicktime=yes
4772 if test "$quicktime" = yes ; then
4773 extra_ldflags="$extra_ldflags -framework QuickTime"
4774 def_quicktime='#define CONFIG_QUICKTIME 1'
4775 else
4776 def_quicktime='#undef CONFIG_QUICKTIME'
4777 _quartz=no
4779 echores $quicktime
4781 echocheck "Quartz"
4782 if test "$_quartz" = auto ; then
4783 cat > $TMPC <<EOF
4784 #include <Carbon/Carbon.h>
4785 int main(void) {
4786 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4787 return 0;
4790 _quartz=no
4791 cc_check -framework Carbon && _quartz=yes
4793 if test "$_quartz" = yes ; then
4794 libs_mplayer="$libs_mplayer -framework Carbon"
4795 def_quartz='#define CONFIG_QUARTZ 1'
4796 _vomodules="quartz $_vomodules"
4797 else
4798 def_quartz='#undef CONFIG_QUARTZ'
4799 _novomodules="quartz $_novomodules"
4801 echores $_quartz
4803 echocheck "CoreVideo"
4804 if test "$_corevideo" = auto ; then
4805 cat > $TMPC <<EOF
4806 #include <Carbon/Carbon.h>
4807 #include <CoreServices/CoreServices.h>
4808 #include <OpenGL/OpenGL.h>
4809 #include <QuartzCore/CoreVideo.h>
4810 int main(void) { return 0; }
4812 _corevideo=no
4813 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4815 if test "$_corevideo" = yes ; then
4816 _vomodules="corevideo $_vomodules"
4817 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4818 def_corevideo='#define CONFIG_COREVIDEO 1'
4819 else
4820 _novomodules="corevideo $_novomodules"
4821 def_corevideo='#undef CONFIG_COREVIDEO'
4823 echores "$_corevideo"
4825 fi #if darwin
4828 # make sure this stays below CoreVideo to avoid issues due to namespace
4829 # conflicts between -lGL and -framework OpenGL
4830 echocheck "OpenGL"
4831 #Note: this test is run even with --enable-gl since we autodetect linker flags
4832 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4833 cat > $TMPC << EOF
4834 #ifdef GL_WIN32
4835 #include <windows.h>
4836 #include <GL/gl.h>
4837 #else
4838 #include <GL/gl.h>
4839 #include <X11/Xlib.h>
4840 #include <GL/glx.h>
4841 #endif
4842 int main(void) {
4843 #ifdef GL_WIN32
4844 HDC dc;
4845 wglCreateContext(dc);
4846 #else
4847 glXCreateContext(NULL, NULL, NULL, True);
4848 #endif
4849 glFinish();
4850 return 0;
4853 _gl=no
4854 for _ld_tmp in -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4855 if cc_check $_ld_tmp $_ld_lm ; then
4856 _gl=yes
4857 _gl_x11=yes
4858 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4859 break
4861 done
4862 if cc_check -DGL_WIN32 -lopengl32 ; then
4863 _gl=yes
4864 _gl_win32=yes
4865 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4867 else
4868 _gl=no
4870 if test "$_gl" = yes ; then
4871 def_gl='#define CONFIG_GL 1'
4872 _res_comment="backends:"
4873 if test "$_gl_win32" = yes ; then
4874 def_gl_win32='#define CONFIG_GL_WIN32 1'
4875 _res_comment="$_res_comment win32"
4877 if test "$_gl_x11" = yes ; then
4878 def_gl_x11='#define CONFIG_GL_X11 1'
4879 _res_comment="$_res_comment x11"
4881 _vomodules="opengl $_vomodules"
4882 else
4883 def_gl='#undef CONFIG_GL'
4884 def_gl_win32='#undef CONFIG_GL_WIN32'
4885 def_gl_x11='#undef CONFIG_GL_X11'
4886 _novomodules="opengl $_novomodules"
4888 echores "$_gl"
4890 echocheck "MatrixView"
4891 if test "$_gl" = no ; then
4892 matrixview=no
4894 if test "$matrixview" = yes ; then
4895 _vomodules="matrixview $_vomodules"
4896 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4897 else
4898 _novomodules="matrixview $_novomodules"
4899 def_matrixview='#undef CONFIG_MATRIXVIEW'
4901 echores "$matrixview"
4904 echocheck "PNG support"
4905 if test "$_png" = auto ; then
4906 _png=no
4907 if irix ; then
4908 # Don't check for -lpng on irix since it has its own libpng
4909 # incompatible with the GNU libpng
4910 _res_comment="disabled on irix (not GNU libpng)"
4911 else
4912 cat > $TMPC << EOF
4913 #include <png.h>
4914 #include <string.h>
4915 int main(void) {
4916 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4917 printf("libpng: %s\n", png_libpng_ver);
4918 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4921 cc_check -lpng -lz $_ld_lm && _png=yes
4924 echores "$_png"
4925 if test "$_png" = yes ; then
4926 def_png='#define CONFIG_PNG 1'
4927 extra_ldflags="$extra_ldflags -lpng -lz"
4928 else
4929 def_png='#undef CONFIG_PNG'
4932 echocheck "MNG support"
4933 if test "$_mng" = auto ; then
4934 _mng=no
4935 cat > $TMPC << EOF
4936 #include <libmng.h>
4937 int main(void) {
4938 const char * p_ver = mng_version_text();
4939 return !p_ver || p_ver[0] == 0;
4942 if cc_check -lmng -lz $_ld_lm ; then
4943 _mng=yes
4946 echores "$_mng"
4947 if test "$_mng" = yes ; then
4948 def_mng='#define CONFIG_MNG 1'
4949 extra_ldflags="$extra_ldflags -lmng -lz"
4950 else
4951 def_mng='#undef CONFIG_MNG'
4954 echocheck "JPEG support"
4955 if test "$_jpeg" = auto ; then
4956 _jpeg=no
4957 cat > $TMPC << EOF
4958 #include <stdio.h>
4959 #include <stdlib.h>
4960 #include <setjmp.h>
4961 #include <string.h>
4962 #include <jpeglib.h>
4963 int main(void) { return 0; }
4965 cc_check -ljpeg $_ld_lm && _jpeg=yes
4967 echores "$_jpeg"
4969 if test "$_jpeg" = yes ; then
4970 def_jpeg='#define CONFIG_JPEG 1'
4971 _vomodules="jpeg $_vomodules"
4972 extra_ldflags="$extra_ldflags -ljpeg"
4973 else
4974 def_jpeg='#undef CONFIG_JPEG'
4975 _novomodules="jpeg $_novomodules"
4980 echocheck "PNM support"
4981 if test "$_pnm" = yes; then
4982 def_pnm="#define CONFIG_PNM 1"
4983 _vomodules="pnm $_vomodules"
4984 else
4985 def_pnm="#undef CONFIG_PNM"
4986 _novomodules="pnm $_novomodules"
4988 echores "$_pnm"
4992 echocheck "GIF support"
4993 # This is to appease people who want to force gif support.
4994 # If it is forced to yes, then we still do checks to determine
4995 # which gif library to use.
4996 if test "$_gif" = yes ; then
4997 _force_gif=yes
4998 _gif=auto
5001 if test "$_gif" = auto ; then
5002 _gif=no
5003 cat > $TMPC << EOF
5004 #include <gif_lib.h>
5005 int main(void) { return 0; }
5007 for _ld_gif in "-lungif" "-lgif" ; do
5008 cc_check $_ld_gif && _gif=yes && break
5009 done
5012 # If no library was found, and the user wants support forced,
5013 # then we force it on with libgif, as this is the safest
5014 # assumption IMHO. (libungif & libregif both create symbolic
5015 # links to libgif. We also assume that no x11 support is needed,
5016 # because if you are forcing this, then you _should_ know what
5017 # you are doing. [ Besides, package maintainers should never
5018 # have compiled x11 deps into libungif in the first place. ] )
5019 # </rant>
5020 # --Joey
5021 if test "$_force_gif" = yes && test "$_gif" = no ; then
5022 _gif=yes
5023 _ld_gif="-lgif"
5026 if test "$_gif" = yes ; then
5027 def_gif='#define CONFIG_GIF 1'
5028 _codecmodules="gif $_codecmodules"
5029 _vomodules="gif89a $_vomodules"
5030 _res_comment="old version, some encoding functions disabled"
5031 def_gif_4='#undef CONFIG_GIF_4'
5032 extra_ldflags="$extra_ldflags $_ld_gif"
5034 cat > $TMPC << EOF
5035 #include <signal.h>
5036 #include <gif_lib.h>
5037 void catch() { exit(1); }
5038 int main(void) {
5039 signal(SIGSEGV, catch); // catch segfault
5040 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
5041 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
5042 return 0;
5045 if cc_check "$_ld_gif" ; then
5046 def_gif_4='#define CONFIG_GIF_4 1'
5047 _res_comment=""
5049 else
5050 def_gif='#undef CONFIG_GIF'
5051 def_gif_4='#undef CONFIG_GIF_4'
5052 _novomodules="gif89a $_novomodules"
5053 _nocodecmodules="gif $_nocodecmodules"
5055 echores "$_gif"
5058 case "$_gif" in yes*)
5059 echocheck "broken giflib workaround"
5060 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5062 cat > $TMPC << EOF
5063 #include <gif_lib.h>
5064 int main(void) {
5065 GifFileType gif;
5066 printf("UserData is at address %p\n", gif.UserData);
5067 return 0;
5070 if cc_check "$_ld_gif" ; then
5071 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5072 echores "disabled"
5073 else
5074 echores "enabled"
5077 esac
5080 echocheck "VESA support"
5081 if test "$_vesa" = auto ; then
5082 cat > $TMPC << EOF
5083 #include <vbe.h>
5084 int main(void) { vbeVersion(); return 0; }
5086 _vesa=no
5087 cc_check -lvbe -llrmi && _vesa=yes
5089 if test "$_vesa" = yes ; then
5090 def_vesa='#define CONFIG_VESA 1'
5091 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5092 _vomodules="vesa $_vomodules"
5093 else
5094 def_vesa='#undef CONFIG_VESA'
5095 _novomodules="vesa $_novomodules"
5097 echores "$_vesa"
5099 #################
5100 # VIDEO + AUDIO #
5101 #################
5104 echocheck "SDL"
5105 _inc_tmp=""
5106 _ld_tmp=""
5107 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5108 if test -z "$_sdlconfig" ; then
5109 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5110 _sdlconfig="sdl-config"
5111 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5112 _sdlconfig="sdl11-config"
5113 else
5114 _sdlconfig=false
5117 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5118 cat > $TMPC << EOF
5119 #ifdef CONFIG_SDL_SDL_H
5120 #include <SDL/SDL.h>
5121 #else
5122 #include <SDL.h>
5123 #endif
5124 #ifndef __APPLE__
5125 // we allow SDL hacking our main() only on OSX
5126 #undef main
5127 #endif
5128 int main(int argc, char *argv[]) {
5129 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5130 return 0;
5133 _sdl=no
5134 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5135 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5136 _sdl=yes
5137 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5138 break
5140 done
5141 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5142 _res_comment="using $_sdlconfig"
5143 if cygwin ; then
5144 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5145 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5146 elif mingw32 ; then
5147 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5148 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5149 else
5150 _inc_tmp="$($_sdlconfig --cflags)"
5151 _ld_tmp="$($_sdlconfig --libs)"
5153 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5154 _sdlversion=$($_sdlconfig --version | sed 's/[^0-9]//g')
5155 if test "$_sdlversion" -gt 116 ; then
5156 if test "$_sdlversion" -lt 121 ; then
5157 def_sdlbuggy='#define BUGGY_SDL'
5158 else
5159 def_sdlbuggy='#undef BUGGY_SDL'
5161 _sdl=yes
5166 if test "$_sdl" = yes ; then
5167 def_sdl='#define CONFIG_SDL 1'
5168 extra_cflags="$extra_cflags $_inc_tmp"
5169 libs_mplayer="$libs_mplayer $_ld_tmp"
5170 _vomodules="sdl $_vomodules"
5171 _aomodules="sdl $_aomodules"
5172 else
5173 def_sdl='#undef CONFIG_SDL'
5174 _novomodules="sdl $_novomodules"
5175 _noaomodules="sdl $_noaomodules"
5177 echores "$_sdl"
5180 if os2 ; then
5181 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5182 if test "$_kva" = auto; then
5183 cat > $TMPC << EOF
5184 #include <os2.h>
5185 #include <kva.h>
5186 int main( void ) { return 0; }
5188 _kva=no;
5189 cc_check -lkva && _kva=yes
5191 if test "$_kva" = yes ; then
5192 def_kva='#define CONFIG_KVA 1'
5193 libs_mplayer="$libs_mplayer -lkva"
5194 _vomodules="kva $_vomodules"
5195 else
5196 def_kva='#undef CONFIG_KVA'
5197 _novomodules="kva $_novomodules"
5199 echores "$_kva"
5200 fi #if os2
5203 if win32; then
5205 echocheck "Windows waveout"
5206 if test "$_win32waveout" = auto ; then
5207 cat > $TMPC << EOF
5208 #include <windows.h>
5209 #include <mmsystem.h>
5210 int main(void) { return 0; }
5212 _win32waveout=no
5213 cc_check -lwinmm && _win32waveout=yes
5215 if test "$_win32waveout" = yes ; then
5216 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5217 libs_mplayer="$libs_mplayer -lwinmm"
5218 _aomodules="win32 $_aomodules"
5219 else
5220 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5221 _noaomodules="win32 $_noaomodules"
5223 echores "$_win32waveout"
5225 echocheck "Direct3D"
5226 if test "$_direct3d" = auto ; then
5227 cat > $TMPC << EOF
5228 #include <windows.h>
5229 #include <d3d9.h>
5230 int main(void) { return 0; }
5232 _direct3d=no
5233 cc_check && _direct3d=yes
5235 if test "$_direct3d" = yes ; then
5236 def_direct3d='#define CONFIG_DIRECT3D 1'
5237 _vomodules="direct3d $_vomodules"
5238 else
5239 def_direct3d='#undef CONFIG_DIRECT3D'
5240 _novomodules="direct3d $_novomodules"
5242 echores "$_direct3d"
5244 echocheck "Directx"
5245 if test "$_directx" = auto ; then
5246 cat > $TMPC << EOF
5247 #include <windows.h>
5248 #include <ddraw.h>
5249 #include <dsound.h>
5250 int main(void) { return 0; }
5252 _directx=no
5253 cc_check -lgdi32 && _directx=yes
5255 if test "$_directx" = yes ; then
5256 def_directx='#define CONFIG_DIRECTX 1'
5257 libs_mplayer="$libs_mplayer -lgdi32"
5258 _vomodules="directx $_vomodules"
5259 _aomodules="dsound $_aomodules"
5260 else
5261 def_directx='#undef CONFIG_DIRECTX'
5262 _novomodules="directx $_novomodules"
5263 _noaomodules="dsound $_noaomodules"
5265 echores "$_directx"
5267 fi #if win32; then
5270 echocheck "DXR2"
5271 if test "$_dxr2" = auto; then
5272 _dxr2=no
5273 cat > $TMPC << EOF
5274 #include <dxr2ioctl.h>
5275 int main(void) { return 0; }
5277 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5278 cc_check $_inc_tmp && _dxr2=yes && \
5279 extra_cflags="$extra_cflags $_inc_tmp" && break
5280 done
5282 if test "$_dxr2" = yes; then
5283 def_dxr2='#define CONFIG_DXR2 1'
5284 _aomodules="dxr2 $_aomodules"
5285 _vomodules="dxr2 $_vomodules"
5286 else
5287 def_dxr2='#undef CONFIG_DXR2'
5288 _noaomodules="dxr2 $_noaomodules"
5289 _novomodules="dxr2 $_novomodules"
5291 echores "$_dxr2"
5293 echocheck "DXR3/H+"
5294 if test "$_dxr3" = auto ; then
5295 cat > $TMPC << EOF
5296 #include <linux/em8300.h>
5297 int main(void) { return 0; }
5299 _dxr3=no
5300 cc_check && _dxr3=yes
5302 if test "$_dxr3" = yes ; then
5303 def_dxr3='#define CONFIG_DXR3 1'
5304 _vomodules="dxr3 $_vomodules"
5305 else
5306 def_dxr3='#undef CONFIG_DXR3'
5307 _novomodules="dxr3 $_novomodules"
5309 echores "$_dxr3"
5312 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5313 if test "$_ivtv" = auto ; then
5314 cat > $TMPC << EOF
5315 #include <stdlib.h>
5316 #include <inttypes.h>
5317 #include <linux/types.h>
5318 #include <linux/videodev2.h>
5319 #include <linux/ivtv.h>
5320 #include <sys/ioctl.h>
5321 int main(void) {
5322 struct ivtv_cfg_stop_decode sd;
5323 struct ivtv_cfg_start_decode sd1;
5324 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5325 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5326 return 0; }
5328 _ivtv=no
5329 cc_check && _ivtv=yes
5331 if test "$_ivtv" = yes ; then
5332 def_ivtv='#define CONFIG_IVTV 1'
5333 _vomodules="ivtv $_vomodules"
5334 _aomodules="ivtv $_aomodules"
5335 else
5336 def_ivtv='#undef CONFIG_IVTV'
5337 _novomodules="ivtv $_novomodules"
5338 _noaomodules="ivtv $_noaomodules"
5340 echores "$_ivtv"
5343 echocheck "V4L2 MPEG Decoder"
5344 if test "$_v4l2" = auto ; then
5345 cat > $TMPC << EOF
5346 #include <stdlib.h>
5347 #include <inttypes.h>
5348 #include <linux/types.h>
5349 #include <linux/videodev2.h>
5350 #include <linux/version.h>
5351 int main(void) {
5352 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5353 #error kernel headers too old, need 2.6.22
5354 #endif
5355 struct v4l2_ext_controls ctrls;
5356 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5357 return 0;
5360 _v4l2=no
5361 cc_check && _v4l2=yes
5363 if test "$_v4l2" = yes ; then
5364 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5365 _vomodules="v4l2 $_vomodules"
5366 _aomodules="v4l2 $_aomodules"
5367 else
5368 def_v4l2='#undef CONFIG_V4L2_DECODER'
5369 _novomodules="v4l2 $_novomodules"
5370 _noaomodules="v4l2 $_noaomodules"
5372 echores "$_v4l2"
5376 #########
5377 # AUDIO #
5378 #########
5381 echocheck "OSS Audio"
5382 if test "$_ossaudio" = auto ; then
5383 cat > $TMPC << EOF
5384 #include <sys/ioctl.h>
5385 #include <$_soundcard_header>
5386 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5388 _ossaudio=no
5389 cc_check && _ossaudio=yes
5391 if test "$_ossaudio" = yes ; then
5392 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5393 _aomodules="oss $_aomodules"
5394 if test "$_linux_devfs" = yes; then
5395 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5396 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5397 else
5398 cat > $TMPC << EOF
5399 #include <sys/ioctl.h>
5400 #include <$_soundcard_header>
5401 #ifdef OPEN_SOUND_SYSTEM
5402 int main(void) { return 0; }
5403 #else
5404 #error Not the real thing
5405 #endif
5407 _real_ossaudio=no
5408 cc_check && _real_ossaudio=yes
5409 if test "$_real_ossaudio" = yes; then
5410 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5411 # Check for OSS4 headers (override default headers)
5412 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5413 if test -f /etc/oss.conf; then
5414 . /etc/oss.conf
5415 _ossinc="$OSSLIBDIR/include"
5416 if test -f "$_ossinc/sys/soundcard.h"; then
5417 extra_cflags="-I$_ossinc $extra_cflags"
5420 elif netbsd || openbsd ; then
5421 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5422 extra_ldflags="$extra_ldflags -lossaudio"
5423 else
5424 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5426 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5428 else
5429 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5430 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5431 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5432 _noaomodules="oss $_noaomodules"
5434 echores "$_ossaudio"
5437 echocheck "aRts"
5438 if test "$_arts" = auto ; then
5439 _arts=no
5440 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5442 cat > $TMPC << EOF
5443 #include <artsc.h>
5444 int main(void) { return 0; }
5446 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5451 if test "$_arts" = yes ; then
5452 def_arts='#define CONFIG_ARTS 1'
5453 _aomodules="arts $_aomodules"
5454 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5455 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5456 else
5457 _noaomodules="arts $_noaomodules"
5459 echores "$_arts"
5462 echocheck "EsounD"
5463 if test "$_esd" = auto ; then
5464 _esd=no
5465 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5467 cat > $TMPC << EOF
5468 #include <esd.h>
5469 int main(void) { int fd = esd_open_sound("test"); return fd; }
5471 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5475 echores "$_esd"
5477 if test "$_esd" = yes ; then
5478 def_esd='#define CONFIG_ESD 1'
5479 _aomodules="esd $_aomodules"
5480 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5481 extra_cflags="$extra_cflags $(esd-config --cflags)"
5483 echocheck "esd_get_latency()"
5484 cat > $TMPC << EOF
5485 #include <esd.h>
5486 int main(void) { return esd_get_latency(0); }
5488 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5489 echores "$_esd_latency"
5490 else
5491 def_esd='#undef CONFIG_ESD'
5492 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5493 _noaomodules="esd $_noaomodules"
5497 echocheck "NAS"
5498 if test "$_nas" = auto ; then
5499 cat > $TMPC << EOF
5500 #include <audio/audiolib.h>
5501 int main(void) { return 0; }
5503 _nas=no
5504 cc_check $_ld_lm -laudio -lXt && _nas=yes
5506 if test "$_nas" = yes ; then
5507 def_nas='#define CONFIG_NAS 1'
5508 libs_mplayer="$libs_mplayer -laudio -lXt"
5509 _aomodules="nas $_aomodules"
5510 else
5511 _noaomodules="nas $_noaomodules"
5512 def_nas='#undef CONFIG_NAS'
5514 echores "$_nas"
5517 echocheck "pulse"
5518 if test "$_pulse" = auto ; then
5519 _pulse=no
5520 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5522 cat > $TMPC << EOF
5523 #include <pulse/pulseaudio.h>
5524 int main(void) { return 0; }
5526 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5530 echores "$_pulse"
5532 if test "$_pulse" = yes ; then
5533 def_pulse='#define CONFIG_PULSE 1'
5534 _aomodules="pulse $_aomodules"
5535 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5536 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5537 else
5538 def_pulse='#undef CONFIG_PULSE'
5539 _noaomodules="pulse $_noaomodules"
5543 echocheck "JACK"
5544 if test "$_jack" = auto ; then
5545 _jack=yes
5547 cat > $TMPC << EOF
5548 #include <jack/jack.h>
5549 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5551 if cc_check -ljack ; then
5552 libs_mplayer="$libs_mplayer -ljack"
5553 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5554 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5555 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5556 else
5557 _jack=no
5561 if test "$_jack" = yes ; then
5562 def_jack='#define CONFIG_JACK 1'
5563 _aomodules="jack $_aomodules"
5564 else
5565 _noaomodules="jack $_noaomodules"
5567 echores "$_jack"
5569 echocheck "OpenAL"
5570 if test "$_openal" = auto ; then
5571 _openal=no
5572 cat > $TMPC << EOF
5573 #ifdef OPENAL_AL_H
5574 #include <OpenAL/al.h>
5575 #else
5576 #include <AL/al.h>
5577 #endif
5578 int main(void) {
5579 alSourceQueueBuffers(0, 0, 0);
5580 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5581 return 0;
5584 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5585 cc_check $I && _openal=yes && break
5586 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5587 done
5588 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5590 if test "$_openal" = yes ; then
5591 def_openal='#define CONFIG_OPENAL 1'
5592 _aomodules="openal $_aomodules"
5593 else
5594 _noaomodules="openal $_noaomodules"
5596 echores "$_openal"
5598 echocheck "ALSA audio"
5599 if test "$_alloca" != yes ; then
5600 _alsa=no
5601 _res_comment="alloca missing"
5603 if test "$_alsa" != no ; then
5604 _alsa=no
5605 cat > $TMPC << EOF
5606 #include <sys/time.h>
5607 #include <sys/asoundlib.h>
5608 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5609 #error "alsa version != 0.5.x"
5610 #endif
5611 int main(void) { return 0; }
5613 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5615 cat > $TMPC << EOF
5616 #include <sys/time.h>
5617 #include <sys/asoundlib.h>
5618 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5619 #error "alsa version != 0.9.x"
5620 #endif
5621 int main(void) { return 0; }
5623 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5624 cat > $TMPC << EOF
5625 #include <sys/time.h>
5626 #include <alsa/asoundlib.h>
5627 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5628 #error "alsa version != 0.9.x"
5629 #endif
5630 int main(void) { return 0; }
5632 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5634 cat > $TMPC << EOF
5635 #include <sys/time.h>
5636 #include <sys/asoundlib.h>
5637 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5638 #error "alsa version != 1.0.x"
5639 #endif
5640 int main(void) { return 0; }
5642 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5643 cat > $TMPC << EOF
5644 #include <sys/time.h>
5645 #include <alsa/asoundlib.h>
5646 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5647 #error "alsa version != 1.0.x"
5648 #endif
5649 int main(void) { return 0; }
5651 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5653 def_alsa='#undef CONFIG_ALSA'
5654 def_alsa5='#undef CONFIG_ALSA5'
5655 def_alsa9='#undef CONFIG_ALSA9'
5656 def_alsa1x='#undef CONFIG_ALSA1X'
5657 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5658 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5659 if test "$_alsaver" ; then
5660 _alsa=yes
5661 if test "$_alsaver" = '0.5.x' ; then
5662 _alsa5=yes
5663 _aomodules="alsa5 $_aomodules"
5664 def_alsa5='#define CONFIG_ALSA5 1'
5665 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5666 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5667 elif test "$_alsaver" = '0.9.x-sys' ; then
5668 _alsa9=yes
5669 _aomodules="alsa $_aomodules"
5670 def_alsa='#define CONFIG_ALSA 1'
5671 def_alsa9='#define CONFIG_ALSA9 1'
5672 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5673 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5674 elif test "$_alsaver" = '0.9.x-alsa' ; then
5675 _alsa9=yes
5676 _aomodules="alsa $_aomodules"
5677 def_alsa='#define CONFIG_ALSA 1'
5678 def_alsa9='#define CONFIG_ALSA9 1'
5679 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5680 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5681 elif test "$_alsaver" = '1.0.x-sys' ; then
5682 _alsa1x=yes
5683 _aomodules="alsa $_aomodules"
5684 def_alsa='#define CONFIG_ALSA 1'
5685 def_alsa1x="#define CONFIG_ALSA1X 1"
5686 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5687 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5688 elif test "$_alsaver" = '1.0.x-alsa' ; then
5689 _alsa1x=yes
5690 _aomodules="alsa $_aomodules"
5691 def_alsa='#define CONFIG_ALSA 1'
5692 def_alsa1x="#define CONFIG_ALSA1X 1"
5693 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5694 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5695 else
5696 _alsa=no
5697 _res_comment="unknown version"
5699 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5700 else
5701 _noaomodules="alsa $_noaomodules"
5703 echores "$_alsa"
5706 echocheck "Sun audio"
5707 if test "$_sunaudio" = auto ; then
5708 cat > $TMPC << EOF
5709 #include <sys/types.h>
5710 #include <sys/audioio.h>
5711 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5713 _sunaudio=no
5714 cc_check && _sunaudio=yes
5716 if test "$_sunaudio" = yes ; then
5717 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5718 _aomodules="sun $_aomodules"
5719 else
5720 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5721 _noaomodules="sun $_noaomodules"
5723 echores "$_sunaudio"
5726 def_mlib='#define CONFIG_MLIB 0'
5727 if sunos; then
5728 echocheck "Sun mediaLib"
5729 if test "$_mlib" = auto ; then
5730 _mlib=no
5731 cat > $TMPC << EOF
5732 #include <mlib.h>
5733 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5735 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5737 echores "$_mlib"
5738 fi #if sunos
5741 if darwin; then
5742 echocheck "CoreAudio"
5743 if test "$_coreaudio" = auto ; then
5744 cat > $TMPC <<EOF
5745 #include <CoreAudio/CoreAudio.h>
5746 #include <AudioToolbox/AudioToolbox.h>
5747 #include <AudioUnit/AudioUnit.h>
5748 int main(void) { return 0; }
5750 _coreaudio=no
5751 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5753 if test "$_coreaudio" = yes ; then
5754 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5755 def_coreaudio='#define CONFIG_COREAUDIO 1'
5756 _aomodules="coreaudio $_aomodules"
5757 else
5758 def_coreaudio='#undef CONFIG_COREAUDIO'
5759 _noaomodules="coreaudio $_noaomodules"
5761 echores $_coreaudio
5762 fi #if darwin
5765 if irix; then
5766 echocheck "SGI audio"
5767 if test "$_sgiaudio" = auto ; then
5768 # check for SGI audio
5769 cat > $TMPC << EOF
5770 #include <dmedia/audio.h>
5771 int main(void) { return 0; }
5773 _sgiaudio=no
5774 cc_check && _sgiaudio=yes
5776 if test "$_sgiaudio" = "yes" ; then
5777 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5778 libs_mplayer="$libs_mplayer -laudio"
5779 _aomodules="sgi $_aomodules"
5780 else
5781 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5782 _noaomodules="sgi $_noaomodules"
5784 echores "$_sgiaudio"
5785 fi #if irix
5788 if os2 ; then
5789 echocheck "KAI (UNIAUD/DART)"
5790 if test "$_kai" = auto; then
5791 cat > $TMPC << EOF
5792 #include <os2.h>
5793 #include <kai.h>
5794 int main(void) { return 0; }
5796 _kai=no;
5797 cc_check -lkai && _kai=yes
5799 if test "$_kai" = yes ; then
5800 def_kai='#define CONFIG_KAI 1'
5801 libs_mplayer="$libs_mplayer -lkai"
5802 _aomodules="kai $_aomodules"
5803 else
5804 def_kai='#undef CONFIG_KAI'
5805 _noaomodules="kai $_noaomodules"
5807 echores "$_kai"
5809 echocheck "DART"
5810 if test "$_dart" = auto; then
5811 cat > $TMPC << EOF
5812 #include <os2.h>
5813 #include <dart.h>
5814 int main( void ) { return 0; }
5816 _dart=no;
5817 cc_check -ldart && _dart=yes
5819 if test "$_dart" = yes ; then
5820 def_dart='#define CONFIG_DART 1'
5821 libs_mplayer="$libs_mplayer -ldart"
5822 _aomodules="dart $_aomodules"
5823 else
5824 def_dart='#undef CONFIG_DART'
5825 _noaomodules="dart $_noaomodules"
5827 echores "$_dart"
5828 fi #if os2
5831 # set default CD/DVD devices
5832 if win32 || os2 ; then
5833 default_cdrom_device="D:"
5834 elif darwin ; then
5835 default_cdrom_device="/dev/disk1"
5836 elif dragonfly ; then
5837 default_cdrom_device="/dev/cd0"
5838 elif freebsd ; then
5839 default_cdrom_device="/dev/acd0"
5840 elif openbsd ; then
5841 default_cdrom_device="/dev/rcd0a"
5842 elif sunos ; then
5843 default_cdrom_device="/vol/dev/aliases/cdrom0"
5844 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5845 # file system and the volfs service.
5846 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5847 elif amigaos ; then
5848 default_cdrom_device="a1ide.device:2"
5849 else
5850 default_cdrom_device="/dev/cdrom"
5853 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5854 default_dvd_device=$default_cdrom_device
5855 elif darwin ; then
5856 default_dvd_device="/dev/rdiskN"
5857 else
5858 default_dvd_device="/dev/dvd"
5862 echocheck "VCD support"
5863 if test "$_vcd" = auto; then
5864 _vcd=no
5865 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5866 _vcd=yes
5867 elif mingw32; then
5868 cat > $TMPC << EOF
5869 #include <ddk/ntddcdrm.h>
5870 int main(void) { return 0; }
5872 cc_check && _vcd=yes
5875 if test "$_vcd" = yes; then
5876 _inputmodules="vcd $_inputmodules"
5877 def_vcd='#define CONFIG_VCD 1'
5878 else
5879 def_vcd='#undef CONFIG_VCD'
5880 _noinputmodules="vcd $_noinputmodules"
5881 _res_comment="not supported on this OS"
5883 echores "$_vcd"
5887 echocheck "dvdread"
5888 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5889 _dvdread_internal=no
5891 if test "$_dvdread_internal" = auto ; then
5892 _dvdread_internal=no
5893 _dvdread=no
5894 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5895 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5896 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5897 || darwin || win32 || os2; then
5898 _dvdread_internal=yes
5899 _dvdread=yes
5900 extra_cflags="-Ilibdvdread4 $extra_cflags"
5902 elif test "$_dvdread" = auto ; then
5903 _dvdread=no
5904 if test "$_dl" = yes; then
5905 cat > $TMPC << EOF
5906 #include <inttypes.h>
5907 #include <dvdread/dvd_reader.h>
5908 #include <dvdread/ifo_types.h>
5909 #include <dvdread/ifo_read.h>
5910 #include <dvdread/nav_read.h>
5911 int main(void) { return 0; }
5913 _dvdreadcflags=$($_dvdreadconfig --cflags)
5914 _dvdreadlibs=$($_dvdreadconfig --libs)
5915 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5916 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5917 _dvdread=yes
5918 extra_cflags="$extra_cflags $_dvdreadcflags"
5919 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5920 _res_comment="external"
5925 if test "$_dvdread_internal" = yes; then
5926 def_dvdread='#define CONFIG_DVDREAD 1'
5927 _inputmodules="dvdread(internal) $_inputmodules"
5928 _largefiles=yes
5929 _res_comment="internal"
5930 elif test "$_dvdread" = yes; then
5931 def_dvdread='#define CONFIG_DVDREAD 1'
5932 _largefiles=yes
5933 extra_ldflags="$extra_ldflags -ldvdread"
5934 _inputmodules="dvdread(external) $_inputmodules"
5935 _res_comment="external"
5936 else
5937 def_dvdread='#undef CONFIG_DVDREAD'
5938 _noinputmodules="dvdread $_noinputmodules"
5940 echores "$_dvdread"
5943 echocheck "internal libdvdcss"
5944 if test "$_libdvdcss_internal" = auto ; then
5945 _libdvdcss_internal=no
5946 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5947 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5949 if test "$_libdvdcss_internal" = yes ; then
5950 if linux || netbsd || openbsd || bsdos ; then
5951 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5952 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5953 elif freebsd || dragonfly ; then
5954 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5955 elif darwin ; then
5956 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5957 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5958 elif cygwin ; then
5959 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5960 elif beos ; then
5961 cflags_libdvdcss="-DSYS_BEOS"
5962 elif os2 ; then
5963 cflags_libdvdcss="-DSYS_OS2"
5965 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5966 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5967 _inputmodules="libdvdcss(internal) $_inputmodules"
5968 _largefiles=yes
5969 else
5970 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5972 echores "$_libdvdcss_internal"
5975 echocheck "cdparanoia"
5976 if test "$_cdparanoia" = auto ; then
5977 cat > $TMPC <<EOF
5978 #include <cdda_interface.h>
5979 #include <cdda_paranoia.h>
5980 // This need a better test. How ?
5981 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5983 _cdparanoia=no
5984 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5985 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5986 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5987 done
5989 if test "$_cdparanoia" = yes ; then
5990 _cdda='yes'
5991 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5992 openbsd && extra_ldflags="$extra_ldflags -lutil"
5994 echores "$_cdparanoia"
5997 echocheck "libcdio"
5998 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5999 cat > $TMPC << EOF
6000 #include <stdio.h>
6001 #include <cdio/version.h>
6002 #include <cdio/cdda.h>
6003 #include <cdio/paranoia.h>
6004 int main(void) {
6005 void *test = cdda_verbose_set;
6006 printf("%s\n", CDIO_VERSION);
6007 return test == (void *)1;
6010 _libcdio=no
6011 for _ld_tmp in "" "-lwinmm" ; do
6012 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
6013 cc_check $_ld_tmp $_ld_lm \
6014 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6015 done
6016 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6017 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6018 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6019 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6020 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6023 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6024 _cdda='yes'
6025 def_libcdio='#define CONFIG_LIBCDIO 1'
6026 def_havelibcdio='yes'
6027 else
6028 if test "$_cdparanoia" = yes ; then
6029 _res_comment="using cdparanoia"
6031 def_libcdio='#undef CONFIG_LIBCDIO'
6032 def_havelibcdio='no'
6034 echores "$_libcdio"
6036 if test "$_cdda" = yes ; then
6037 test $_cddb = auto && test $_network = yes && _cddb=yes
6038 def_cdparanoia='#define CONFIG_CDDA 1'
6039 _inputmodules="cdda $_inputmodules"
6040 else
6041 def_cdparanoia='#undef CONFIG_CDDA'
6042 _noinputmodules="cdda $_noinputmodules"
6045 if test "$_cddb" = yes ; then
6046 def_cddb='#define CONFIG_CDDB 1'
6047 _inputmodules="cddb $_inputmodules"
6048 else
6049 _cddb=no
6050 def_cddb='#undef CONFIG_CDDB'
6051 _noinputmodules="cddb $_noinputmodules"
6054 echocheck "bitmap font support"
6055 if test "$_bitmap_font" = yes ; then
6056 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6057 else
6058 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6060 echores "$_bitmap_font"
6063 echocheck "freetype >= 2.0.9"
6065 # freetype depends on iconv
6066 if test "$_iconv" = no ; then
6067 _freetype=no
6068 _res_comment="iconv support needed"
6071 if test "$_freetype" = auto ; then
6072 if $_pkg_config --version >/dev/null 2>&1 || $_freetypeconfig --version >/dev/null 2>&1; then
6073 cat > $TMPC << EOF
6074 #include <stdio.h>
6075 #include <ft2build.h>
6076 #include FT_FREETYPE_H
6077 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6078 #error "Need FreeType 2.0.9 or newer"
6079 #endif
6080 int main(void) {
6081 FT_Library library;
6082 FT_Int major=-1,minor=-1,patch=-1;
6083 int err=FT_Init_FreeType(&library);
6084 return 0;
6087 _freetype=no
6088 if $_pkg_config --exists freetype2; then
6089 cc_check $($_pkg_config --cflags freetype2) $($_pkg_config --libs freetype2) && _freetype=yes && _res_comment="pkg-config"
6090 else
6091 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes && _res_comment="$_freetypeconfig"
6093 else
6094 _freetype=no
6097 if test "$_freetype" = yes ; then
6098 def_freetype='#define CONFIG_FREETYPE 1'
6099 if $_pkg_config --exists freetype2; then
6100 extra_cflags="$extra_cflags $($_pkg_config --cflags freetype2)"
6101 extra_ldflags="$extra_ldflags $($_pkg_config --libs freetype2)"
6102 else
6103 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6104 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6106 else
6107 def_freetype='#undef CONFIG_FREETYPE'
6109 echores "$_freetype"
6111 if test "$_freetype" = no ; then
6112 _fontconfig=no
6113 _res_comment="FreeType support needed"
6115 echocheck "fontconfig"
6116 if test "$_fontconfig" = auto ; then
6117 cat > $TMPC << EOF
6118 #include <stdio.h>
6119 #include <stdlib.h>
6120 #include <fontconfig/fontconfig.h>
6121 #if FC_VERSION < 20402
6122 #error At least version 2.4.2 of fontconfig required
6123 #endif
6124 int main(void) {
6125 int err = FcInit();
6126 if (err == FcFalse) {
6127 printf("Couldn't initialize fontconfig lib\n");
6128 exit(err);
6130 return 0;
6133 _fontconfig=no
6134 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6135 _ld_tmp="-lfontconfig $_ld_tmp"
6136 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6137 done
6138 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6139 _inc_tmp=$($_pkg_config --cflags fontconfig)
6140 _ld_tmp=$($_pkg_config --libs fontconfig)
6141 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6142 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6145 if test "$_fontconfig" = yes ; then
6146 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6147 else
6148 def_fontconfig='#undef CONFIG_FONTCONFIG'
6150 echores "$_fontconfig"
6152 if test "$_freetype" = no; then
6153 _ass=no
6154 _res_comment="FreeType support needed"
6156 echocheck "SSA/ASS support"
6157 if test "$_ass" = auto -o "$_ass" = yes ; then
6158 if $_pkg_config libass; then
6159 _ass=yes
6160 def_ass='#define CONFIG_ASS 1'
6161 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6162 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6163 else
6164 _ass=no
6165 def_ass='#undef CONFIG_ASS'
6167 else
6168 def_ass='#undef CONFIG_ASS'
6170 echores "$_ass"
6173 echocheck "fribidi with charsets"
6174 _inc_tmp=""
6175 _ld_tmp=""
6176 if test "$_fribidi" = auto ; then
6177 cat > $TMPC << EOF
6178 #include <stdio.h>
6179 #include <stdlib.h>
6180 /* workaround for fribidi 0.10.4 and below */
6181 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6182 #include <fribidi/fribidi.h>
6183 int main(void) {
6184 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6185 printf("Fribidi headers are not consistents with the library!\n");
6186 exit(1);
6188 return 0;
6191 _fribidi=no
6192 _inc_tmp=""
6193 _ld_tmp="-lfribidi"
6194 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6195 if $_fribidiconfig --version > /dev/null 2>&1 &&
6196 test "$_fribidi" = no ; then
6197 _inc_tmp="$($_fribidiconfig --cflags)"
6198 _ld_tmp="$($_fribidiconfig --libs)"
6199 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6202 if test "$_fribidi" = yes ; then
6203 def_fribidi='#define CONFIG_FRIBIDI 1'
6204 extra_cflags="$extra_cflags $_inc_tmp"
6205 extra_ldflags="$extra_ldflags $_ld_tmp"
6206 else
6207 def_fribidi='#undef CONFIG_FRIBIDI'
6209 echores "$_fribidi"
6212 echocheck "ENCA"
6213 if test "$_enca" = auto ; then
6214 cat > $TMPC << EOF
6215 #include <sys/types.h>
6216 #include <enca.h>
6217 int main(void) {
6218 const char **langs;
6219 size_t langcnt;
6220 langs = enca_get_languages(&langcnt);
6221 return 0;
6224 _enca=no
6225 cc_check -lenca $_ld_lm && _enca=yes
6227 if test "$_enca" = yes ; then
6228 def_enca='#define CONFIG_ENCA 1'
6229 extra_ldflags="$extra_ldflags -lenca"
6230 else
6231 def_enca='#undef CONFIG_ENCA'
6233 echores "$_enca"
6236 echocheck "zlib"
6237 cat > $TMPC << EOF
6238 #include <zlib.h>
6239 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6241 _zlib=no
6242 cc_check -lz && _zlib=yes
6243 if test "$_zlib" = yes ; then
6244 def_zlib='#define CONFIG_ZLIB 1'
6245 extra_ldflags="$extra_ldflags -lz"
6246 else
6247 def_zlib='#define CONFIG_ZLIB 0'
6249 echores "$_zlib"
6252 echocheck "bzlib"
6253 bzlib=no
6254 def_bzlib='#define CONFIG_BZLIB 0'
6255 cat > $TMPC << EOF
6256 #include <bzlib.h>
6257 int main(void) { BZ2_bzlibVersion(); return 0; }
6259 cc_check -lbz2 && bzlib=yes
6260 if test "$bzlib" = yes ; then
6261 def_bzlib='#define CONFIG_BZLIB 1'
6262 extra_ldflags="$extra_ldflags -lbz2"
6264 echores "$bzlib"
6267 echocheck "RTC"
6268 if test "$_rtc" = auto ; then
6269 cat > $TMPC << EOF
6270 #include <sys/ioctl.h>
6271 #ifdef __linux__
6272 #include <linux/rtc.h>
6273 #else
6274 #include <rtc.h>
6275 #define RTC_PIE_ON RTCIO_PIE_ON
6276 #endif
6277 int main(void) { return RTC_PIE_ON; }
6279 _rtc=no
6280 cc_check && _rtc=yes
6281 ppc && _rtc=no
6283 if test "$_rtc" = yes ; then
6284 def_rtc='#define HAVE_RTC 1'
6285 else
6286 def_rtc='#undef HAVE_RTC'
6288 echores "$_rtc"
6291 echocheck "liblzo2 support"
6292 if test "$_liblzo" = auto ; then
6293 _liblzo=no
6294 cat > $TMPC << EOF
6295 #include <lzo/lzo1x.h>
6296 int main(void) { lzo_init();return 0; }
6298 cc_check -llzo2 && _liblzo=yes
6300 if test "$_liblzo" = yes ; then
6301 def_liblzo='#define CONFIG_LIBLZO 1'
6302 extra_ldflags="$extra_ldflags -llzo2"
6303 _codecmodules="liblzo $_codecmodules"
6304 else
6305 def_liblzo='#undef CONFIG_LIBLZO'
6306 _nocodecmodules="liblzo $_nocodecmodules"
6308 echores "$_liblzo"
6311 echocheck "mad support"
6312 if test "$_mad" = auto ; then
6313 _mad=no
6314 cat > $TMPC << EOF
6315 #include <mad.h>
6316 int main(void) { return 0; }
6318 cc_check -lmad && _mad=yes
6320 if test "$_mad" = yes ; then
6321 def_mad='#define CONFIG_LIBMAD 1'
6322 extra_ldflags="$extra_ldflags -lmad"
6323 _codecmodules="libmad $_codecmodules"
6324 else
6325 def_mad='#undef CONFIG_LIBMAD'
6326 _nocodecmodules="libmad $_nocodecmodules"
6328 echores "$_mad"
6330 echocheck "Twolame"
6331 if test "$_twolame" = auto ; then
6332 cat > $TMPC <<EOF
6333 #include <twolame.h>
6334 int main(void) { twolame_init(); return 0; }
6336 _twolame=no
6337 cc_check -ltwolame $_ld_lm && _twolame=yes
6339 if test "$_twolame" = yes ; then
6340 def_twolame='#define CONFIG_TWOLAME 1'
6341 libs_mencoder="$libs_mencoder -ltwolame"
6342 _codecmodules="twolame $_codecmodules"
6343 else
6344 def_twolame='#undef CONFIG_TWOLAME'
6345 _nocodecmodules="twolame $_nocodecmodules"
6347 echores "$_twolame"
6349 echocheck "Toolame"
6350 if test "$_toolame" = auto ; then
6351 _toolame=no
6352 if test "$_twolame" = yes ; then
6353 _res_comment="disabled by twolame"
6354 else
6355 cat > $TMPC <<EOF
6356 #include <toolame.h>
6357 int main(void) { toolame_init(); return 0; }
6359 cc_check -ltoolame $_ld_lm && _toolame=yes
6362 if test "$_toolame" = yes ; then
6363 def_toolame='#define CONFIG_TOOLAME 1'
6364 libs_mencoder="$libs_mencoder -ltoolame"
6365 _codecmodules="toolame $_codecmodules"
6366 else
6367 def_toolame='#undef CONFIG_TOOLAME'
6368 _nocodecmodules="toolame $_nocodecmodules"
6370 if test "$_toolamedir" ; then
6371 _res_comment="using $_toolamedir"
6373 echores "$_toolame"
6375 echocheck "OggVorbis support"
6376 if test "$_tremor_internal" = yes; then
6377 _libvorbis=no
6378 elif test "$_tremor" = auto; then
6379 _tremor=no
6380 cat > $TMPC << EOF
6381 #include <tremor/ivorbiscodec.h>
6382 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6384 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6386 if test "$_libvorbis" = auto; then
6387 _libvorbis=no
6388 cat > $TMPC << EOF
6389 #include <vorbis/codec.h>
6390 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6392 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6394 if test "$_tremor_internal" = yes ; then
6395 _vorbis=yes
6396 def_vorbis='#define CONFIG_OGGVORBIS 1'
6397 def_tremor='#define CONFIG_TREMOR 1'
6398 _codecmodules="tremor(internal) $_codecmodules"
6399 _res_comment="internal Tremor"
6400 if test "$_tremor_low" = yes ; then
6401 cflags_tremor_low="-D_LOW_ACCURACY_"
6402 _res_comment="internal low accuracy Tremor"
6404 elif test "$_tremor" = yes ; then
6405 _vorbis=yes
6406 def_vorbis='#define CONFIG_OGGVORBIS 1'
6407 def_tremor='#define CONFIG_TREMOR 1'
6408 _codecmodules="tremor(external) $_codecmodules"
6409 _res_comment="external Tremor"
6410 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6411 elif test "$_libvorbis" = yes ; then
6412 _vorbis=yes
6413 def_vorbis='#define CONFIG_OGGVORBIS 1'
6414 _codecmodules="libvorbis $_codecmodules"
6415 _res_comment="libvorbis"
6416 extra_ldflags="$extra_ldflags -lvorbis -logg"
6417 else
6418 _vorbis=no
6419 _nocodecmodules="libvorbis $_nocodecmodules"
6421 echores "$_vorbis"
6423 echocheck "libspeex (version >= 1.1 required)"
6424 if test "$_speex" = auto ; then
6425 _speex=no
6426 cat > $TMPC << EOF
6427 #include <speex/speex.h>
6428 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6430 cc_check -lspeex $_ld_lm && _speex=yes
6432 if test "$_speex" = yes ; then
6433 def_speex='#define CONFIG_SPEEX 1'
6434 extra_ldflags="$extra_ldflags -lspeex"
6435 _codecmodules="speex $_codecmodules"
6436 else
6437 def_speex='#undef CONFIG_SPEEX'
6438 _nocodecmodules="speex $_nocodecmodules"
6440 echores "$_speex"
6442 echocheck "OggTheora support"
6443 if test "$_theora" = auto ; then
6444 _theora=no
6445 cat > $TMPC << EOF
6446 #include <theora/theora.h>
6447 #include <string.h>
6448 int main(void) {
6449 /* Theora is in flux, make sure that all interface routines and datatypes
6450 * exist and work the way we expect it, so we don't break MPlayer. */
6451 ogg_packet op;
6452 theora_comment tc;
6453 theora_info inf;
6454 theora_state st;
6455 yuv_buffer yuv;
6456 int r;
6457 double t;
6459 theora_info_init(&inf);
6460 theora_comment_init(&tc);
6462 return 0;
6464 /* we don't want to execute this kind of nonsense; just for making sure
6465 * that compilation works... */
6466 memset(&op, 0, sizeof(op));
6467 r = theora_decode_header(&inf, &tc, &op);
6468 r = theora_decode_init(&st, &inf);
6469 t = theora_granule_time(&st, op.granulepos);
6470 r = theora_decode_packetin(&st, &op);
6471 r = theora_decode_YUVout(&st, &yuv);
6472 theora_clear(&st);
6474 return 0;
6477 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6478 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6479 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6480 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6481 if test _theora = no; then
6482 _ld_theora="-ltheora -logg"
6483 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6485 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6486 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6487 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6488 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6489 extra_ldflags="$extra_ldflags $_ld_theora" &&
6490 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6491 if test _theora = no; then
6492 _ld_theora="-ltheora -logg"
6493 cc_check tremor/bitwise.c $_ld_theora &&
6494 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6498 if test "$_theora" = yes ; then
6499 def_theora='#define CONFIG_OGGTHEORA 1'
6500 _codecmodules="libtheora $_codecmodules"
6501 # when --enable-theora is forced, we'd better provide a probably sane
6502 # $_ld_theora than nothing
6503 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6504 else
6505 def_theora='#undef CONFIG_OGGTHEORA'
6506 _nocodecmodules="libtheora $_nocodecmodules"
6508 echores "$_theora"
6510 echocheck "internal mp3lib support"
6511 if test "$_mp3lib" = auto ; then
6512 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6514 if test "$_mp3lib" = yes ; then
6515 def_mp3lib='#define CONFIG_MP3LIB 1'
6516 _codecmodules="mp3lib(internal) $_codecmodules"
6517 else
6518 def_mp3lib='#undef CONFIG_MP3LIB'
6519 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6521 echores "$_mp3lib"
6523 echocheck "liba52 support"
6524 if test "$_liba52_internal" = auto ; then
6525 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
6527 def_liba52='#undef CONFIG_LIBA52'
6528 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6529 if test "$_liba52_internal" = yes ; then
6530 _liba52=yes
6531 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6532 _res_comment="internal"
6533 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6534 _liba52=no
6535 cat > $TMPC << EOF
6536 #include <inttypes.h>
6537 #include <a52dec/a52.h>
6538 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6540 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6542 if test "$_liba52" = yes ; then
6543 def_liba52='#define CONFIG_LIBA52 1'
6544 _codecmodules="liba52($_res_comment) $_codecmodules"
6545 else
6546 _nocodecmodules="liba52 $_nocodecmodules"
6548 echores "$_liba52"
6550 echocheck "internal libmpeg2 support"
6551 if test "$_libmpeg2" = auto ; then
6552 _libmpeg2=yes
6553 if alpha && test cc_vendor=gnu; then
6554 case $cc_version in
6555 2*|3.0*|3.1*) # cannot compile MVI instructions
6556 _libmpeg2=no
6557 _res_comment="broken gcc"
6559 esac
6562 if test "$_libmpeg2" = yes ; then
6563 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6564 _codecmodules="libmpeg2(internal) $_codecmodules"
6565 else
6566 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6567 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6569 echores "$_libmpeg2"
6571 echocheck "libdca support"
6572 if test "$_libdca" = auto ; then
6573 _libdca=no
6574 cat > $TMPC << EOF
6575 #include <inttypes.h>
6576 #include <dts.h>
6577 int main(void) { dts_init(0); return 0; }
6579 for _ld_dca in -ldca -ldts ; do
6580 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6581 && _libdca=yes && break
6582 done
6584 if test "$_libdca" = yes ; then
6585 def_libdca='#define CONFIG_LIBDCA 1'
6586 _codecmodules="libdca $_codecmodules"
6587 else
6588 def_libdca='#undef CONFIG_LIBDCA'
6589 _nocodecmodules="libdca $_nocodecmodules"
6591 echores "$_libdca"
6593 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6594 if test "$_musepack" = auto ; then
6595 _musepack=no
6596 cat > $TMPC << EOF
6597 #include <stddef.h>
6598 #include <mpcdec/mpcdec.h>
6599 int main(void) {
6600 mpc_streaminfo info;
6601 mpc_decoder decoder;
6602 mpc_decoder_set_streaminfo(&decoder, &info);
6603 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6604 return 0;
6607 cc_check -lmpcdec $_ld_lm && _musepack=yes
6609 if test "$_musepack" = yes ; then
6610 def_musepack='#define CONFIG_MUSEPACK 1'
6611 extra_ldflags="$extra_ldflags -lmpcdec"
6612 _codecmodules="musepack $_codecmodules"
6613 else
6614 def_musepack='#undef CONFIG_MUSEPACK'
6615 _nocodecmodules="musepack $_nocodecmodules"
6617 echores "$_musepack"
6620 echocheck "FAAC support"
6621 if test "$_faac" = auto ; then
6622 cat > $TMPC <<EOF
6623 #include <inttypes.h>
6624 #include <faac.h>
6625 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6627 _faac=no
6628 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6629 cc_check -O2 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6630 done
6632 if test "$_faac" = yes ; then
6633 def_faac="#define CONFIG_FAAC 1"
6634 _codecmodules="faac $_codecmodules"
6635 else
6636 def_faac="#undef CONFIG_FAAC"
6637 _nocodecmodules="faac $_nocodecmodules"
6639 echores "$_faac"
6642 echocheck "FAAD2 support"
6643 if test "$_faad_internal" = auto ; then
6644 if x86_32 && test cc_vendor=gnu; then
6645 case $cc_version in
6646 3.1*|3.2) # ICE/insn with these versions
6647 _faad_internal=no
6648 _res_comment="broken gcc"
6651 _faad=yes
6652 _faad_internal=yes
6654 esac
6655 else
6656 _faad=yes
6657 _faad_internal=yes
6660 if test "$_faad" = auto ; then
6661 cat > $TMPC << EOF
6662 #include <faad.h>
6663 #ifndef FAAD_MIN_STREAMSIZE
6664 #error Too old version
6665 #endif
6666 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6667 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6669 cc_check -lfaad $_ld_lm && _faad=yes
6672 def_faad='#undef CONFIG_FAAD'
6673 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6674 if test "$_faad_internal" = yes ; then
6675 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6676 _res_comment="internal floating-point"
6677 if test "$_faad_fixed" = yes ; then
6678 # The FIXED_POINT implementation of FAAD2 improves performance
6679 # on some platforms, especially for SBR files.
6680 cflags_faad_fixed="-DFIXED_POINT"
6681 _res_comment="internal fixed-point"
6683 elif test "$_faad" = yes ; then
6684 extra_ldflags="$extra_ldflags -lfaad"
6687 if test "$_faad" = yes ; then
6688 def_faad='#define CONFIG_FAAD 1'
6689 if test "$_faad_internal" = yes ; then
6690 _codecmodules="faad2(internal) $_codecmodules"
6691 else
6692 _codecmodules="faad2 $_codecmodules"
6694 else
6695 _faad=no
6696 _nocodecmodules="faad2 $_nocodecmodules"
6698 echores "$_faad"
6701 echocheck "LADSPA plugin support"
6702 if test "$_ladspa" = auto ; then
6703 cat > $TMPC <<EOF
6704 #include <stdio.h>
6705 #include <ladspa.h>
6706 int main(void) {
6707 const LADSPA_Descriptor *ld = NULL;
6708 return 0;
6711 _ladspa=no
6712 cc_check && _ladspa=yes
6714 if test "$_ladspa" = yes; then
6715 def_ladspa="#define CONFIG_LADSPA 1"
6716 else
6717 def_ladspa="#undef CONFIG_LADSPA"
6719 echores "$_ladspa"
6722 echocheck "libbs2b audio filter support"
6723 if test "$_libbs2b" = auto ; then
6724 cat > $TMPC <<EOF
6725 #include <bs2b.h>
6726 #if BS2B_VERSION_MAJOR < 3
6727 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6728 #endif
6729 int main(void) {
6730 t_bs2bdp filter;
6731 filter=bs2b_open();
6732 bs2b_close(filter);
6733 return 0;
6736 _libbs2b=no
6737 if $_pkg_config --exists libbs2b ; then
6738 _inc_tmp=$($_pkg_config --cflags libbs2b)
6739 _ld_tmp=$($_pkg_config --libs libbs2b)
6740 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6741 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6742 else
6743 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6744 -I/usr/local/include/bs2b ; do
6745 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6746 extra_ldflags="$extra_ldflags -lbs2b"
6747 extra_cflags="$extra_cflags $_inc_tmp"
6748 _libbs2b=yes
6749 break
6751 done
6754 def_libbs2b="#undef CONFIG_LIBBS2B"
6755 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6756 echores "$_libbs2b"
6759 if test -z "$_codecsdir" ; then
6760 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6761 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6762 if test -d "$dir" ; then
6763 _codecsdir="$dir"
6764 break;
6766 done
6768 # Fall back on default directory.
6769 if test -z "$_codecsdir" ; then
6770 _codecsdir="$_libdir/codecs"
6771 mingw32 && _codecsdir="codecs"
6772 os2 && _codecsdir="codecs"
6776 echocheck "Win32 codecs"
6777 if test "$_win32dll" = auto ; then
6778 _win32dll=no
6779 if x86_32 && ! qnx; then
6780 _win32dll=yes
6783 if test "$_win32dll" = yes ; then
6784 def_win32dll='#define CONFIG_WIN32DLL 1'
6785 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6786 _res_comment="using $_win32codecsdir"
6787 if ! win32 ; then
6788 def_win32_loader='#define WIN32_LOADER 1'
6789 _win32_emulation=yes
6790 else
6791 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6792 _res_comment="using native windows"
6794 _codecmodules="win32 $_codecmodules"
6795 else
6796 def_win32dll='#undef CONFIG_WIN32DLL'
6797 def_win32_loader='#undef WIN32_LOADER'
6798 _nocodecmodules="win32 $_nocodecmodules"
6800 echores "$_win32dll"
6803 echocheck "XAnim codecs"
6804 if test "$_xanim" = auto ; then
6805 _xanim=no
6806 _res_comment="dynamic loader support needed"
6807 if test "$_dl" = yes ; then
6808 _xanim=yes
6811 if test "$_xanim" = yes ; then
6812 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6813 def_xanim='#define CONFIG_XANIM 1'
6814 def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6815 _codecmodules="xanim $_codecmodules"
6816 _res_comment="using $_xanimcodecsdir"
6817 else
6818 def_xanim='#undef CONFIG_XANIM'
6819 def_xanim_path='#undef XACODEC_PATH'
6820 _nocodecmodules="xanim $_nocodecmodules"
6822 echores "$_xanim"
6825 echocheck "RealPlayer codecs"
6826 if test "$_real" = auto ; then
6827 _real=no
6828 _res_comment="dynamic loader support needed"
6829 if test "$_dl" = yes || test "$_win32dll" = yes &&
6830 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6831 _real=yes
6834 if test "$_real" = yes ; then
6835 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6836 def_real='#define CONFIG_REALCODECS 1'
6837 def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6838 _codecmodules="real $_codecmodules"
6839 _res_comment="using $_realcodecsdir"
6840 else
6841 def_real='#undef CONFIG_REALCODECS'
6842 def_real_path="#undef REALCODEC_PATH"
6843 _nocodecmodules="real $_nocodecmodules"
6845 echores "$_real"
6848 echocheck "QuickTime codecs"
6849 _qtx_emulation=no
6850 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6851 if test "$_qtx" = auto ; then
6852 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6854 if test "$_qtx" = yes ; then
6855 def_qtx='#define CONFIG_QTX_CODECS 1'
6856 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6857 _codecmodules="qtx $_codecmodules"
6858 darwin || win32 || _qtx_emulation=yes
6859 else
6860 def_qtx='#undef CONFIG_QTX_CODECS'
6861 _nocodecmodules="qtx $_nocodecmodules"
6863 echores "$_qtx"
6865 echocheck "Nemesi Streaming Media libraries"
6866 if test "$_nemesi" = auto && test "$_network" = yes ; then
6867 _nemesi=no
6868 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6869 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6870 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6871 _nemesi=yes
6874 if test "$_nemesi" = yes; then
6875 _native_rtsp=no
6876 def_nemesi='#define CONFIG_LIBNEMESI 1'
6877 _inputmodules="nemesi $_inputmodules"
6878 else
6879 _native_rtsp="$_network"
6880 _nemesi=no
6881 def_nemesi='#undef CONFIG_LIBNEMESI'
6882 _noinputmodules="nemesi $_noinputmodules"
6884 echores "$_nemesi"
6886 echocheck "LIVE555 Streaming Media libraries"
6887 if test "$_live" = auto && test "$_network" = yes ; then
6888 cat > $TMPCPP << EOF
6889 #include <liveMedia.hh>
6890 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6891 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6892 #endif
6893 int main(void) { return 0; }
6896 _live=no
6897 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
6898 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6899 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6900 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6901 $_livelibdir/groupsock/libgroupsock.a \
6902 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6903 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6904 $extra_ldflags -lstdc++" \
6905 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6906 -I$_livelibdir/UsageEnvironment/include \
6907 -I$_livelibdir/BasicUsageEnvironment/include \
6908 -I$_livelibdir/groupsock/include" && \
6909 _live=yes && break
6910 done
6911 if test "$_live" != yes ; then
6912 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6913 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6914 _live_dist=yes
6918 if test "$_live" = yes && test "$_network" = yes; then
6919 test $_livelibdir && _res_comment="using $_livelibdir"
6920 def_live='#define CONFIG_LIVE555 1'
6921 _inputmodules="live555 $_inputmodules"
6922 elif test "$_live_dist" = yes && test "$_network" = yes; then
6923 _res_comment="using distribution version"
6924 _live="yes"
6925 def_live='#define CONFIG_LIVE555 1'
6926 extra_ldflags="$extra_ldflags $ld_tmp"
6927 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6928 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6929 _inputmodules="live555 $_inputmodules"
6930 else
6931 _live=no
6932 def_live='#undef CONFIG_LIVE555'
6933 _noinputmodules="live555 $_noinputmodules"
6935 echores "$_live"
6938 echocheck "FFmpeg libavutil"
6939 if test "$_libavutil" = auto ; then
6940 _libavutil=no
6941 cat > $TMPC << EOF
6942 #include <libavutil/common.h>
6943 int main(void) { av_clip(1, 1, 1); return 0; }
6945 if $_pkg_config --exists libavutil ; then
6946 _inc_libavutil=$($_pkg_config --cflags libavutil)
6947 _ld_tmp=$($_pkg_config --libs libavutil)
6948 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6949 && _libavutil=yes
6950 elif cc_check -lavutil $_ld_lm ; then
6951 extra_ldflags="$extra_ldflags -lavutil"
6952 _libavutil=yes
6955 def_libavutil='#undef CONFIG_LIBAVUTIL'
6956 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6957 # libavutil is not available, but it is mandatory ...
6958 if test "$_libavutil" = no ; then
6959 die "You need libavutil, MPlayer will not compile without!"
6961 echores "$_libavutil"
6963 echocheck "FFmpeg libavcodec"
6964 if test "$_libavcodec" = auto ; then
6965 _libavcodec=no
6966 cat > $TMPC << EOF
6967 #include <libavcodec/avcodec.h>
6968 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6970 if $_pkg_config --exists libavcodec ; then
6971 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6972 _ld_tmp=$($_pkg_config --libs libavcodec)
6973 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6974 && _libavcodec=yes
6975 elif cc_check -lavcodec $_ld_lm ; then
6976 extra_ldflags="$extra_ldflags -lavcodec"
6977 _libavcodec=yes
6980 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6981 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6982 if test "$_libavcodec" = yes ; then
6983 _codecmodules="libavcodec $_codecmodules"
6984 else
6985 _nocodecmodules="libavcodec $_nocodecmodules"
6987 echores "$_libavcodec"
6989 echocheck "FFmpeg libavformat"
6990 if test "$_libavformat" = auto ; then
6991 _libavformat=no
6992 cat > $TMPC <<EOF
6993 #include <libavformat/avformat.h>
6994 #include <libavcodec/opt.h>
6995 int main(void) { av_alloc_format_context(); return 0; }
6997 if $_pkg_config --exists libavformat ; then
6998 _inc_libavformat=$($_pkg_config --cflags libavformat)
6999 _ld_tmp=$($_pkg_config --libs libavformat)
7000 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
7001 && _libavformat=yes
7002 elif cc_check $_ld_lm -lavformat ; then
7003 extra_ldflags="$extra_ldflags -lavformat"
7004 _libavformat=yes
7007 def_libavformat='#undef CONFIG_LIBAVFORMAT'
7008 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
7009 echores "$_libavformat"
7011 echocheck "FFmpeg libpostproc"
7012 if test "$_libpostproc" = auto ; then
7013 _libpostproc=no
7014 cat > $TMPC << EOF
7015 #include <inttypes.h>
7016 #include <libpostproc/postprocess.h>
7017 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
7019 if $_pkg_config --exists libpostproc ; then
7020 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
7021 _ld_tmp=$($_pkg_config --libs libpostproc)
7022 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
7023 && _libpostproc=yes
7024 elif cc_check -lpostproc $_ld_lm ; then
7025 extra_ldflags="$extra_ldflags -lpostproc"
7026 _libpostproc=yes
7029 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
7030 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
7031 echores "$_libpostproc"
7033 echocheck "FFmpeg libswscale"
7034 if test "$_libswscale" = auto ; then
7035 _libswscale=no
7036 cat > $TMPC << EOF
7037 #include <libswscale/swscale.h>
7038 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7040 if $_pkg_config --exists libswscale ; then
7041 _inc_libswscale=$($_pkg_config --cflags libswscale)
7042 _ld_tmp=$($_pkg_config --libs libswscale)
7043 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
7044 && _libswscale=yes
7045 elif cc_check -lswscale ; then
7046 extra_ldflags="$extra_ldflags -lswscale"
7047 _libswscale=yes
7050 def_libswscale='#undef CONFIG_LIBSWSCALE'
7051 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7052 echores "$_libswscale"
7054 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
7055 if ! test -z "$_ffmpeg_source" ; then
7056 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
7059 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
7060 if ! test -z "$_ffmpeg_source" ; then
7061 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
7064 echocheck "libdv-0.9.5+"
7065 if test "$_libdv" = auto ; then
7066 _libdv=no
7067 cat > $TMPC <<EOF
7068 #include <libdv/dv.h>
7069 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7071 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7073 if test "$_libdv" = yes ; then
7074 def_libdv='#define CONFIG_LIBDV095 1'
7075 extra_ldflags="$extra_ldflags -ldv"
7076 _codecmodules="libdv $_codecmodules"
7077 else
7078 def_libdv='#undef CONFIG_LIBDV095'
7079 _nocodecmodules="libdv $_nocodecmodules"
7081 echores "$_libdv"
7084 echocheck "Xvid"
7085 if test "$_xvid" = auto ; then
7086 _xvid=no
7087 cat > $TMPC << EOF
7088 #include <xvid.h>
7089 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7091 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7092 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7093 done
7096 if test "$_xvid" = yes ; then
7097 def_xvid='#define CONFIG_XVID4 1'
7098 _codecmodules="xvid $_codecmodules"
7099 else
7100 def_xvid='#undef CONFIG_XVID4'
7101 _nocodecmodules="xvid $_nocodecmodules"
7103 echores "$_xvid"
7105 echocheck "x264"
7106 if test "$_x264" = auto ; then
7107 cat > $TMPC << EOF
7108 #include <inttypes.h>
7109 #include <x264.h>
7110 #if X264_BUILD < 79
7111 #error We do not support old versions of x264. Get the latest from git.
7112 #endif
7113 int main(void) { x264_encoder_open((void*)0); return 0; }
7115 _x264=no
7116 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7117 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7118 done
7121 if test "$_x264" = yes ; then
7122 def_x264='#define CONFIG_X264 1'
7123 _codecmodules="x264 $_codecmodules"
7124 else
7125 def_x264='#undef CONFIG_X264'
7126 _nocodecmodules="x264 $_nocodecmodules"
7128 echores "$_x264"
7130 echocheck "libnut"
7131 if test "$_libnut" = auto ; then
7132 cat > $TMPC << EOF
7133 #include <stdio.h>
7134 #include <stdlib.h>
7135 #include <inttypes.h>
7136 #include <libnut.h>
7137 nut_context_tt * nut;
7138 int main(void) { (void)nut_error(0); return 0; }
7140 _libnut=no
7141 cc_check -lnut && _libnut=yes
7144 if test "$_libnut" = yes ; then
7145 def_libnut='#define CONFIG_LIBNUT 1'
7146 extra_ldflags="$extra_ldflags -lnut"
7147 else
7148 def_libnut='#undef CONFIG_LIBNUT'
7150 echores "$_libnut"
7152 # These VO checks must be done after libavcodec/libswscale one
7153 echocheck "/dev/mga_vid"
7154 if test "$_mga" = auto ; then
7155 _mga=no
7156 test -c /dev/mga_vid && _mga=yes
7158 if test "$_mga" = yes ; then
7159 if test "$_libswscale_internals" = yes ; then
7160 def_mga='#define CONFIG_MGA 1'
7161 _vomodules="mga $_vomodules"
7162 else
7163 _res_comment="libswscale internal headers are required by mga, sorry"
7164 def_mga='#undef CONFIG_MGA'
7165 _novomodules="mga $_novomodules"
7167 else
7168 def_mga='#undef CONFIG_MGA'
7169 _novomodules="mga $_novomodules"
7171 echores "$_mga"
7174 echocheck "xmga"
7175 if test "$_xmga" = auto ; then
7176 _xmga=no
7177 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7179 if test "$_xmga" = yes ; then
7180 if test "$_libswscale_internals" = yes ; then
7181 def_xmga='#define CONFIG_XMGA 1'
7182 _vomodules="xmga $_vomodules"
7183 else
7184 _res_comment="libswscale internal headers are required by mga, sorry"
7185 def_xmga='#undef CONFIG_XMGA'
7186 _novomodules="xmga $_novomodules"
7188 else
7189 def_xmga='#undef CONFIG_XMGA'
7190 _novomodules="xmga $_novomodules"
7192 echores "$_xmga"
7194 echocheck "zr"
7195 if test "$_zr" = auto ; then
7196 #36067's seem to identify themselves as 36057PQC's, so the line
7197 #below should work for 36067's and 36057's.
7198 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7199 _zr=yes
7200 else
7201 _zr=no
7204 if test "$_zr" = yes ; then
7205 if test "$_libavcodec_internals" = yes ; then
7206 def_zr='#define CONFIG_ZR 1'
7207 _vomodules="zr zr2 $_vomodules"
7208 else
7209 _res_comment="libavcodec internal headers are required by zr, sorry"
7210 _novomodules="zr $_novomodules"
7211 def_zr='#undef CONFIG_ZR'
7213 else
7214 def_zr='#undef CONFIG_ZR'
7215 _novomodules="zr zr2 $_novomodules"
7217 echores "$_zr"
7219 # mencoder requires (optional) those libs: libmp3lame
7220 if test "$_mencoder" != no ; then
7222 echocheck "libmp3lame"
7223 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7224 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7225 if test "$_mp3lame" = auto ; then
7226 _mp3lame=no
7227 cat > $TMPC <<EOF
7228 #include <lame/lame.h>
7229 int main(void) { lame_version_t lv; (void) lame_init();
7230 get_lame_version_numerical(&lv);
7231 return 0; }
7233 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7235 if test "$_mp3lame" = yes ; then
7236 def_mp3lame="#define CONFIG_MP3LAME 1"
7237 _ld_mp3lame=-lmp3lame
7238 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7239 cat > $TMPC << EOF
7240 #include <lame/lame.h>
7241 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7243 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7244 cat > $TMPC << EOF
7245 #include <lame/lame.h>
7246 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7248 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7249 else
7250 def_mp3lame='#undef CONFIG_MP3LAME'
7252 echores "$_mp3lame"
7254 fi # test "$_mencoder" != no
7256 echocheck "mencoder"
7257 if test "$_mencoder" = yes ; then
7258 def_muxers='#define CONFIG_MUXERS 1'
7259 else
7260 def_muxers='#define CONFIG_MUXERS 0'
7262 echores "$_mencoder"
7265 echocheck "UnRAR executable"
7266 if test "$_unrar_exec" = auto ; then
7267 _unrar_exec="yes"
7268 mingw32 && _unrar_exec="no"
7270 if test "$_unrar_exec" = yes ; then
7271 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7272 else
7273 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7275 echores "$_unrar_exec"
7277 echocheck "TV interface"
7278 if test "$_tv" = yes ; then
7279 def_tv='#define CONFIG_TV 1'
7280 _inputmodules="tv $_inputmodules"
7281 else
7282 _noinputmodules="tv $_noinputmodules"
7283 def_tv='#undef CONFIG_TV'
7285 echores "$_tv"
7288 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7289 echocheck "*BSD BT848 bt8xx header"
7290 _ioctl_bt848_h=no
7291 for file in "machine/ioctl_bt848.h" \
7292 "dev/bktr/ioctl_bt848.h" \
7293 "dev/video/bktr/ioctl_bt848.h" \
7294 "dev/ic/bt8xx.h" ; do
7295 cat > $TMPC <<EOF
7296 #include <sys/types.h>
7297 #include <sys/ioctl.h>
7298 #include <$file>
7299 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7301 if cc_check ; then
7302 _ioctl_bt848_h=yes
7303 _ioctl_bt848_h_name="$file"
7304 break;
7306 done
7307 if test "$_ioctl_bt848_h" = yes ; then
7308 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7309 _res_comment="using $_ioctl_bt848_h_name"
7310 else
7311 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7313 echores "$_ioctl_bt848_h"
7315 echocheck "*BSD ioctl_meteor.h"
7316 _ioctl_meteor_h=no
7317 for file in "machine/ioctl_meteor.h" \
7318 "dev/bktr/ioctl_meteor.h" \
7319 "dev/video/bktr/ioctl_meteor.h" ; do
7320 cat > $TMPC <<EOF
7321 #include <sys/types.h>
7322 #include <$file>
7323 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7325 if cc_check ; then
7326 _ioctl_meteor_h=yes
7327 _ioctl_meteor_h_name="$file"
7328 break;
7330 done
7331 if test "$_ioctl_meteor_h" = yes ; then
7332 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7333 _res_comment="using $_ioctl_meteor_h_name"
7334 else
7335 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7337 echores "$_ioctl_meteor_h"
7339 echocheck "*BSD BrookTree 848 TV interface"
7340 if test "$_tv_bsdbt848" = auto ; then
7341 _tv_bsdbt848=no
7342 if test "$_tv" = yes ; then
7343 cat > $TMPC <<EOF
7344 #include <sys/types.h>
7345 $def_ioctl_meteor_h_name
7346 $def_ioctl_bt848_h_name
7347 #ifdef IOCTL_METEOR_H_NAME
7348 #include IOCTL_METEOR_H_NAME
7349 #endif
7350 #ifdef IOCTL_BT848_H_NAME
7351 #include IOCTL_BT848_H_NAME
7352 #endif
7353 int main(void) {
7354 ioctl(0, METEORSINPUT, 0);
7355 ioctl(0, TVTUNER_GETFREQ, 0);
7356 return 0;
7359 cc_check && _tv_bsdbt848=yes
7362 if test "$_tv_bsdbt848" = yes ; then
7363 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7364 _inputmodules="tv-bsdbt848 $_inputmodules"
7365 else
7366 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7367 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7369 echores "$_tv_bsdbt848"
7370 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7373 echocheck "DirectShow TV interface"
7374 if test "$_tv_dshow" = auto ; then
7375 _tv_dshow=no
7376 if test "$_tv" = yes && win32 ; then
7377 cat > $TMPC <<EOF
7378 #include <ole2.h>
7379 int main(void) {
7380 void* p;
7381 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7382 return 0;
7385 cc_check -lole32 -luuid && _tv_dshow=yes
7388 if test "$_tv_dshow" = yes ; then
7389 _inputmodules="tv-dshow $_inputmodules"
7390 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7391 extra_ldflags="$extra_ldflags -lole32 -luuid"
7392 else
7393 _noinputmodules="tv-dshow $_noinputmodules"
7394 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7396 echores "$_tv_dshow"
7399 echocheck "Video 4 Linux TV interface"
7400 if test "$_tv_v4l1" = auto ; then
7401 _tv_v4l1=no
7402 if test "$_tv" = yes && linux ; then
7403 cat > $TMPC <<EOF
7404 #include <stdlib.h>
7405 #include <linux/videodev.h>
7406 int main(void) { return 0; }
7408 cc_check && _tv_v4l1=yes
7411 if test "$_tv_v4l1" = yes ; then
7412 _audio_input=yes
7413 _tv_v4l=yes
7414 def_tv_v4l='#define CONFIG_TV_V4L 1'
7415 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7416 _inputmodules="tv-v4l $_inputmodules"
7417 else
7418 _noinputmodules="tv-v4l1 $_noinputmodules"
7419 def_tv_v4l='#undef CONFIG_TV_V4L'
7421 echores "$_tv_v4l1"
7424 echocheck "Video 4 Linux 2 TV interface"
7425 if test "$_tv_v4l2" = auto ; then
7426 _tv_v4l2=no
7427 if test "$_tv" = yes && linux ; then
7428 cat > $TMPC <<EOF
7429 #include <stdlib.h>
7430 #include <linux/types.h>
7431 #include <linux/videodev2.h>
7432 int main(void) { return 0; }
7434 cc_check && _tv_v4l2=yes
7437 if test "$_tv_v4l2" = yes ; then
7438 _audio_input=yes
7439 _tv_v4l=yes
7440 def_tv_v4l='#define CONFIG_TV_V4L 1'
7441 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7442 _inputmodules="tv-v4l2 $_inputmodules"
7443 else
7444 _noinputmodules="tv-v4l2 $_noinputmodules"
7445 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7447 echores "$_tv_v4l2"
7450 echocheck "Radio interface"
7451 if test "$_radio" = yes ; then
7452 def_radio='#define CONFIG_RADIO 1'
7453 _inputmodules="radio $_inputmodules"
7454 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7455 _radio_capture=no
7457 if test "$_radio_capture" = yes ; then
7458 _audio_input=yes
7459 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7460 else
7461 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7463 else
7464 _noinputmodules="radio $_noinputmodules"
7465 def_radio='#undef CONFIG_RADIO'
7466 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7467 _radio_capture=no
7469 echores "$_radio"
7470 echocheck "Capture for Radio interface"
7471 echores "$_radio_capture"
7473 echocheck "Video 4 Linux 2 Radio interface"
7474 if test "$_radio_v4l2" = auto ; then
7475 _radio_v4l2=no
7476 if test "$_radio" = yes && linux ; then
7477 cat > $TMPC <<EOF
7478 #include <stdlib.h>
7479 #include <linux/types.h>
7480 #include <linux/videodev2.h>
7481 int main(void) { return 0; }
7483 cc_check && _radio_v4l2=yes
7486 if test "$_radio_v4l2" = yes ; then
7487 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7488 else
7489 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7491 echores "$_radio_v4l2"
7493 echocheck "Video 4 Linux Radio interface"
7494 if test "$_radio_v4l" = auto ; then
7495 _radio_v4l=no
7496 if test "$_radio" = yes && linux ; then
7497 cat > $TMPC <<EOF
7498 #include <stdlib.h>
7499 #include <linux/videodev.h>
7500 int main(void) { return 0; }
7502 cc_check && _radio_v4l=yes
7505 if test "$_radio_v4l" = yes ; then
7506 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7507 else
7508 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7510 echores "$_radio_v4l"
7512 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7513 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7514 echocheck "*BSD BrookTree 848 Radio interface"
7515 _radio_bsdbt848=no
7516 cat > $TMPC <<EOF
7517 #include <sys/types.h>
7518 $def_ioctl_bt848_h_name
7519 #ifdef IOCTL_BT848_H_NAME
7520 #include IOCTL_BT848_H_NAME
7521 #endif
7522 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7524 cc_check && _radio_bsdbt848=yes
7525 echores "$_radio_bsdbt848"
7526 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7528 if test "$_radio_bsdbt848" = yes ; then
7529 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7530 else
7531 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7534 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7535 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7536 die "Radio driver requires BSD BT848, V4L or V4L2!"
7539 echocheck "Video 4 Linux 2 MPEG PVR interface"
7540 if test "$_pvr" = auto ; then
7541 _pvr=no
7542 if test "$_tv_v4l2" = yes && linux ; then
7543 cat > $TMPC <<EOF
7544 #include <stdlib.h>
7545 #include <inttypes.h>
7546 #include <linux/types.h>
7547 #include <linux/videodev2.h>
7548 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7550 cc_check && _pvr=yes
7553 if test "$_pvr" = yes ; then
7554 def_pvr='#define CONFIG_PVR 1'
7555 _inputmodules="pvr $_inputmodules"
7556 else
7557 _noinputmodules="pvr $_noinputmodules"
7558 def_pvr='#undef CONFIG_PVR'
7560 echores "$_pvr"
7563 echocheck "ftp"
7564 if ! beos && test "$_ftp" = yes ; then
7565 def_ftp='#define CONFIG_FTP 1'
7566 _inputmodules="ftp $_inputmodules"
7567 else
7568 _noinputmodules="ftp $_noinputmodules"
7569 def_ftp='#undef CONFIG_FTP'
7571 echores "$_ftp"
7573 echocheck "vstream client"
7574 if test "$_vstream" = auto ; then
7575 _vstream=no
7576 cat > $TMPC <<EOF
7577 #include <vstream-client.h>
7578 void vstream_error(const char *format, ... ) {}
7579 int main(void) { vstream_start(); return 0; }
7581 cc_check -lvstream-client && _vstream=yes
7583 if test "$_vstream" = yes ; then
7584 def_vstream='#define CONFIG_VSTREAM 1'
7585 _inputmodules="vstream $_inputmodules"
7586 extra_ldflags="$extra_ldflags -lvstream-client"
7587 else
7588 _noinputmodules="vstream $_noinputmodules"
7589 def_vstream='#undef CONFIG_VSTREAM'
7591 echores "$_vstream"
7594 echocheck "OSD menu"
7595 if test "$_menu" = yes ; then
7596 def_menu='#define CONFIG_MENU 1'
7597 test $_dvbin = "yes" && _menu_dvbin=yes
7598 else
7599 def_menu='#undef CONFIG_MENU'
7600 _menu_dvbin=no
7602 echores "$_menu"
7605 echocheck "Subtitles sorting"
7606 if test "$_sortsub" = yes ; then
7607 def_sortsub='#define CONFIG_SORTSUB 1'
7608 else
7609 def_sortsub='#undef CONFIG_SORTSUB'
7611 echores "$_sortsub"
7614 echocheck "XMMS inputplugin support"
7615 if test "$_xmms" = yes ; then
7616 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7617 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7618 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7619 else
7620 _xmmsplugindir=/usr/lib/xmms/Input
7621 _xmmslibdir=/usr/lib
7624 def_xmms='#define CONFIG_XMMS 1'
7625 if darwin ; then
7626 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7627 else
7628 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7630 else
7631 def_xmms='#undef CONFIG_XMMS'
7633 echores "$_xmms"
7635 if test "$_charset" != "noconv" ; then
7636 def_charset="#define MSG_CHARSET \"$_charset\""
7637 else
7638 def_charset="#undef MSG_CHARSET"
7639 _charset="UTF-8"
7642 #############################################################################
7644 echocheck "automatic gdb attach"
7645 if test "$_crash_debug" = yes ; then
7646 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7647 else
7648 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7649 _crash_debug=no
7651 echores "$_crash_debug"
7653 echocheck "compiler support for noexecstack"
7654 cat > $TMPC <<EOF
7655 int main(void) { return 0; }
7657 if cc_check -Wl,-z,noexecstack ; then
7658 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7659 echores "yes"
7660 else
7661 echores "no"
7664 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7665 if cc_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7666 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7667 echores "yes"
7668 else
7669 echores "no"
7673 # Dynamic linking flags
7674 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7675 _ld_dl_dynamic=''
7676 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7677 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7678 _ld_dl_dynamic='-rdynamic'
7681 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7682 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7683 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7685 def_debug='#undef MP_DEBUG'
7686 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7689 echocheck "joystick"
7690 def_joystick='#undef CONFIG_JOYSTICK'
7691 if test "$_joystick" = yes ; then
7692 if linux ; then
7693 # TODO add some check
7694 def_joystick='#define CONFIG_JOYSTICK 1'
7695 else
7696 _joystick="no"
7697 _res_comment="unsupported under $system_name"
7700 echores "$_joystick"
7702 echocheck "lirc"
7703 if test "$_lirc" = auto ; then
7704 _lirc=no
7705 cat > $TMPC <<EOF
7706 #include <lirc/lirc_client.h>
7707 int main(void) { return 0; }
7709 cc_check -llirc_client && _lirc=yes
7711 if test "$_lirc" = yes ; then
7712 def_lirc='#define CONFIG_LIRC 1'
7713 libs_mplayer="$libs_mplayer -llirc_client"
7714 else
7715 def_lirc='#undef CONFIG_LIRC'
7717 echores "$_lirc"
7719 echocheck "lircc"
7720 if test "$_lircc" = auto ; then
7721 _lircc=no
7722 cat > $TMPC <<EOF
7723 #include <lirc/lircc.h>
7724 int main(void) { return 0; }
7726 cc_check -llircc && _lircc=yes
7728 if test "$_lircc" = yes ; then
7729 def_lircc='#define CONFIG_LIRCC 1'
7730 libs_mplayer="$libs_mplayer -llircc"
7731 else
7732 def_lircc='#undef CONFIG_LIRCC'
7734 echores "$_lircc"
7736 if arm; then
7737 # Detect maemo development platform libraries availability (http://www.maemo.org),
7738 # they are used when run on Nokia 770|8x0
7739 echocheck "maemo (Nokia 770|8x0)"
7740 if test "$_maemo" = auto ; then
7741 _maemo=no
7742 cat > $TMPC << EOF
7743 #include <libosso.h>
7744 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7746 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7748 if test "$_maemo" = yes ; then
7749 def_maemo='#define CONFIG_MAEMO 1'
7750 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7751 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7752 else
7753 def_maemo='#undef CONFIG_MAEMO'
7755 echores "$_maemo"
7758 #############################################################################
7760 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7761 # the OMF format needs to come after the 'extern symbol prefix' check, which
7762 # uses nm.
7763 if os2 ; then
7764 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7767 # linker paths should be the same for mencoder and mplayer
7768 _ld_tmp=""
7769 for I in $libs_mplayer ; do
7770 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7771 if test -z "$_tmp" ; then
7772 extra_ldflags="$extra_ldflags $I"
7773 else
7774 _ld_tmp="$_ld_tmp $I"
7776 done
7777 libs_mplayer=$_ld_tmp
7780 #############################################################################
7781 # 64 bit file offsets?
7782 if test "$_largefiles" = yes || freebsd ; then
7783 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7784 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7785 # dvdread support requires this (for off64_t)
7786 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7790 CXXFLAGS=" $CFLAGS -Iffmpeg -D__STDC_LIMIT_MACROS"
7792 # This must be the last test to be performed. Any other tests following it
7793 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7794 # against libdvdread (to permit MPlayer to use its own copy of the library).
7795 # So any compilation using the flags added here but not linking against
7796 # libdvdread can fail.
7797 echocheck "DVD support (libdvdnav)"
7798 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7799 _dvdnav=no
7801 dvdnav_internal=no
7802 if test "$_dvdnav" = auto ; then
7803 if test "$_dvdread_internal" = yes ; then
7804 _dvdnav=yes
7805 dvdnav_internal=yes
7806 _res_comment="internal"
7807 else
7808 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7811 if test "$_dvdnav" = auto ; then
7812 cat > $TMPC <<EOF
7813 #include <inttypes.h>
7814 #include <dvdnav/dvdnav.h>
7815 int main(void) { dvdnav_t *dvd=0; return 0; }
7817 _dvdnav=no
7818 _dvdnavdir=$($_dvdnavconfig --cflags)
7819 _dvdnavlibs=$($_dvdnavconfig --libs)
7820 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7822 if test "$_dvdnav" = yes ; then
7823 _largefiles=yes
7824 def_dvdnav='#define CONFIG_DVDNAV 1'
7825 if test "$dvdnav_internal" = yes ; then
7826 cflags_libdvdnav="-Ilibdvdnav"
7827 _inputmodules="dvdnav(internal) $_inputmodules"
7828 else
7829 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7830 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7831 _inputmodules="dvdnav $_inputmodules"
7833 else
7834 def_dvdnav='#undef CONFIG_DVDNAV'
7835 _noinputmodules="dvdnav $_noinputmodules"
7837 echores "$_dvdnav"
7839 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7840 # Read dvdnav comment above.
7842 #############################################################################
7843 echo "Creating config.mak"
7844 cat > config.mak << EOF
7845 # -------- Generated by configure -----------
7847 # Ensure that locale settings do not interfere with shell commands.
7848 export LC_ALL = C
7850 CONFIGURATION = $_configuration
7852 CHARSET = $_charset
7853 DOC_LANGS = $language_doc
7854 DOC_LANG_ALL = $doc_lang_all
7855 MAN_LANGS = $language_man
7856 MAN_LANG_ALL = $man_lang_all
7858 prefix = \$(DESTDIR)$_prefix
7859 BINDIR = \$(DESTDIR)$_bindir
7860 DATADIR = \$(DESTDIR)$_datadir
7861 LIBDIR = \$(DESTDIR)$_libdir
7862 MANDIR = \$(DESTDIR)$_mandir
7863 CONFDIR = \$(DESTDIR)$_confdir
7864 LOCALEDIR = \$(DESTDIR)$_localedir
7866 AR = $_ar
7867 AS = $_cc
7868 CC = $_cc
7869 CXX = $_cc
7870 HOST_CC = $_host_cc
7871 YASM = $_yasm
7872 INSTALL = $_install
7873 INSTALLSTRIP = $_install_strip
7874 RANLIB = $_ranlib
7875 WINDRES = $_windres
7877 CFLAGS = $CFLAGS $extra_cflags
7878 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7879 CFLAGS_DHAHELPER = $cflags_dhahelper
7880 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7881 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7882 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7883 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7884 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7885 CFLAGS_STACKREALIGN = $cflags_stackrealign
7886 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7887 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7888 YASMFLAGS = $YASMFLAGS
7890 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7891 EXTRALIBS_MPLAYER = $libs_mplayer
7892 EXTRALIBS_MENCODER = $libs_mencoder
7894 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 &,"
7895 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 &,"
7897 GETCH = $_getch
7898 TIMER = $_timer
7900 EXESUF = $_exesuf
7901 EXESUFS_ALL = .exe
7903 $_target_arch
7904 $_target_subarch
7905 $(echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/')
7907 MENCODER = $_mencoder
7908 MPLAYER = $_mplayer
7910 NEED_GETTIMEOFDAY = $_need_gettimeofday
7911 NEED_GLOB = $_need_glob
7912 NEED_MMAP = $_need_mmap
7913 NEED_SETENV = $_need_setenv
7914 NEED_SHMEM = $_need_shmem
7915 NEED_STRSEP = $_need_strsep
7916 NEED_SWAB = $_need_swab
7917 NEED_VSSCANF = $_need_vsscanf
7919 # features
7920 3DFX = $_3dfx
7921 AA = $_aa
7922 ALSA1X = $_alsa1x
7923 ALSA9 = $_alsa9
7924 ALSA5 = $_alsa5
7925 APPLE_IR = $_apple_ir
7926 APPLE_REMOTE = $_apple_remote
7927 ARTS = $_arts
7928 AUDIO_INPUT = $_audio_input
7929 BITMAP_FONT = $_bitmap_font
7930 BL = $_bl
7931 CACA = $_caca
7932 CDDA = $_cdda
7933 CDDB = $_cddb
7934 COREAUDIO = $_coreaudio
7935 COREVIDEO = $_corevideo
7936 DART = $_dart
7937 DFBMGA = $_dfbmga
7938 DGA = $_dga
7939 DIRECT3D = $_direct3d
7940 DIRECTFB = $_directfb
7941 DIRECTX = $_directx
7942 DVBIN = $_dvbin
7943 DVDNAV = $_dvdnav
7944 DVDNAV_INTERNAL = $dvdnav_internal
7945 DVDREAD = $_dvdread
7946 DVDREAD_INTERNAL = $_dvdread_internal
7947 DXR2 = $_dxr2
7948 DXR3 = $_dxr3
7949 ESD = $_esd
7950 FAAC=$_faac
7951 FAAD = $_faad
7952 FAAD_INTERNAL = $_faad_internal
7953 FASTMEMCPY = $_fastmemcpy
7954 FBDEV = $_fbdev
7955 FREETYPE = $_freetype
7956 FTP = $_ftp
7957 GIF = $_gif
7958 GGI = $_ggi
7959 GL = $_gl
7960 GL_WIN32 = $_gl_win32
7961 GL_X11 = $_gl_x11
7962 MATRIXVIEW = $matrixview
7963 HAVE_POSIX_SELECT = $_posix_select
7964 HAVE_SYS_MMAN_H = $_mman
7965 IVTV = $_ivtv
7966 JACK = $_jack
7967 JOYSTICK = $_joystick
7968 JPEG = $_jpeg
7969 KAI = $_kai
7970 KVA = $_kva
7971 LADSPA = $_ladspa
7972 LIBA52 = $_liba52
7973 LIBA52_INTERNAL = $_liba52_internal
7974 LIBASS = $_ass
7975 LIBBS2B = $_libbs2b
7976 LIBDCA = $_libdca
7977 LIBDV = $_libdv
7978 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7979 LIBLZO = $_liblzo
7980 LIBMAD = $_mad
7981 LIBMENU = $_menu
7982 LIBMENU_DVBIN = $_menu_dvbin
7983 LIBMPEG2 = $_libmpeg2
7984 LIBNEMESI = $_nemesi
7985 LIBNUT = $_libnut
7986 LIBSMBCLIENT = $_smb
7987 LIBTHEORA = $_theora
7988 LIRC = $_lirc
7989 LIVE555 = $_live
7990 MACOSX_BUNDLE = $_macosx_bundle
7991 MACOSX_FINDER = $_macosx_finder
7992 MD5SUM = $_md5sum
7993 MGA = $_mga
7994 MNG = $_mng
7995 MP3LAME = $_mp3lame
7996 MP3LIB = $_mp3lib
7997 MUSEPACK = $_musepack
7998 NAS = $_nas
7999 NATIVE_RTSP = $_native_rtsp
8000 NETWORK = $_network
8001 OPENAL = $_openal
8002 OSS = $_ossaudio
8003 PE_EXECUTABLE = $_pe_executable
8004 PNG = $_png
8005 PNM = $_pnm
8006 PRIORITY = $_priority
8007 PULSE = $_pulse
8008 PVR = $_pvr
8009 QTX_CODECS = $_qtx
8010 QTX_CODECS_WIN32 = $_qtx_codecs_win32
8011 QTX_EMULATION = $_qtx_emulation
8012 QUARTZ = $_quartz
8013 RADIO=$_radio
8014 RADIO_CAPTURE=$_radio_capture
8015 REAL_CODECS = $_real
8016 S3FB = $_s3fb
8017 SDL = $_sdl
8018 SPEEX = $_speex
8019 STREAM_CACHE = $_stream_cache
8020 SGIAUDIO = $_sgiaudio
8021 SUNAUDIO = $_sunaudio
8022 SVGA = $_svga
8023 TDFXFB = $_tdfxfb
8024 TDFXVID = $_tdfxvid
8025 TGA = $_tga
8026 TOOLAME=$_toolame
8027 TREMOR_INTERNAL = $_tremor_internal
8028 TV = $_tv
8029 TV_BSDBT848 = $_tv_bsdbt848
8030 TV_DSHOW = $_tv_dshow
8031 TV_V4L = $_tv_v4l
8032 TV_V4L1 = $_tv_v4l1
8033 TV_V4L2 = $_tv_v4l2
8034 TWOLAME=$_twolame
8035 UNRAR_EXEC = $_unrar_exec
8036 V4L2 = $_v4l2
8037 VCD = $_vcd
8038 VDPAU = $_vdpau
8039 VESA = $_vesa
8040 VIDIX = $_vidix
8041 VIDIX_PCIDB = $_vidix_pcidb_val
8042 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8043 VIDIX_IVTV=$_vidix_drv_ivtv
8044 VIDIX_MACH64=$_vidix_drv_mach64
8045 VIDIX_MGA=$_vidix_drv_mga
8046 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8047 VIDIX_NVIDIA=$_vidix_drv_nvidia
8048 VIDIX_PM2=$_vidix_drv_pm2
8049 VIDIX_PM3=$_vidix_drv_pm3
8050 VIDIX_RADEON=$_vidix_drv_radeon
8051 VIDIX_RAGE128=$_vidix_drv_rage128
8052 VIDIX_S3=$_vidix_drv_s3
8053 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8054 VIDIX_SIS=$_vidix_drv_sis
8055 VIDIX_UNICHROME=$_vidix_drv_unichrome
8056 VORBIS = $_vorbis
8057 VSTREAM = $_vstream
8058 WII = $_wii
8059 WIN32DLL = $_win32dll
8060 WIN32WAVEOUT = $_win32waveout
8061 WIN32_EMULATION = $_win32_emulation
8062 WINVIDIX = $winvidix
8063 X11 = $_x11
8064 X264 = $_x264
8065 XANIM_CODECS = $_xanim
8066 XMGA = $_xmga
8067 XMMS_PLUGINS = $_xmms
8068 XV = $_xv
8069 XVID4 = $_xvid
8070 XVIDIX = $xvidix
8071 XVMC = $_xvmc
8072 XVR100 = $_xvr100
8073 YUV4MPEG = $_yuv4mpeg
8074 ZR = $_zr
8076 # FFmpeg
8077 LIBAVUTIL = $_libavutil
8078 LIBAVCODEC = $_libavcodec
8079 LIBAVFORMAT = $_libavformat
8080 LIBPOSTPROC = $_libpostproc
8081 LIBSWSCALE = $_libswscale
8082 LIBAVCODEC_INTERNALS = $_libavcodec_internals
8083 LIBSWSCALE_INTERNALS = $_libswscale_internals
8084 FFMPEG_SOURCE_PATH = $_ffmpeg_source
8086 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8087 CONFIG_AANDCT=yes
8088 CONFIG_FFT=yes
8089 CONFIG_FFT_MMX=$fft_mmx
8090 CONFIG_GOLOMB=yes
8091 CONFIG_LPC=yes
8092 CONFIG_MDCT=yes
8093 CONFIG_RDFT=yes
8095 CONFIG_BZLIB=$bzlib
8096 CONFIG_ENCODERS=yes
8097 CONFIG_GPL=yes
8098 CONFIG_MLIB = $_mlib
8099 CONFIG_MUXERS=$_mencoder
8100 CONFIG_VDPAU=$_vdpau
8101 CONFIG_XVMC=$_xvmc
8102 CONFIG_ZLIB=$_zlib
8104 HAVE_PTHREADS = $_pthreads
8105 HAVE_SHM = $_shm
8106 HAVE_W32THREADS = $_w32threads
8107 HAVE_YASM = $_have_yasm
8111 #############################################################################
8113 ff_config_enable () {
8114 _nprefix=$3;
8115 test -z "$_nprefix" && _nprefix='CONFIG'
8116 for part in $1; do
8117 if $(echo $2 | grep -q -E "(^| )$part($| )"); then
8118 echo "#define ${_nprefix}_$part 1"
8119 else
8120 echo "#define ${_nprefix}_$part 0"
8122 done
8125 echo "Creating config.h"
8126 cat > $TMPH << EOF
8127 /*----------------------------------------------------------------------------
8128 ** This file has been automatically generated by configure any changes in it
8129 ** will be lost when you run configure again.
8130 ** Instead of modifying definitions here, use the --enable/--disable options
8131 ** of the configure script! See ./configure --help for details.
8132 *---------------------------------------------------------------------------*/
8134 #ifndef MPLAYER_CONFIG_H
8135 #define MPLAYER_CONFIG_H
8137 /* Undefine this if you do not want to select mono audio (left or right)
8138 with a stereo MPEG layer 2/3 audio stream. The command line option
8139 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8140 right-only), with 0 being the default.
8142 #define CONFIG_FAKE_MONO 1
8144 /* set up audio OUTBURST. Do not change this! */
8145 #define OUTBURST 512
8147 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8148 #undef FAST_OSD
8149 #undef FAST_OSD_TABLE
8151 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8152 #define MPEG12_POSTPROC 1
8153 #define ATTRIBUTE_ALIGNED_MAX 16
8157 #define CONFIGURATION "$_configuration"
8159 #define MPLAYER_DATADIR "$_datadir"
8160 #define MPLAYER_CONFDIR "$_confdir"
8161 #define MPLAYER_LIBDIR "$_libdir"
8162 #define MPLAYER_LOCALEDIR "$_localedir"
8164 $def_translation
8166 /* definitions needed by included libraries */
8167 #define HAVE_INTTYPES_H 1
8168 /* libmpeg2 + FFmpeg */
8169 $def_fast_inttypes
8170 /* libdvdcss */
8171 #define HAVE_ERRNO_H 1
8172 /* libdvdcss + libdvdread */
8173 #define HAVE_LIMITS_H 1
8174 /* libdvdcss + libfaad2 */
8175 #define HAVE_UNISTD_H 1
8176 /* libfaad2 + libdvdread */
8177 #define STDC_HEADERS 1
8178 #define HAVE_MEMCPY 1
8179 /* libfaad2 */
8180 #define HAVE_STRING_H 1
8181 #define HAVE_STRINGS_H 1
8182 #define HAVE_SYS_STAT_H 1
8183 #define HAVE_SYS_TYPES_H 1
8184 /* libdvdnav */
8185 #define READ_CACHE_TRACE 0
8186 /* libdvdread */
8187 #define HAVE_DLFCN_H 1
8188 $def_dvdcss
8191 /* system headers */
8192 $def_alloca_h
8193 $def_alsa_asoundlib_h
8194 $def_altivec_h
8195 $def_malloc_h
8196 $def_mman_h
8197 $def_mman_has_map_failed
8198 $def_soundcard_h
8199 $def_sys_asoundlib_h
8200 $def_sys_soundcard_h
8201 $def_sys_sysinfo_h
8202 $def_termios_h
8203 $def_termios_sys_h
8204 $def_winsock2_h
8207 /* system functions */
8208 $def_gethostbyname2
8209 $def_gettimeofday
8210 $def_glob
8211 $def_langinfo
8212 $def_lrintf
8213 $def_map_memalign
8214 $def_memalign
8215 $def_nanosleep
8216 $def_posix_select
8217 $def_select
8218 $def_setenv
8219 $def_setmode
8220 $def_shm
8221 $def_strsep
8222 $def_swab
8223 $def_sysi86
8224 $def_sysi86_iv
8225 $def_termcap
8226 $def_termios
8227 $def_vsscanf
8230 /* system-specific features */
8231 $def_asmalign_pot
8232 $def_builtin_expect
8233 $def_dl
8234 $def_dos_paths
8235 $def_extern_asm
8236 $def_extern_prefix
8237 $def_iconv
8238 $def_kstat
8239 $def_macosx_bundle
8240 $def_macosx_finder
8241 $def_maemo
8242 $def_named_asm_args
8243 $def_priority
8244 $def_quicktime
8245 $def_restrict_keyword
8246 $def_rtc
8247 $def_unrar_exec
8250 /* configurable options */
8251 $def_charset
8252 $def_crash_debug
8253 $def_debug
8254 $def_dynamic_plugins
8255 $def_fastmemcpy
8256 $def_menu
8257 $def_runtime_cpudetection
8258 $def_sighandler
8259 $def_sortsub
8260 $def_stream_cache
8261 $def_pthread_cache
8264 /* CPU stuff */
8265 #define __CPU__ $iproc
8266 $def_words_endian
8267 $def_bigendian
8268 $(ff_config_enable "$_arch_all" "$_arch" "ARCH")
8269 $(ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE")
8272 /* DVD/VCD/CD */
8273 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8274 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8275 $def_bsdi_dvd
8276 $def_cddb
8277 $def_cdio
8278 $def_cdparanoia
8279 $def_cdrom
8280 $def_dvd
8281 $def_dvd_bsd
8282 $def_dvd_darwin
8283 $def_dvd_linux
8284 $def_dvd_openbsd
8285 $def_dvdio
8286 $def_dvdnav
8287 $def_dvdread
8288 $def_hpux_scsi_h
8289 $def_libcdio
8290 $def_sol_scsi_h
8291 $def_vcd
8294 /* codec libraries */
8295 $def_faac
8296 $def_faad
8297 $def_faad_internal
8298 $def_liba52
8299 $def_liba52_internal
8300 $def_libdca
8301 $def_libdv
8302 $def_liblzo
8303 $def_libmpeg2
8304 $def_mad
8305 $def_mp3lame
8306 $def_mp3lame_preset
8307 $def_mp3lame_preset_medium
8308 $def_mp3lib
8309 $def_musepack
8310 $def_speex
8311 $def_theora
8312 $def_toolame
8313 $def_tremor
8314 $def_twolame
8315 $def_vorbis
8316 $def_x264
8317 $def_xvid
8318 $def_zlib
8320 $def_libnut
8323 /* binary codecs */
8324 $def_qtx
8325 $def_qtx_win32
8326 $def_real
8327 $def_real_path
8328 $def_win32_loader
8329 $def_win32dll
8330 #define WIN32_PATH "$_win32codecsdir"
8331 $def_xanim
8332 $def_xanim_path
8333 $def_xmms
8334 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8337 /* Audio output drivers */
8338 $def_alsa
8339 $def_alsa1x
8340 $def_alsa5
8341 $def_alsa9
8342 $def_arts
8343 $def_coreaudio
8344 $def_dart
8345 $def_esd
8346 $def_esd_latency
8347 $def_jack
8348 $def_kai
8349 $def_nas
8350 $def_openal
8351 $def_openal_h
8352 $def_ossaudio
8353 $def_ossaudio_devdsp
8354 $def_ossaudio_devmixer
8355 $def_pulse
8356 $def_sgiaudio
8357 $def_sunaudio
8358 $def_win32waveout
8360 $def_ladspa
8361 $def_libbs2b
8364 /* input */
8365 $def_apple_ir
8366 $def_apple_remote
8367 $def_ioctl_bt848_h_name
8368 $def_ioctl_meteor_h_name
8369 $def_joystick
8370 $def_lirc
8371 $def_lircc
8372 $def_pvr
8373 $def_radio
8374 $def_radio_bsdbt848
8375 $def_radio_capture
8376 $def_radio_v4l
8377 $def_radio_v4l2
8378 $def_tv
8379 $def_tv_bsdbt848
8380 $def_tv_dshow
8381 $def_tv_v4l
8382 $def_tv_v4l1
8383 $def_tv_v4l2
8386 /* font stuff */
8387 $def_ass
8388 $def_bitmap_font
8389 $def_enca
8390 $def_fontconfig
8391 $def_freetype
8392 $def_fribidi
8395 /* networking */
8396 $def_closesocket
8397 $def_ftp
8398 $def_inet6
8399 $def_inet_aton
8400 $def_inet_pton
8401 $def_live
8402 $def_nemesi
8403 $def_network
8404 $def_smb
8405 $def_socklen_t
8406 $def_vstream
8409 /* libvo options */
8410 $def_3dfx
8411 $def_aa
8412 $def_bl
8413 $def_caca
8414 $def_corevideo
8415 $def_dfbmga
8416 $def_dga
8417 $def_dga1
8418 $def_dga2
8419 $def_direct3d
8420 $def_directfb
8421 $def_directfb_version
8422 $def_directx
8423 $def_dvb
8424 $def_dvbin
8425 $def_dxr2
8426 $def_dxr3
8427 $def_fbdev
8428 $def_ggi
8429 $def_ggiwmh
8430 $def_gif
8431 $def_gif_4
8432 $def_gif_tvt_hack
8433 $def_gl
8434 $def_gl_win32
8435 $def_gl_x11
8436 $def_matrixview
8437 $def_ivtv
8438 $def_jpeg
8439 $def_kva
8440 $def_md5sum
8441 $def_mga
8442 $def_mng
8443 $def_png
8444 $def_pnm
8445 $def_quartz
8446 $def_s3fb
8447 $def_sdl
8448 $def_sdl_sdl_h
8449 $def_sdlbuggy
8450 $def_svga
8451 $def_tdfxfb
8452 $def_tdfxvid
8453 $def_tga
8454 $def_v4l2
8455 $def_vdpau
8456 $def_vesa
8457 $def_vidix
8458 $def_vidix_drv_cyberblade
8459 $def_vidix_drv_ivtv
8460 $def_vidix_drv_mach64
8461 $def_vidix_drv_mga
8462 $def_vidix_drv_mga_crtc2
8463 $def_vidix_drv_nvidia
8464 $def_vidix_drv_pm3
8465 $def_vidix_drv_radeon
8466 $def_vidix_drv_rage128
8467 $def_vidix_drv_s3
8468 $def_vidix_drv_sh_veu
8469 $def_vidix_drv_sis
8470 $def_vidix_drv_unichrome
8471 $def_vidix_pfx
8472 $def_vm
8473 $def_wii
8474 $def_x11
8475 $def_xdpms
8476 $def_xf86keysym
8477 $def_xinerama
8478 $def_xmga
8479 $def_xss
8480 $def_xv
8481 $def_xvmc
8482 $def_xvr100
8483 $def_yuv4mpeg
8484 $def_zr
8487 /* FFmpeg */
8488 $def_libavcodec
8489 $def_libavformat
8490 $def_libavutil
8491 $def_libpostproc
8492 $def_libswscale
8493 $def_libavcodec_internals
8494 $def_libswscale_internals
8496 #define CONFIG_DECODERS 1
8497 #define CONFIG_ENCODERS 1
8498 #define CONFIG_DEMUXERS 1
8499 $def_muxers
8501 $def_arpa_inet_h
8502 $def_bswap
8503 $def_bzlib
8504 $def_dcbzl
8505 $def_exp2
8506 $def_exp2f
8507 $def_fast_64bit
8508 $def_fast_unaligned
8509 $def_llrint
8510 $def_log2
8511 $def_log2f
8512 $def_lrint
8513 $def_memalign_hack
8514 $def_mlib
8515 $def_mkstemp
8516 $def_posix_memalign
8517 $def_pthreads
8518 $def_round
8519 $def_roundf
8520 $def_ten_operands
8521 $def_threads
8522 $def_truncf
8523 $def_xform_asm
8524 $def_yasm
8526 #define CONFIG_FASTDIV 0
8527 #define CONFIG_FFSERVER 0
8528 #define CONFIG_GPL 1
8529 #define CONFIG_GRAY 0
8530 #define CONFIG_HARDCODED_TABLES 0
8531 #define CONFIG_LIBVORBIS 0
8532 #define CONFIG_POWERPC_PERF 0
8533 #define CONFIG_SMALL 0
8534 #define CONFIG_SWSCALE 1
8535 #define CONFIG_SWSCALE_ALPHA 1
8537 #define HAVE_ATTRIBUTE_PACKED 1
8538 #define HAVE_GETHRTIME 0
8539 #define HAVE_INLINE_ASM 1
8540 #define HAVE_LDBRX 0
8541 #define HAVE_POLL_H 1
8542 #define HAVE_PPC4XX 0
8543 #define HAVE_VFP_ARGS 1
8544 #define HAVE_VIRTUALALLOC 0
8546 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8547 #define CONFIG_AANDCT 1
8548 #define CONFIG_FFT 1
8549 #define CONFIG_GOLOMB 1
8550 #define CONFIG_LPC 1
8551 #define CONFIG_MDCT 1
8552 #define CONFIG_RDFT 1
8554 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8555 $def_ebx_available
8556 #ifndef MP_DEBUG
8557 #define HAVE_EBP_AVAILABLE 1
8558 #else
8559 #define HAVE_EBP_AVAILABLE 0
8560 #endif
8562 #define CONFIG_H263_VAAPI_HWACCEL 0
8563 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8564 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8565 #define CONFIG_H264_VAAPI_HWACCEL 0
8566 #define CONFIG_VC1_VAAPI_HWACCEL 0
8567 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8569 #endif /* MPLAYER_CONFIG_H */
8572 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8573 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8575 #############################################################################
8577 ./version.sh `$_cc -dumpversion`
8579 cat << EOF
8581 Config files successfully generated by ./configure $_configuration !
8583 Install prefix: $_prefix
8584 Data directory: $_datadir
8585 Config direct.: $_confdir
8587 Byte order: $_byte_order
8588 Optimizing for: $_optimizing
8590 Languages:
8591 Manual pages: $language_man
8592 Documentation: $language_doc
8594 Enabled optional drivers:
8595 Input: $_inputmodules
8596 Codecs: $_codecmodules
8597 Audio output: $_aomodules
8598 Video output: $_vomodules
8600 Disabled optional drivers:
8601 Input: $_noinputmodules
8602 Codecs: $_nocodecmodules
8603 Audio output: $_noaomodules
8604 Video output: $_novomodules
8606 'config.h' and 'config.mak' contain your configuration options.
8607 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8608 compile *** DO NOT REPORT BUGS if you tweak these files ***
8610 'make' will now compile MPlayer and 'make install' will install it.
8611 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8616 if test "$_mtrr" = yes ; then
8617 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8618 echo
8621 if ! x86_32; then
8622 cat <<EOF
8623 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8624 operating system ($system_name). You may encounter a few files that cannot
8625 be played due to missing open source video/audio codec support.
8631 cat <<EOF
8632 Check $TMPLOG if you wonder why an autodetection failed (make sure
8633 development headers/packages are installed).
8635 NOTE: The --enable-* parameters unconditionally force options on, completely
8636 skipping autodetection. This behavior is unlike what you may be used to from
8637 autoconf-based configure scripts that can decide to override you. This greater
8638 level of control comes at a price. You may have to provide the correct compiler
8639 and linker flags yourself.
8640 If you used one of these options (except --enable-menu and similar ones that
8641 turn on internal features) and experience a compilation or linking failure,
8642 make sure you have passed the necessary compiler/linker flags to configure.
8644 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8648 if test "$_warn_CFLAGS" = yes; then
8649 cat <<EOF
8651 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8652 but:
8654 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8656 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8657 To do so, execute 'CFLAGS= ./configure <options>'
8662 # Last move:
8663 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"