Add temporary no-op translation function stubs
[mplayer/glamo.git] / configure
blob1671c6da715e271b7f89092d15af9e51a24c20ef
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, here is a simple skeleton:
24 # echocheck "$feature"
25 # if test "$_feature" = auto; then
26 # cat > $TMPC << EOF
27 # #include <feature.h>
28 # int main(void) { return 0; }
29 # EOF
30 # _feature=no
31 # cc_check && _feature=yes
32 # fi
33 # if test "$_feature" = yes ; then
34 # def_feature='#define CONFIG_FEATURE 1'
35 # else
36 # def_feature='#undef CONFIG_FEATURE'
37 # fi
38 # echores "$_feature"
40 # Furthermore you need to add the variable _feature to the list of default
41 # settings and set it to one of yes/no/auto. Also add appropriate
42 # --enable-feature/--disable-feature command line options.
43 # The results of the check should be written to config.h and config.mak
44 # at the end of this script. The variable names used for this should be
45 # uniform, i.e. if the option is named 'feature':
47 # _feature : should have a value of yes/no/auto
48 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
49 # _ld_feature : '-L/path/dir -lfeature' GCC options
51 #############################################################################
53 # Prevent locale nonsense from breaking basic text processing utils
54 export LC_ALL=C
56 # Store the configure line that was used
57 _configuration="$*"
59 # Prefer these macros to full length text !
60 # These macros only return an error code - NO display is done
61 compile_check() {
62 echo >> "$TMPLOG"
63 cat "$1" >> "$TMPLOG"
64 echo >> "$TMPLOG"
65 echo "$_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
66 rm -f "$TMPEXE"
67 $_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
68 TMPRES="$?"
69 echo >> "$TMPLOG"
70 echo >> "$TMPLOG"
71 return "$TMPRES"
74 cc_check() {
75 compile_check $TMPC $@
78 cxx_check() {
79 compile_check $TMPCPP $@ -lstdc++
82 yasm_check() {
83 echo >> "$TMPLOG"
84 cat "$TMPS" >> "$TMPLOG"
85 echo >> "$TMPLOG"
86 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
87 rm -f "$TMPEXE"
88 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
89 TMPRES="$?"
90 echo >> "$TMPLOG"
91 echo >> "$TMPLOG"
92 return "$TMPRES"
95 tmp_run() {
96 "$TMPEXE" >> "$TMPLOG" 2>&1
99 # Display error message, flushes tempfile, exit
100 die () {
101 echo
102 echo "Error: $@" >&2
103 echo >&2
104 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
105 echo "Check \"$TMPLOG\" if you do not understand why it failed."
106 exit 1
109 # OS test booleans functions
110 issystem() {
111 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
113 aix() { issystem "AIX"; }
114 amigaos() { issystem "AmigaOS"; }
115 beos() { issystem "BEOS"; }
116 bsdos() { issystem "BSD/OS"; }
117 cygwin() { issystem "CYGWIN"; }
118 darwin() { issystem "Darwin"; }
119 dragonfly() { issystem "DragonFly"; }
120 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
121 gnu() { issystem "GNU"; }
122 hpux() { issystem "HP-UX"; }
123 irix() { issystem "IRIX"; }
124 linux() { issystem "Linux"; }
125 mingw32() { issystem "MINGW32"; }
126 morphos() { issystem "MorphOS"; }
127 netbsd() { issystem "NetBSD"; }
128 openbsd() { issystem "OpenBSD"; }
129 os2() { issystem "OS/2"; }
130 qnx() { issystem "QNX"; }
131 sunos() { issystem "SunOS"; }
132 win32() { cygwin || mingw32; }
134 # arch test boolean functions
135 # x86/x86pc is used by QNX
136 x86_32() {
137 case "$host_arch" in
138 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
139 *) return 1 ;;
140 esac
143 x86_64() {
144 case "$host_arch" in
145 x86_64|amd64) return 0 ;;
146 *) return 1 ;;
147 esac
150 x86() {
151 x86_32 || x86_64
154 ppc() {
155 case "$host_arch" in
156 ppc|ppc64|powerpc|powerpc64) return 0;;
157 *) return 1;;
158 esac
161 alpha() {
162 case "$host_arch" in
163 alpha*) return 0;;
164 *) return 1;;
165 esac
168 arm() {
169 case "$host_arch" in
170 arm) return 0;;
171 *) return 1;;
172 esac
175 # Use this before starting a check
176 echocheck() {
177 echo "============ Checking for $@ ============" >> "$TMPLOG"
178 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
181 # Use this to echo the results of a check
182 echores() {
183 if test "$_res_comment" ; then
184 _res_comment="($_res_comment)"
186 echo "Result is: $@ $_res_comment" >> "$TMPLOG"
187 echo "##########################################" >> "$TMPLOG"
188 echo "" >> "$TMPLOG"
189 echo "$@ $_res_comment"
190 _res_comment=""
192 #############################################################################
194 # Check how echo works in this /bin/sh
195 case $(echo -n) in
196 -n) _echo_n= _echo_c='\c' ;; # SysV echo
197 *) _echo_n='-n ' _echo_c= ;; # BSD echo
198 esac
200 msg_lang_all=$(echo help/help_mp-??.h help/help_mp-??_??.h | sed -e "s:help/help_mp-\(..\).h:\1:g" -e "s:help/help_mp-\(.....\).h:\1:g")
201 man_lang_all=$(echo DOCS/man/??/mplayer.1 DOCS/man/??_??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g" -e "s:DOCS/man/\(.._..\)/mplayer.1:\1:g")
202 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
204 show_help(){
205 cat << EOF
206 Usage: $0 [OPTIONS]...
208 Configuration:
209 -h, --help display this help and exit
211 Installation directories:
212 --prefix=DIR prefix directory for installation [/usr/local]
213 --bindir=DIR directory for installing binaries [PREFIX/bin]
214 --datadir=DIR directory for installing machine independent
215 data files (skins, etc) [PREFIX/share/mplayer]
216 --mandir=DIR directory for installing man pages [PREFIX/share/man]
217 --confdir=DIR directory for installing configuration files
218 [PREFIX/etc/mplayer]
219 --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 --enable-gui enable GMPlayer compilation (GTK+ GUI) [disable]
229 --enable-gtk1 force using GTK 1.2 for the GUI [disable]
230 --disable-largefiles disable support for files > 2GB [enable]
231 --enable-linux-devfs set default devices to devfs [disable]
232 --enable-termcap use termcap database for key codes [autodetect]
233 --enable-termios use termios database for key codes [autodetect]
234 --disable-iconv disable iconv for encoding conversion [autodetect]
235 --disable-langinfo do not use langinfo [autodetect]
236 --enable-lirc enable LIRC (remote control) support [autodetect]
237 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
238 --enable-joystick enable joystick support [disable]
239 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
240 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
241 --disable-vm disable X video mode extensions [autodetect]
242 --disable-xf86keysym disable support for multimedia keys [autodetect]
243 --enable-radio enable radio interface [disable]
244 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
245 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
246 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
247 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
248 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
249 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
250 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
251 --disable-tv-teletext disable TV teletext interface [autodetect]
252 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
253 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
254 --disable-network disable networking [enable]
255 --enable-winsock2_h enable winsock2_h [autodetect]
256 --enable-smb enable Samba (SMB) input [autodetect]
257 --enable-live enable LIVE555 Streaming Media [autodetect]
258 --enable-nemesi enable Nemesi Streaming Media [autodetect]
259 --disable-vcd disable VCD support [autodetect]
260 --disable-dvdnav disable libdvdnav [autodetect]
261 --disable-dvdread disable libdvdread [autodetect]
262 --disable-dvdread-internal disable internal libdvdread [autodetect]
263 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
264 --disable-cdparanoia disable cdparanoia [autodetect]
265 --disable-cddb disable cddb [autodetect]
266 --disable-bitmap-font disable bitmap font support [enable]
267 --disable-freetype disable FreeType 2 font rendering [autodetect]
268 --disable-fontconfig disable fontconfig font lookup [autodetect]
269 --disable-unrarexec disable using of UnRAR executable [enabled]
270 --enable-menu enable OSD menu (not DVD menu) [disabled]
271 --disable-sortsub disable subtitle sorting [enabled]
272 --enable-fribidi enable the FriBiDi libs [autodetect]
273 --disable-enca disable ENCA charset oracle library [autodetect]
274 --disable-maemo disable maemo specific features [autodetect]
275 --enable-macosx-finder enable Mac OS X Finder invocation parameter
276 parsing [disabled]
277 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
278 --disable-inet6 disable IPv6 support [autodetect]
279 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
280 --disable-ftp disable FTP support [enabled]
281 --disable-vstream disable TiVo vstream client support [autodetect]
282 --disable-pthreads disable Posix threads support [autodetect]
283 --disable-w32threads disable Win32 threads support [autodetect]
284 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
285 --enable-rpath enable runtime linker path for extra libs [disabled]
287 Codecs:
288 --enable-gif enable GIF support [autodetect]
289 --enable-png enable PNG input/output support [autodetect]
290 --enable-mng enable MNG input support [autodetect]
291 --enable-jpeg enable JPEG input/output support [autodetect]
292 --enable-libcdio enable libcdio support [autodetect]
293 --enable-liblzo enable liblzo support [autodetect]
294 --disable-win32dll disable Win32 DLL support [enabled]
295 --disable-qtx disable QuickTime codecs support [enabled]
296 --disable-xanim disable XAnim codecs support [enabled]
297 --disable-real disable RealPlayer codecs support [enabled]
298 --disable-xvid disable Xvid [autodetect]
299 --disable-xvid-lavc disable Xvid in libavcodec [autodetect]
300 --disable-x264 disable x264 [autodetect]
301 --disable-x264-lavc disable x264 in libavcodec [autodetect]
302 --disable-libdirac-lavc disable Dirac in libavcodec [autodetect]
303 --disable-libschroedinger-lavc disable Dirac in libavcodec (Schroedinger
304 decoder) [autodetect]
305 --disable-libnut disable libnut [autodetect]
306 --disable-libavutil_a disable static libavutil [autodetect]
307 --disable-libavcodec_a disable static libavcodec [autodetect]
308 --disable-libavformat_a disable static libavformat [autodetect]
309 --disable-libpostproc_a disable static libpostproc [autodetect]
310 --disable-libswscale_a disable static libswscale [autodetect]
311 --disable-libavutil_so disable shared libavutil [autodetect]
312 --disable-libavcodec_so disable shared libavcodec [autodetect]
313 --disable-libavformat_so disable shared libavformat [autodetect]
314 --disable-libpostproc_so disable shared libpostproc [autodetect]
315 --disable-libswscale_so disable shared libswscale [autodetect]
316 --disable-libavcodec_mpegaudio_hp disable high precision audio decoding
317 in libavcodec [enabled]
318 --disable-tremor-internal disable internal Tremor [enabled]
319 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
320 --enable-tremor enable external Tremor [autodetect]
321 --disable-libvorbis disable libvorbis support [autodetect]
322 --disable-speex disable Speex support [autodetect]
323 --enable-theora enable OggTheora libraries [autodetect]
324 --enable-faad enable external FAAD2 (AAC) [autodetect]
325 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
326 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
327 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
328 --disable-faac-lavc disable support for FAAC in libavcodec [autodetect]
329 --disable-ladspa disable LADSPA plugin support [autodetect]
330 --disable-libbs2b disable libbs2b audio filter support [autodetect]
331 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
332 --disable-mad disable libmad (MPEG audio) support [autodetect]
333 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
334 --disable-mp3lame-lavc disable LAME in libavcodec [autodetect]
335 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
336 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
337 --enable-xmms enable XMMS input plugin support [disabled]
338 --enable-libdca enable libdca support [autodetect]
339 --disable-mp3lib disable builtin mp3lib [autodetect]
340 --disable-liba52 disable liba52 [autodetect]
341 --disable-liba52-internal disable builtin liba52 [autodetect]
342 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
343 --disable-musepack disable musepack support [autodetect]
344 --disable-libamr_nb disable libamr narrowband [autodetect]
345 --disable-libamr_wb disable libamr wideband [autodetect]
346 --disable-decoder=DECODER disable specified FFmpeg decoder
347 --enable-decoder=DECODER enable specified FFmpeg decoder
348 --disable-encoder=ENCODER disable specified FFmpeg encoder
349 --enable-encoder=ENCODER enable specified FFmpeg encoder
350 --disable-parser=PARSER disable specified FFmpeg parser
351 --enable-parser=PARSER enable specified FFmpeg parser
352 --disable-demuxer=DEMUXER disable specified FFmpeg demuxer
353 --enable-demuxer=DEMUXER enable specified FFmpeg demuxer
354 --disable-muxer=MUXER disable specified FFmpeg muxer
355 --enable-muxer=MUXER enable specified FFmpeg muxer
357 Video output:
358 --disable-vidix disable VIDIX [for x86 *nix]
359 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
360 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
361 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
362 --disable-vidix-pcidb disable VIDIX PCI device name database
363 --enable-dhahelper enable VIDIX dhahelper support
364 --enable-svgalib_helper enable VIDIX svgalib_helper support
365 --enable-gl enable OpenGL video output [autodetect]
366 --enable-dga2 enable DGA 2 support [autodetect]
367 --enable-dga1 enable DGA 1 support [autodetect]
368 --enable-vesa enable VESA video output [autodetect]
369 --enable-svga enable SVGAlib video output [autodetect]
370 --enable-sdl enable SDL video output [autodetect]
371 --enable-kva enable KVA video output [autodetect]
372 --enable-aa enable AAlib video output [autodetect]
373 --enable-caca enable CACA video output [autodetect]
374 --enable-ggi enable GGI video output [autodetect]
375 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
376 --enable-direct3d enable Direct3D video output [autodetect]
377 --enable-directx enable DirectX video output [autodetect]
378 --enable-dxr2 enable DXR2 video output [autodetect]
379 --enable-dxr3 enable DXR3/H+ video output [autodetect]
380 --enable-ivtv enable IVTV TV-Out video output [autodetect]
381 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
382 --enable-dvb enable DVB video output [autodetect]
383 --enable-dvbhead enable DVB video output (HEAD version) [autodetect]
384 --enable-mga enable mga_vid video output [autodetect]
385 --enable-xmga enable mga_vid X11 video output [autodetect]
386 --enable-xv enable Xv video output [autodetect]
387 --enable-xvmc enable XvMC acceleration [disable]
388 --enable-vdpau enable VDPAU acceleration [autodetect]
389 --enable-vm enable XF86VidMode support [autodetect]
390 --enable-xinerama enable Xinerama support [autodetect]
391 --enable-x11 enable X11 video output [autodetect]
392 --enable-xshape enable XShape support [autodetect]
393 --disable-xss disable screensaver support via xss [autodetect]
394 --enable-fbdev enable FBDev video output [autodetect]
395 --enable-mlib enable mediaLib video output (Solaris) [disable]
396 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
397 --enable-tdfxfb enable tdfxfb video output [disable]
398 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
399 --enable-wii enable Nintendo Wii/GameCube video output [disable]
400 --enable-directfb enable DirectFB video output [autodetect]
401 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
402 --enable-bl enable Blinkenlights video output [disable]
403 --enable-tdfxvid enable tdfx_vid video output [disable]
404 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
405 --disable-tga disable Targa video output [enable]
406 --disable-pnm disable PNM video output [enable]
407 --disable-md5sum disable md5sum video output [enable]
408 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
409 --disable-corevideo disable CoreVideo video output [autodetect]
410 --disable-quartz disable Quartz video output [autodetect]
412 Audio output:
413 --disable-alsa disable ALSA audio output [autodetect]
414 --disable-ossaudio disable OSS audio output [autodetect]
415 --disable-arts disable aRts audio output [autodetect]
416 --disable-esd disable esd audio output [autodetect]
417 --disable-pulse disable Pulseaudio audio output [autodetect]
418 --disable-jack disable JACK audio output [autodetect]
419 --disable-openal disable OpenAL audio output [autodetect]
420 --disable-nas disable NAS audio output [autodetect]
421 --disable-sgiaudio disable SGI audio output [autodetect]
422 --disable-sunaudio disable Sun audio output [autodetect]
423 --disable-dart disable DART audio output [autodetect]
424 --disable-win32waveout disable Windows waveout audio output [autodetect]
425 --disable-coreaudio disable CoreAudio audio output [autodetect]
426 --disable-select disable using select() on the audio device [enable]
428 Miscellaneous options:
429 --enable-runtime-cpudetection enable runtime CPU detection [disable]
430 --enable-cross-compile enable cross-compilation [autodetect]
431 --cc=COMPILER C compiler to build MPlayer [gcc]
432 --host-cc=COMPILER C compiler for tools needed while building [gcc]
433 --as=ASSEMBLER assembler to build MPlayer [as]
434 --nm=NM nm tool to build MPlayer [nm]
435 --yasm=YASM Yasm assembler to build MPlayer [yasm]
436 --ar=AR librarian to build MPlayer [ar]
437 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
438 --windres=WINDRES windres to build MPlayer [windres]
439 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
440 --enable-static build a statically linked binary
441 --charset=charset convert the console messages to this character set
442 --language=list a white space or comma separated list of languages for
443 translated man pages, the first language is used for
444 messages and the GUI (the environment variable
445 \$LINGUAS is also honored) [en]
446 (Available: all $msg_lang_all)
447 --with-install=PATH path to a custom install program
449 Advanced options:
450 --enable-mmx enable MMX [autodetect]
451 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
452 --enable-3dnow enable 3DNow! [autodetect]
453 --enable-3dnowext enable extended 3DNow! [autodetect]
454 --enable-sse enable SSE [autodetect]
455 --enable-sse2 enable SSE2 [autodetect]
456 --enable-ssse3 enable SSSE3 [autodetect]
457 --enable-shm enable shm [autodetect]
458 --enable-altivec enable AltiVec (PowerPC) [autodetect]
459 --enable-armv5te enable DSP extensions (ARM) [autodetect]
460 --enable-armv6 enable ARMv6 (ARM) [autodetect]
461 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
462 --enable-armvfp enable ARM VFP (ARM) [autodetect]
463 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
464 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
465 --enable-big-endian force byte order to big-endian [autodetect]
466 --enable-debug[=1-3] compile-in debugging information [disable]
467 --enable-profile compile-in profiling information [disable]
468 --disable-sighandler disable sighandler for crashes [enable]
469 --enable-crash-debug enable automatic gdb attach on crash [disable]
470 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
472 Use these options if autodetection fails:
473 --extra-cflags=FLAGS extra CFLAGS
474 --extra-ldflags=FLAGS extra LDFLAGS
475 --extra-libs=FLAGS extra linker flags
476 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
477 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
478 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
480 --with-freetype-config=PATH path to freetype-config
481 --with-fribidi-config=PATH path to fribidi-config
482 --with-glib-config=PATH path to glib*-config
483 --with-gtk-config=PATH path to gtk*-config
484 --with-sdl-config=PATH path to sdl*-config
485 --with-dvdnav-config=PATH path to dvdnav-config
486 --with-dvdread-config=PATH path to dvdread-config
488 This configure script is NOT autoconf-based, even though its output is similar.
489 It will try to autodetect all configuration options. If you --enable an option
490 it will be forcefully turned on, skipping autodetection. This can break
491 compilation, so you need to know what you are doing.
493 exit 0
494 } #show_help()
496 # GOTCHA: the variables below defines the default behavior for autodetection
497 # and have - unless stated otherwise - at least 2 states : yes no
498 # If autodetection is available then the third state is: auto
499 _mmx=auto
500 _3dnow=auto
501 _3dnowext=auto
502 _mmxext=auto
503 _sse=auto
504 _sse2=auto
505 _ssse3=auto
506 _cmov=auto
507 _fast_cmov=auto
508 _armv5te=auto
509 _armv6=auto
510 _armv6t2=auto
511 _armvfp=auto
512 _iwmmxt=auto
513 _mtrr=auto
514 _altivec=auto
515 _install=install
516 _ranlib=ranlib
517 _windres=windres
518 _cc=cc
519 _ar=ar
520 test "$CC" && _cc="$CC"
521 _as=auto
522 _nm=auto
523 _yasm=yasm
524 _runtime_cpudetection=no
525 _cross_compile=auto
526 _prefix="/usr/local"
527 _libavutil_a=auto
528 _libavutil_so=auto
529 _libavcodec_a=auto
530 _libamr_nb=auto
531 _libamr_wb=auto
532 _libavdecoders_all=$(sed -n 's/^[^#]*DEC.*(.*, *\(.*\)).*/\1_decoder/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
533 _libavdecoders=$(echo $_libavdecoders_all | sed -e 's/ LIB[A-Z0-9_]*_DECODER//g' -e s/MPEG4AAC_DECODER//)
534 _libavencoders_all=$(sed -n 's/^[^#]*ENC.*(.*, *\(.*\)).*/\1_encoder/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
535 _libavencoders=$(echo $_libavencoders_all | sed 's/ LIB[A-Z0-9_]*_ENCODER//g')
536 _libavparsers_all=$(sed -n 's/^[^#]*PARSER.*(.*, *\(.*\)).*/\1_parser/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
537 _libavparsers=$_libavparsers_all
538 _libavbsfs_all=$(sed -n 's/^[^#]*BSF.*(.*, *\(.*\)).*/\1_bsf/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
539 _libavbsfs=$_libavbsfs_all
540 _libavdemuxers_all=$(sed -n 's/^[^#]*DEMUX.*(.*, *\(.*\)).*/\1_demuxer/p' ffmpeg/libavformat/allformats.c | tr '[a-z]' '[A-Z]')
541 _libavdemuxers=$(echo $_libavdemuxers_all | sed -e 's/ LIB[A-Z0-9_]*_DEMUXER//g' -e s/REDIR_DEMUXER// -e s/RTSP_DEMUXER// -e s/SDP_DEMUXER// -e s/AVISYNTH_DEMUXER//)
542 _libavmuxers_all=$(sed -n 's/^[^#]*_MUX.*(.*, *\(.*\)).*/\1_muxer/p' ffmpeg/libavformat/allformats.c | tr '[a-z]' '[A-Z]')
543 _libavmuxers=$(echo $_libavmuxers_all | sed -e 's/ LIB[A-Z0-9_]*_MUXER//g' -e s/RTP_MUXER//)
544 _libavprotocols_all=$(sed -n 's/^[^#]*PROTOCOL.*(.*, *\(.*\)).*/\1_protocol/p' ffmpeg/libavformat/allformats.c | tr '[a-z]' '[A-Z]')
545 _libavcodec_so=auto
546 _libavformat_a=auto
547 _libavformat_so=auto
548 _libpostproc_a=auto
549 _libpostproc_so=auto
550 _libswscale_a=auto
551 _libswscale_so=auto
552 _libavcodec_mpegaudio_hp=yes
553 _mencoder=yes
554 _mplayer=yes
555 _x11=auto
556 _xshape=auto
557 _xss=auto
558 _dga1=auto
559 _dga2=auto
560 _xv=auto
561 _xvmc=no #auto when complete
562 _vdpau=auto
563 _sdl=auto
564 _kva=auto
565 _direct3d=auto
566 _directx=auto
567 _win32waveout=auto
568 _nas=auto
569 _png=auto
570 _mng=auto
571 _jpeg=auto
572 _pnm=yes
573 _md5sum=yes
574 _yuv4mpeg=yes
575 _gif=auto
576 _gl=auto
577 _ggi=auto
578 _ggiwmh=auto
579 _aa=auto
580 _caca=auto
581 _svga=auto
582 _vesa=auto
583 _fbdev=auto
584 _dvb=auto
585 _dvbhead=auto
586 _dxr2=auto
587 _dxr3=auto
588 _ivtv=auto
589 _v4l2=auto
590 _iconv=auto
591 _langinfo=auto
592 _rtc=auto
593 _ossaudio=auto
594 _arts=auto
595 _esd=auto
596 _pulse=auto
597 _jack=auto
598 _dart=auto
599 _openal=auto
600 _libcdio=auto
601 _liblzo=auto
602 _mad=auto
603 _mp3lame=auto
604 _mp3lame_lavc=auto
605 _toolame=auto
606 _twolame=auto
607 _tremor=auto
608 _tremor_internal=yes
609 _tremor_low=no
610 _libvorbis=auto
611 _speex=auto
612 _theora=auto
613 _mp3lib=auto
614 _liba52=auto
615 _liba52_internal=auto
616 _libdca=auto
617 _libmpeg2=auto
618 _faad=auto
619 _faad_internal=auto
620 _faad_fixed=no
621 _faac=auto
622 _faac_lavc=auto
623 _ladspa=auto
624 _libbs2b=auto
625 _xmms=no
626 _vcd=auto
627 _dvdnav=auto
628 _dvdnavconfig=dvdnav-config
629 _dvdreadconfig=dvdread-config
630 _dvdread=auto
631 _dvdread_internal=auto
632 _libdvdcss_internal=auto
633 _xanim=auto
634 _real=auto
635 _live=auto
636 _nemesi=auto
637 _native_rtsp=yes
638 _xinerama=auto
639 _mga=auto
640 _xmga=auto
641 _vm=auto
642 _xf86keysym=auto
643 _mlib=no #broken, thus disabled
644 _sgiaudio=auto
645 _sunaudio=auto
646 _alsa=auto
647 _fastmemcpy=yes
648 _unrar_exec=auto
649 _win32dll=auto
650 _select=yes
651 _radio=no
652 _radio_capture=no
653 _radio_v4l=auto
654 _radio_v4l2=auto
655 _radio_bsdbt848=auto
656 _tv=yes
657 _tv_v4l1=auto
658 _tv_v4l2=auto
659 _tv_bsdbt848=auto
660 _tv_dshow=auto
661 _tv_teletext=auto
662 _pvr=auto
663 _network=yes
664 _winsock2_h=auto
665 _smb=auto
666 _vidix=auto
667 _vidix_pcidb=yes
668 _dhahelper=no
669 _svgalib_helper=no
670 _joystick=no
671 _xvid=auto
672 _xvid_lavc=auto
673 _x264=auto
674 _x264_lavc=auto
675 _libdirac_lavc=auto
676 _libschroedinger_lavc=auto
677 _libnut=auto
678 _lirc=auto
679 _lircc=auto
680 _apple_remote=auto
681 _apple_ir=auto
682 _gui=no
683 _gtk1=no
684 _termcap=auto
685 _termios=auto
686 _3dfx=no
687 _s3fb=no
688 _wii=no
689 _tdfxfb=no
690 _tdfxvid=no
691 _xvr100=auto
692 _tga=yes
693 _directfb=auto
694 _zr=auto
695 _bl=no
696 _largefiles=yes
697 #_language=en
698 _shm=auto
699 _linux_devfs=no
700 _charset="UTF-8"
701 _dynamic_plugins=no
702 _crash_debug=no
703 _sighandler=yes
704 _libdv=auto
705 _cdparanoia=auto
706 _cddb=auto
707 _big_endian=auto
708 _bitmap_font=yes
709 _freetype=auto
710 _fontconfig=auto
711 _menu=no
712 _qtx=auto
713 _maemo=auto
714 _coreaudio=auto
715 _corevideo=auto
716 _quartz=auto
717 _macosx_finder=no
718 _macosx_bundle=auto
719 _sortsub=yes
720 _freetypeconfig='freetype-config'
721 _fribidi=auto
722 _fribidiconfig='fribidi-config'
723 _enca=auto
724 _inet6=auto
725 _gethostbyname2=auto
726 _ftp=yes
727 _musepack=auto
728 _vstream=auto
729 _pthreads=auto
730 _w32threads=auto
731 _ass=auto
732 _rpath=no
733 _asmalign_pot=auto
734 _stream_cache=yes
735 _priority=no
736 def_dos_paths="#define HAVE_DOS_PATHS 0"
737 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
738 def_priority="#undef CONFIG_PRIORITY"
739 def_pthread_cache="#undef PTHREAD_CACHE"
740 _need_shmem=yes
741 for ac_option do
742 case "$ac_option" in
743 --help|-help|-h)
744 show_help
746 --prefix=*)
747 _prefix=$(echo $ac_option | cut -d '=' -f 2)
749 --bindir=*)
750 _bindir=$(echo $ac_option | cut -d '=' -f 2)
752 --datadir=*)
753 _datadir=$(echo $ac_option | cut -d '=' -f 2)
755 --mandir=*)
756 _mandir=$(echo $ac_option | cut -d '=' -f 2)
758 --confdir=*)
759 _confdir=$(echo $ac_option | cut -d '=' -f 2)
761 --libdir=*)
762 _libdir=$(echo $ac_option | cut -d '=' -f 2)
764 --codecsdir=*)
765 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
767 --win32codecsdir=*)
768 _win32codecsdir=$(echo $ac_option | cut -d '=' -f 2)
770 --xanimcodecsdir=*)
771 _xanimcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
773 --realcodecsdir=*)
774 _realcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
777 --with-install=*)
778 _install=$(echo $ac_option | cut -d '=' -f 2 )
780 --with-xvmclib=*)
781 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
784 --with-sdl-config=*)
785 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
787 --with-freetype-config=*)
788 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
790 --with-fribidi-config=*)
791 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
793 --with-gtk-config=*)
794 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
796 --with-glib-config=*)
797 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
799 --with-dvdnav-config=*)
800 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
802 --with-dvdread-config=*)
803 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
806 --extra-cflags=*)
807 extra_cflags=$(echo $ac_option | cut -d '=' -f 2-)
809 --extra-ldflags=*)
810 extra_ldflags=$(echo $ac_option | cut -d '=' -f 2-)
812 --extra-libs=*)
813 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
815 --extra-libs-mplayer=*)
816 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
818 --extra-libs-mencoder=*)
819 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
822 --target=*)
823 _target=$(echo $ac_option | cut -d '=' -f 2)
825 --cc=*)
826 _cc=$(echo $ac_option | cut -d '=' -f 2)
828 --host-cc=*)
829 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
831 --as=*)
832 _as=$(echo $ac_option | cut -d '=' -f 2)
834 --nm=*)
835 _nm=$(echo $ac_option | cut -d '=' -f 2)
837 --yasm=*)
838 _yasm=$(echo $ac_option | cut -d '=' -f 2)
840 --ar=*)
841 _ar=$(echo $ac_option | cut -d '=' -f 2)
843 --ranlib=*)
844 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
846 --windres=*)
847 _windres=$(echo $ac_option | cut -d '=' -f 2)
849 --charset=*)
850 _charset=$(echo $ac_option | cut -d '=' -f 2)
852 --language=*)
853 _language=$(echo $ac_option | cut -d '=' -f 2)
856 --enable-static)
857 _ld_static='-static'
859 --disable-static)
860 _ld_static=''
862 --enable-profile)
863 _profile='-p'
865 --disable-profile)
866 _profile=
868 --enable-debug)
869 _debug='-g'
871 --enable-debug=*)
872 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
874 --disable-debug)
875 _debug=
877 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
878 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
879 --enable-cross-compile) _cross_compile=yes ;;
880 --disable-cross-compile) _cross_compile=no ;;
881 --enable-mencoder) _mencoder=yes ;;
882 --disable-mencoder) _mencoder=no ;;
883 --enable-mplayer) _mplayer=yes ;;
884 --disable-mplayer) _mplayer=no ;;
885 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
886 --disable-dynamic-plugins) _dynamic_plugins=no ;;
887 --enable-x11) _x11=yes ;;
888 --disable-x11) _x11=no ;;
889 --enable-xshape) _xshape=yes ;;
890 --disable-xshape) _xshape=no ;;
891 --enable-xss) _xss=yes ;;
892 --disable-xss) _xss=no ;;
893 --enable-xv) _xv=yes ;;
894 --disable-xv) _xv=no ;;
895 --enable-xvmc) _xvmc=yes ;;
896 --disable-xvmc) _xvmc=no ;;
897 --enable-vdpau) _vdpau=yes ;;
898 --disable-vdpau) _vdpau=no ;;
899 --enable-sdl) _sdl=yes ;;
900 --disable-sdl) _sdl=no ;;
901 --enable-kva) _kva=yes ;;
902 --disable-kva) _kva=no ;;
903 --enable-direct3d) _direct3d=yes ;;
904 --disable-direct3d) _direct3d=no ;;
905 --enable-directx) _directx=yes ;;
906 --disable-directx) _directx=no ;;
907 --enable-win32waveout) _win32waveout=yes ;;
908 --disable-win32waveout) _win32waveout=no ;;
909 --enable-nas) _nas=yes ;;
910 --disable-nas) _nas=no ;;
911 --enable-png) _png=yes ;;
912 --disable-png) _png=no ;;
913 --enable-mng) _mng=yes ;;
914 --disable-mng) _mng=no ;;
915 --enable-jpeg) _jpeg=yes ;;
916 --disable-jpeg) _jpeg=no ;;
917 --enable-pnm) _pnm=yes ;;
918 --disable-pnm) _pnm=no ;;
919 --enable-md5sum) _md5sum=yes ;;
920 --disable-md5sum) _md5sum=no ;;
921 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
922 --disable-yuv4mpeg) _yuv4mpeg=no ;;
923 --enable-gif) _gif=yes ;;
924 --disable-gif) _gif=no ;;
925 --enable-gl) _gl=yes ;;
926 --disable-gl) _gl=no ;;
927 --enable-ggi) _ggi=yes ;;
928 --disable-ggi) _ggi=no ;;
929 --enable-ggiwmh) _ggiwmh=yes ;;
930 --disable-ggiwmh) _ggiwmh=no ;;
931 --enable-aa) _aa=yes ;;
932 --disable-aa) _aa=no ;;
933 --enable-caca) _caca=yes ;;
934 --disable-caca) _caca=no ;;
935 --enable-svga) _svga=yes ;;
936 --disable-svga) _svga=no ;;
937 --enable-vesa) _vesa=yes ;;
938 --disable-vesa) _vesa=no ;;
939 --enable-fbdev) _fbdev=yes ;;
940 --disable-fbdev) _fbdev=no ;;
941 --enable-dvb) _dvb=yes ;;
942 --disable-dvb) _dvb=no ;;
943 --enable-dvbhead) _dvbhead=yes ;;
944 --disable-dvbhead) _dvbhead=no ;;
945 --enable-dxr2) _dxr2=yes ;;
946 --disable-dxr2) _dxr2=no ;;
947 --enable-dxr3) _dxr3=yes ;;
948 --disable-dxr3) _dxr3=no ;;
949 --enable-ivtv) _ivtv=yes ;;
950 --disable-ivtv) _ivtv=no ;;
951 --enable-v4l2) _v4l2=yes ;;
952 --disable-v4l2) _v4l2=no ;;
953 --enable-iconv) _iconv=yes ;;
954 --disable-iconv) _iconv=no ;;
955 --enable-langinfo) _langinfo=yes ;;
956 --disable-langinfo) _langinfo=no ;;
957 --enable-rtc) _rtc=yes ;;
958 --disable-rtc) _rtc=no ;;
959 --enable-libdv) _libdv=yes ;;
960 --disable-libdv) _libdv=no ;;
961 --enable-ossaudio) _ossaudio=yes ;;
962 --disable-ossaudio) _ossaudio=no ;;
963 --enable-arts) _arts=yes ;;
964 --disable-arts) _arts=no ;;
965 --enable-esd) _esd=yes ;;
966 --disable-esd) _esd=no ;;
967 --enable-pulse) _pulse=yes ;;
968 --disable-pulse) _pulse=no ;;
969 --enable-jack) _jack=yes ;;
970 --disable-jack) _jack=no ;;
971 --enable-openal) _openal=yes ;;
972 --disable-openal) _openal=no ;;
973 --enable-dart) _dart=yes ;;
974 --disable-dart) _dart=no ;;
975 --enable-mad) _mad=yes ;;
976 --disable-mad) _mad=no ;;
977 --enable-mp3lame) _mp3lame=yes ;;
978 --disable-mp3lame) _mp3lame=no ;;
979 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;;
980 --disable-mp3lame-lavc) _mp3lame_lavc=no ;;
981 --enable-toolame) _toolame=yes ;;
982 --disable-toolame) _toolame=no ;;
983 --enable-twolame) _twolame=yes ;;
984 --disable-twolame) _twolame=no ;;
985 --enable-libcdio) _libcdio=yes ;;
986 --disable-libcdio) _libcdio=no ;;
987 --enable-liblzo) _liblzo=yes ;;
988 --disable-liblzo) _liblzo=no ;;
989 --enable-libvorbis) _libvorbis=yes ;;
990 --disable-libvorbis) _libvorbis=no ;;
991 --enable-speex) _speex=yes ;;
992 --disable-speex) _speex=no ;;
993 --enable-tremor) _tremor=yes ;;
994 --disable-tremor) _tremor=no ;;
995 --enable-tremor-internal) _tremor_internal=yes ;;
996 --disable-tremor-internal) _tremor_internal=no ;;
997 --enable-tremor-low) _tremor_low=yes ;;
998 --disable-tremor-low) _tremor_low=no ;;
999 --enable-theora) _theora=yes ;;
1000 --disable-theora) _theora=no ;;
1001 --enable-mp3lib) _mp3lib=yes ;;
1002 --disable-mp3lib) _mp3lib=no ;;
1003 --enable-liba52-internal) _liba52_internal=yes ;;
1004 --disable-liba52-internal) _liba52_internal=no ;;
1005 --enable-liba52) _liba52=yes ;;
1006 --disable-liba52) _liba52=no ;;
1007 --enable-libdca) _libdca=yes ;;
1008 --disable-libdca) _libdca=no ;;
1009 --enable-libmpeg2) _libmpeg2=yes ;;
1010 --disable-libmpeg2) _libmpeg2=no ;;
1011 --enable-musepack) _musepack=yes ;;
1012 --disable-musepack) _musepack=no ;;
1013 --enable-faad) _faad=yes ;;
1014 --disable-faad) _faad=no ;;
1015 --enable-faad-internal) _faad_internal=yes ;;
1016 --disable-faad-internal) _faad_internal=no ;;
1017 --enable-faad-fixed) _faad_fixed=yes ;;
1018 --disable-faad-fixed) _faad_fixed=no ;;
1019 --enable-faac) _faac=yes ;;
1020 --disable-faac) _faac=no ;;
1021 --enable-faac-lavc) _faac_lavc=yes ;;
1022 --disable-faac-lavc) _faac_lavc=no ;;
1023 --enable-ladspa) _ladspa=yes ;;
1024 --disable-ladspa) _ladspa=no ;;
1025 --enable-libbs2b) _libbs2b=yes ;;
1026 --disable-libbs2b) _libbs2b=no ;;
1027 --enable-xmms) _xmms=yes ;;
1028 --disable-xmms) _xmms=no ;;
1029 --enable-vcd) _vcd=yes ;;
1030 --disable-vcd) _vcd=no ;;
1031 --enable-dvdread) _dvdread=yes ;;
1032 --disable-dvdread) _dvdread=no ;;
1033 --enable-dvdread-internal) _dvdread_internal=yes ;;
1034 --disable-dvdread-internal) _dvdread_internal=no ;;
1035 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1036 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1037 --enable-dvdnav) _dvdnav=yes ;;
1038 --disable-dvdnav) _dvdnav=no ;;
1039 --enable-xanim) _xanim=yes ;;
1040 --disable-xanim) _xanim=no ;;
1041 --enable-real) _real=yes ;;
1042 --disable-real) _real=no ;;
1043 --enable-live) _live=yes ;;
1044 --disable-live) _live=no ;;
1045 --enable-nemesi) _nemesi=yes ;;
1046 --disable-nemesi) _nemesi=no ;;
1047 --enable-xinerama) _xinerama=yes ;;
1048 --disable-xinerama) _xinerama=no ;;
1049 --enable-mga) _mga=yes ;;
1050 --disable-mga) _mga=no ;;
1051 --enable-xmga) _xmga=yes ;;
1052 --disable-xmga) _xmga=no ;;
1053 --enable-vm) _vm=yes ;;
1054 --disable-vm) _vm=no ;;
1055 --enable-xf86keysym) _xf86keysym=yes ;;
1056 --disable-xf86keysym) _xf86keysym=no ;;
1057 --enable-mlib) _mlib=yes ;;
1058 --disable-mlib) _mlib=no ;;
1059 --enable-sunaudio) _sunaudio=yes ;;
1060 --disable-sunaudio) _sunaudio=no ;;
1061 --enable-sgiaudio) _sgiaudio=yes ;;
1062 --disable-sgiaudio) _sgiaudio=no ;;
1063 --enable-alsa) _alsa=yes ;;
1064 --disable-alsa) _alsa=no ;;
1065 --enable-tv) _tv=yes ;;
1066 --disable-tv) _tv=no ;;
1067 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1068 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1069 --enable-tv-v4l1) _tv_v4l1=yes ;;
1070 --disable-tv-v4l1) _tv_v4l1=no ;;
1071 --enable-tv-v4l2) _tv_v4l2=yes ;;
1072 --disable-tv-v4l2) _tv_v4l2=no ;;
1073 --enable-tv-dshow) _tv_dshow=yes ;;
1074 --disable-tv-dshow) _tv_dshow=no ;;
1075 --enable-tv-teletext) _tv_teletext=yes ;;
1076 --disable-tv-teletext) _tv_teletext=no ;;
1077 --enable-radio) _radio=yes ;;
1078 --enable-radio-capture) _radio_capture=yes ;;
1079 --disable-radio-capture) _radio_capture=no ;;
1080 --disable-radio) _radio=no ;;
1081 --enable-radio-v4l) _radio_v4l=yes ;;
1082 --disable-radio-v4l) _radio_v4l=no ;;
1083 --enable-radio-v4l2) _radio_v4l2=yes ;;
1084 --disable-radio-v4l2) _radio_v4l2=no ;;
1085 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1086 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1087 --enable-pvr) _pvr=yes ;;
1088 --disable-pvr) _pvr=no ;;
1089 --enable-fastmemcpy) _fastmemcpy=yes ;;
1090 --disable-fastmemcpy) _fastmemcpy=no ;;
1091 --enable-network) _network=yes ;;
1092 --disable-network) _network=no ;;
1093 --enable-winsock2_h) _winsock2_h=yes ;;
1094 --disable-winsock2_h) _winsock2_h=no ;;
1095 --enable-smb) _smb=yes ;;
1096 --disable-smb) _smb=no ;;
1097 --enable-vidix) _vidix=yes ;;
1098 --disable-vidix) _vidix=no ;;
1099 --with-vidix-drivers=*)
1100 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1102 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1103 --enable-dhahelper) _dhahelper=yes ;;
1104 --disable-dhahelper) _dhahelper=no ;;
1105 --enable-svgalib_helper) _svgalib_helper=yes ;;
1106 --disable-svgalib_helper) _svgalib_helper=no ;;
1107 --enable-joystick) _joystick=yes ;;
1108 --disable-joystick) _joystick=no ;;
1109 --enable-xvid) _xvid=yes ;;
1110 --disable-xvid) _xvid=no ;;
1111 --enable-xvid-lavc) _xvid_lavc=yes ;;
1112 --disable-xvid-lavc) _xvid_lavc=no ;;
1113 --enable-x264) _x264=yes ;;
1114 --disable-x264) _x264=no ;;
1115 --enable-x264-lavc) _x264_lavc=yes ;;
1116 --disable-x264-lavc) _x264_lavc=no ;;
1117 --enable-libdirac-lavc) _libdirac_lavc=yes ;;
1118 --disable-libdirac-lavc) _libdirac_lavc=no ;;
1119 --enable-libschroedinger-lavc) _libschroedinger_lavc=yes ;;
1120 --disable-libschroedinger-lavc) _libschroedinger_lavc=no ;;
1121 --enable-libnut) _libnut=yes ;;
1122 --disable-libnut) _libnut=no ;;
1123 --enable-libavutil_a) _libavutil_a=yes ;;
1124 --disable-libavutil_a) _libavutil_a=no ;;
1125 --enable-libavutil_so) _libavutil_so=yes ;;
1126 --disable-libavutil_so) _libavutil_so=no ;;
1127 --enable-libavcodec_a) _libavcodec_a=yes ;;
1128 --disable-libavcodec_a) _libavcodec_a=no ;;
1129 --enable-libavcodec_so) _libavcodec_so=yes ;;
1130 --disable-libavcodec_so) _libavcodec_so=no ;;
1131 --enable-libamr_nb) _libamr_nb=yes ;;
1132 --disable-libamr_nb) _libamr_nb=no ;;
1133 --enable-libamr_wb) _libamr_wb=yes ;;
1134 --disable-libamr_wb) _libamr_wb=no ;;
1135 --enable-decoder=*) _libavdecoders="$_libavdecoders $(echo $ac_option | cut -d '=' -f 2)" ;;
1136 --disable-decoder=*) _libavdecoders=$(echo $_libavdecoders | sed "s/$(echo $ac_option | cut -d '=' -f 2)//g") ;;
1137 --enable-encoder=*) _libavencoders="$_libavencoders $(echo $ac_option | cut -d '=' -f 2)" ;;
1138 --disable-encoder=*) _libavencoders=$(echo $_libavencoders | sed "s/$(echo $ac_option | cut -d '=' -f 2)//g") ;;
1139 --enable-parser=*) _libavparsers="$_libavparsers $(echo $ac_option | cut -d '=' -f 2)" ;;
1140 --disable-parser=*) _libavparsers=$(echo $_libavparsers | sed "s/$(echo $ac_option | cut -d '=' -f 2)//g") ;;
1141 --enable-demuxer=*) _libavdemuxers="$_libavdemuxers $(echo $ac_option | cut -d '=' -f 2)" ;;
1142 --disable-demuxer=*) _libavdemuxers=$(echo $_libavdemuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2)//g") ;;
1143 --enable-muxer=*) _libavmuxers="$_libavmuxers $(echo $ac_option | cut -d '=' -f 2)" ;;
1144 --disable-muxer=*) _libavmuxers=$(echo $_libavmuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2)//g") ;;
1145 --enable-libavformat_a) _libavformat_a=yes ;;
1146 --disable-libavformat_a) _libavformat_a=no ;;
1147 --enable-libavformat_so) _libavformat_so=yes ;;
1148 --disable-libavformat_so) _libavformat_so=no ;;
1149 --enable-libpostproc_a) _libpostproc_a=yes ;;
1150 --disable-libpostproc_a) _libpostproc_a=no ;;
1151 --enable-libpostproc_so) _libpostproc_so=yes ;;
1152 --disable-libpostproc_so) _libpostproc_so=no ;;
1153 --enable-libswscale_a) _libswscale_a=yes ;;
1154 --disable-libswscale_a) _libswscale_a=no ;;
1155 --enable-libswscale_so) _libswscale_so=yes ;;
1156 --disable-libswscale_so) _libswscale_so=no ;;
1157 --enable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=yes ;;
1158 --disable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=no ;;
1160 --enable-lirc) _lirc=yes ;;
1161 --disable-lirc) _lirc=no ;;
1162 --enable-lircc) _lircc=yes ;;
1163 --disable-lircc) _lircc=no ;;
1164 --enable-apple-remote) _apple_remote=yes ;;
1165 --disable-apple-remote) _apple_remote=no ;;
1166 --enable-apple-ir) _apple_ir=yes ;;
1167 --disable-apple-ir) _apple_ir=no ;;
1168 --enable-gui) _gui=yes ;;
1169 --disable-gui) _gui=no ;;
1170 --enable-gtk1) _gtk1=yes ;;
1171 --disable-gtk1) _gtk1=no ;;
1172 --enable-termcap) _termcap=yes ;;
1173 --disable-termcap) _termcap=no ;;
1174 --enable-termios) _termios=yes ;;
1175 --disable-termios) _termios=no ;;
1176 --enable-3dfx) _3dfx=yes ;;
1177 --disable-3dfx) _3dfx=no ;;
1178 --enable-s3fb) _s3fb=yes ;;
1179 --disable-s3fb) _s3fb=no ;;
1180 --enable-wii) _wii=yes ;;
1181 --disable-wii) _wii=no ;;
1182 --enable-tdfxfb) _tdfxfb=yes ;;
1183 --disable-tdfxfb) _tdfxfb=no ;;
1184 --disable-tdfxvid) _tdfxvid=no ;;
1185 --enable-tdfxvid) _tdfxvid=yes ;;
1186 --disable-xvr100) _xvr100=no ;;
1187 --enable-xvr100) _xvr100=yes ;;
1188 --disable-tga) _tga=no ;;
1189 --enable-tga) _tga=yes ;;
1190 --enable-directfb) _directfb=yes ;;
1191 --disable-directfb) _directfb=no ;;
1192 --enable-zr) _zr=yes ;;
1193 --disable-zr) _zr=no ;;
1194 --enable-bl) _bl=yes ;;
1195 --disable-bl) _bl=no ;;
1196 --enable-mtrr) _mtrr=yes ;;
1197 --disable-mtrr) _mtrr=no ;;
1198 --enable-largefiles) _largefiles=yes ;;
1199 --disable-largefiles) _largefiles=no ;;
1200 --enable-shm) _shm=yes ;;
1201 --disable-shm) _shm=no ;;
1202 --enable-select) _select=yes ;;
1203 --disable-select) _select=no ;;
1204 --enable-linux-devfs) _linux_devfs=yes ;;
1205 --disable-linux-devfs) _linux_devfs=no ;;
1206 --enable-cdparanoia) _cdparanoia=yes ;;
1207 --disable-cdparanoia) _cdparanoia=no ;;
1208 --enable-cddb) _cddb=yes ;;
1209 --disable-cddb) _cddb=no ;;
1210 --enable-big-endian) _big_endian=yes ;;
1211 --disable-big-endian) _big_endian=no ;;
1212 --enable-bitmap-font) _bitmap_font=yes ;;
1213 --disable-bitmap-font) _bitmap_font=no ;;
1214 --enable-freetype) _freetype=yes ;;
1215 --disable-freetype) _freetype=no ;;
1216 --enable-fontconfig) _fontconfig=yes ;;
1217 --disable-fontconfig) _fontconfig=no ;;
1218 --enable-unrarexec) _unrar_exec=yes ;;
1219 --disable-unrarexec) _unrar_exec=no ;;
1220 --enable-ftp) _ftp=yes ;;
1221 --disable-ftp) _ftp=no ;;
1222 --enable-vstream) _vstream=yes ;;
1223 --disable-vstream) _vstream=no ;;
1224 --enable-pthreads) _pthreads=yes ;;
1225 --disable-pthreads) _pthreads=no ;;
1226 --enable-w32threads) _w32threads=yes ;;
1227 --disable-w32threads) _w32threads=no ;;
1228 --enable-ass) _ass=yes ;;
1229 --disable-ass) _ass=no ;;
1230 --enable-rpath) _rpath=yes ;;
1231 --disable-rpath) _rpath=no ;;
1233 --enable-fribidi) _fribidi=yes ;;
1234 --disable-fribidi) _fribidi=no ;;
1236 --enable-enca) _enca=yes ;;
1237 --disable-enca) _enca=no ;;
1239 --enable-inet6) _inet6=yes ;;
1240 --disable-inet6) _inet6=no ;;
1242 --enable-gethostbyname2) _gethostbyname2=yes ;;
1243 --disable-gethostbyname2) _gethostbyname2=no ;;
1245 --enable-dga1) _dga1=yes ;;
1246 --disable-dga1) _dga1=no ;;
1247 --enable-dga2) _dga2=yes ;;
1248 --disable-dga2) _dga2=no ;;
1250 --enable-menu) _menu=yes ;;
1251 --disable-menu) _menu=no ;;
1253 --enable-qtx) _qtx=yes ;;
1254 --disable-qtx) _qtx=no ;;
1256 --enable-coreaudio) _coreaudio=yes ;;
1257 --disable-coreaudio) _coreaudio=no ;;
1258 --enable-corevideo) _corevideo=yes ;;
1259 --disable-corevideo) _corevideo=no ;;
1260 --enable-quartz) _quartz=yes ;;
1261 --disable-quartz) _quartz=no ;;
1262 --enable-macosx-finder) _macosx_finder=yes ;;
1263 --disable-macosx-finder) _macosx_finder=no ;;
1264 --enable-macosx-bundle) _macosx_bundle=yes;;
1265 --disable-macosx-bundle) _macosx_bundle=no;;
1267 --enable-maemo) _maemo=yes ;;
1268 --disable-maemo) _maemo=no ;;
1270 --enable-sortsub) _sortsub=yes ;;
1271 --disable-sortsub) _sortsub=no ;;
1273 --enable-crash-debug) _crash_debug=yes ;;
1274 --disable-crash-debug) _crash_debug=no ;;
1275 --enable-sighandler) _sighandler=yes ;;
1276 --disable-sighandler) _sighandler=no ;;
1277 --enable-win32dll) _win32dll=yes ;;
1278 --disable-win32dll) _win32dll=no ;;
1280 --enable-sse) _sse=yes ;;
1281 --disable-sse) _sse=no ;;
1282 --enable-sse2) _sse2=yes ;;
1283 --disable-sse2) _sse2=no ;;
1284 --enable-ssse3) _ssse3=yes ;;
1285 --disable-ssse3) _ssse3=no ;;
1286 --enable-mmxext) _mmxext=yes ;;
1287 --disable-mmxext) _mmxext=no ;;
1288 --enable-3dnow) _3dnow=yes ;;
1289 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1290 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1291 --disable-3dnowext) _3dnowext=no ;;
1292 --enable-cmov) _cmov=yes ;;
1293 --disable-cmov) _cmov=no ;;
1294 --enable-fast-cmov) _fast_cmov=yes ;;
1295 --disable-fast-cmov) _fast_cmov=no ;;
1296 --enable-altivec) _altivec=yes ;;
1297 --disable-altivec) _altivec=no ;;
1298 --enable-armv5te) _armv5te=yes ;;
1299 --disable-armv5te) _armv5te=no ;;
1300 --enable-armv6) _armv6=yes ;;
1301 --disable-armv6) _armv6=no ;;
1302 --enable-armv6t2) _armv6t2=yes ;;
1303 --disable-armv6t2) _armv6t2=no ;;
1304 --enable-armvfp) _armvfp=yes ;;
1305 --disable-armvfp) _armvfp=no ;;
1306 --enable-iwmmxt) _iwmmxt=yes ;;
1307 --disable-iwmmxt) _iwmmxt=no ;;
1308 --enable-mmx) _mmx=yes ;;
1309 --disable-mmx) # 3Dnow! and MMX2 require MMX
1310 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1313 echo "Unknown parameter: $ac_option"
1314 exit 1
1317 esac
1318 done
1320 if test "$_gui" = yes ; then
1321 echo "Error: --enable-gui is no longer supported. Use an external frontend if you want a GUI." >&2
1322 exit 1
1325 # Atmos: moved this here, to be correct, if --prefix is specified
1326 test -z "$_bindir" && _bindir="$_prefix/bin"
1327 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1328 test -z "$_mandir" && _mandir="$_prefix/share/man"
1329 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1330 test -z "$_libdir" && _libdir="$_prefix/lib"
1332 # Determine our OS name and CPU architecture
1333 if test -z "$_target" ; then
1334 # OS name
1335 system_name=$(uname -s 2>&1)
1336 case "$system_name" in
1337 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1339 IRIX*)
1340 system_name=IRIX
1342 GNU/kFreeBSD)
1343 system_name=FreeBSD
1345 HP-UX*)
1346 system_name=HP-UX
1348 [cC][yY][gG][wW][iI][nN]*)
1349 system_name=CYGWIN
1351 MINGW32*)
1352 system_name=MINGW32
1354 OS/2*)
1355 system_name=OS/2
1358 system_name="$system_name-UNKNOWN"
1360 esac
1363 # host's CPU/instruction set
1364 host_arch=$(uname -p 2>&1)
1365 case "$host_arch" in
1366 i386|sparc|ppc|alpha|arm|mips|vax)
1368 powerpc) # Darwin returns 'powerpc'
1369 host_arch=ppc
1371 *) # uname -p on Linux returns 'unknown' for the processor type,
1372 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1374 # Maybe uname -m (machine hardware name) returns something we
1375 # recognize.
1377 # x86/x86pc is used by QNX
1378 case "$(uname -m 2>&1)" in
1379 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 ;;
1380 ia64) host_arch=ia64 ;;
1381 x86_64|amd64)
1382 if [ -n "$($_cc -dumpmachine | sed -n '/^x86_64-/p;/^amd64-/p')" -a \
1383 -z "$(echo $CFLAGS $_cc | grep -- -m32)" ]; then
1384 host_arch=x86_64
1385 else
1386 host_arch=i386
1389 macppc|ppc|ppc64) host_arch=ppc ;;
1390 alpha) host_arch=alpha ;;
1391 sparc) host_arch=sparc ;;
1392 sparc64) host_arch=sparc64 ;;
1393 parisc*|hppa*|9000*) host_arch=hppa ;;
1394 arm*|zaurus|cats) host_arch=arm ;;
1395 sh3|sh4|sh4a) host_arch=sh ;;
1396 s390) host_arch=s390 ;;
1397 s390x) host_arch=s390x ;;
1398 mips*) host_arch=mips ;;
1399 vax) host_arch=vax ;;
1400 xtensa*) host_arch=xtensa ;;
1401 *) host_arch=UNKNOWN ;;
1402 esac
1404 esac
1405 else # if test -z "$_target"
1406 system_name=$(echo $_target | cut -d '-' -f 2)
1407 case "$(echo $system_name | tr A-Z a-z)" in
1408 linux) system_name=Linux ;;
1409 freebsd) system_name=FreeBSD ;;
1410 gnu/kfreebsd) system_name=FreeBSD ;;
1411 netbsd) system_name=NetBSD ;;
1412 bsd/os) system_name=BSD/OS ;;
1413 openbsd) system_name=OpenBSD ;;
1414 dragonfly) system_name=DragonFly ;;
1415 sunos) system_name=SunOS ;;
1416 qnx) system_name=QNX ;;
1417 morphos) system_name=MorphOS ;;
1418 amigaos) system_name=AmigaOS ;;
1419 mingw32msvc) system_name=MINGW32 ;;
1420 esac
1421 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1422 host_arch=$(echo $_target | cut -d '-' -f 1)
1423 if test $(echo $host_arch) != "x86_64" ; then
1424 host_arch=$(echo $host_arch | tr '_' '-')
1428 echo "Detected operating system: $system_name"
1429 echo "Detected host architecture: $host_arch"
1431 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1432 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1436 extra_cflags="-I. $extra_cflags"
1437 _timer=timer-linux.c
1438 _getch=getch2.c
1439 if freebsd ; then
1440 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1441 extra_cflags="$extra_cflags -I/usr/local/include"
1444 if netbsd || dragonfly ; then
1445 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1446 extra_cflags="$extra_cflags -I/usr/pkg/include"
1449 if darwin; then
1450 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1451 _timer=timer-darwin.c
1454 if aix ; then
1455 extra_ldflags="$extra_ldflags -lC"
1458 if irix ; then
1459 _ranlib='ar -r'
1460 elif linux ; then
1461 _ranlib='true'
1464 if win32 ; then
1465 _exesuf=".exe"
1466 # -lwinmm is always needed for osdep/timer-win2.c
1467 extra_ldflags="$extra_ldflags -lwinmm"
1468 _pe_executable=yes
1469 _timer=timer-win2.c
1470 _priority=yes
1471 def_dos_paths="#define HAVE_DOS_PATHS 1"
1472 def_priority="#define CONFIG_PRIORITY 1"
1475 if mingw32 ; then
1476 _getch=getch2-win.c
1477 _need_shmem=no
1480 if amigaos ; then
1481 _select=no
1482 _sighandler=no
1483 _stream_cache=no
1484 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1485 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1488 if qnx ; then
1489 extra_ldflags="$extra_ldflags -lph"
1492 if os2 ; then
1493 _exesuf=".exe"
1494 _getch=getch2-os2.c
1495 _need_shmem=no
1496 _priority=yes
1497 def_dos_paths="#define HAVE_DOS_PATHS 1"
1498 def_priority="#define CONFIG_PRIORITY 1"
1501 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1502 test "$I" && break
1503 done
1506 TMPLOG="configure.log"
1507 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1508 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1509 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1510 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1511 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1513 rm -f "$TMPLOG"
1514 echo configuration: $_configuration > "$TMPLOG"
1515 echo >> "$TMPLOG"
1518 # Checking CC version...
1519 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1520 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1521 echocheck "$_cc version"
1522 cc_vendor=intel
1523 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1524 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1525 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1526 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1527 # TODO verify older icc/ecc compatibility
1528 case $cc_version in
1530 cc_version="v. ?.??, bad"
1531 cc_fail=yes
1533 10.1|11.0|11.1)
1534 cc_version="$cc_version, ok"
1537 cc_version="$cc_version, bad"
1538 cc_fail=yes
1540 esac
1541 echores "$cc_version"
1542 else
1543 for _cc in "$_cc" cc gcc ; do
1544 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1545 if test "$cc_name_tmp" = "gcc"; then
1546 cc_name=$cc_name_tmp
1547 echocheck "$_cc version"
1548 cc_vendor=gnu
1549 cc_version=$($_cc -dumpversion 2>&1)
1550 case $cc_version in
1551 2.96*)
1552 cc_fail=yes
1555 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1556 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1557 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1559 esac
1560 echores "$cc_version"
1561 break
1563 done
1564 fi # icc
1565 test "$cc_fail" = yes && die "unsupported compiler version"
1567 echocheck "host cc"
1568 test "$_host_cc" || _host_cc=$_cc
1569 echores $_host_cc
1571 echocheck "cross compilation"
1572 if test $_cross_compile = auto ; then
1573 cat > $TMPC << EOF
1574 int main(void) { return 0; }
1576 _cross_compile=yes
1577 cc_check && "$TMPEXE" && _cross_compile=no
1579 echores $_cross_compile
1581 if test $_cross_compile = yes; then
1582 tmp_run() {
1583 return 0
1587 # ---
1589 # now that we know what compiler should be used for compilation, try to find
1590 # out which assembler is used by the $_cc compiler
1591 if test "$_as" = auto ; then
1592 _as=$($_cc -print-prog-name=as)
1593 test -z "$_as" && _as=as
1596 if test "$_nm" = auto ; then
1597 _nm=$($_cc -print-prog-name=nm)
1598 test -z "$_nm" && _nm=nm
1601 # XXX: this should be ok..
1602 _cpuinfo="echo"
1604 if test "$_runtime_cpudetection" = no ; then
1606 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1607 # FIXME: Remove the cygwin check once AMD CPUs are supported
1608 if test -r /proc/cpuinfo && ! cygwin; then
1609 # Linux with /proc mounted, extract CPU information from it
1610 _cpuinfo="cat /proc/cpuinfo"
1611 elif test -r /compat/linux/proc/cpuinfo && ! x86_32 ; then
1612 # FreeBSD with Linux emulation /proc mounted,
1613 # extract CPU information from it
1614 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1615 elif darwin && ! x86 ; then
1616 # use hostinfo on Darwin
1617 _cpuinfo="hostinfo"
1618 elif aix; then
1619 # use 'lsattr' on AIX
1620 _cpuinfo="lsattr -E -l proc0 -a type"
1621 elif x86; then
1622 # all other OSes try to extract CPU information from a small helper
1623 # program cpuinfo instead
1624 $_cc -o cpuinfo$_exesuf cpuinfo.c
1625 _cpuinfo="./cpuinfo$_exesuf"
1628 if x86 ; then
1629 # gather more CPU information
1630 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1631 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1632 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1633 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1634 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1636 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1638 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1639 -e s/xmm/sse/ -e s/kni/sse/)
1641 for ext in $pparam ; do
1642 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1643 done
1645 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1646 test $_sse = kernel_check && _mmxext=kernel_check
1648 echocheck "CPU vendor"
1649 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1651 echocheck "CPU type"
1652 echores "$pname"
1655 fi # test "$_runtime_cpudetection" = no
1657 if x86 && test "$_runtime_cpudetection" = no ; then
1658 extcheck() {
1659 if test "$1" = kernel_check ; then
1660 echocheck "kernel support of $2"
1661 cat > $TMPC <<EOF
1662 #include <stdlib.h>
1663 #include <signal.h>
1664 void catch() { exit(1); }
1665 int main(void) {
1666 signal(SIGILL, catch);
1667 __asm__ volatile ("$3":::"memory"); return 0;
1671 if cc_check && tmp_run ; then
1672 eval _$2=yes
1673 echores "yes"
1674 _optimizing="$_optimizing $2"
1675 return 0
1676 else
1677 eval _$2=no
1678 echores "failed"
1679 echo "It seems that your kernel does not correctly support $2."
1680 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1681 return 1
1684 return 0
1687 extcheck $_mmx "mmx" "emms"
1688 extcheck $_mmxext "mmxext" "sfence"
1689 extcheck $_3dnow "3dnow" "femms"
1690 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1691 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1692 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1693 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1694 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1696 echocheck "mtrr support"
1697 if test "$_mtrr" = kernel_check ; then
1698 _mtrr="yes"
1699 _optimizing="$_optimizing mtrr"
1701 echores "$_mtrr"
1703 if test "$_gcc3_ext" != ""; then
1704 # if we had to disable sse/sse2 because the active kernel does not
1705 # support this instruction set extension, we also have to tell
1706 # gcc3 to not generate sse/sse2 instructions for normal C code
1707 cat > $TMPC << EOF
1708 int main(void) { return 0; }
1710 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1716 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1717 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1718 _arch_all='X86 X86_32 X86_64 IA64 SPARC ARM AVR32 SH4 PPC ALPHA SGI_MIPS PA_RISC S390 S390X VAX BFIN XTENSA GENERIC'
1719 case "$host_arch" in
1720 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1721 _arch='X86 X86_32'
1722 _target_arch_x86="ARCH_X86 = yes"
1723 _target_arch="ARCH_X86_32 = yes"
1724 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1725 iproc=486
1726 proc=i486
1729 if test "$_runtime_cpudetection" = no ; then
1730 case "$pvendor" in
1731 AuthenticAMD)
1732 case "$pfamily" in
1733 3) proc=i386 iproc=386 ;;
1734 4) proc=i486 iproc=486 ;;
1735 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1736 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1737 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1738 proc=k6-3
1739 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1740 proc=geode
1741 elif test "$pmodel" -ge 8; then
1742 proc=k6-2
1743 elif test "$pmodel" -ge 6; then
1744 proc=k6
1745 else
1746 proc=i586
1749 6) iproc=686
1750 # It's a bit difficult to determine the correct type of Family 6
1751 # AMD CPUs just from their signature. Instead, we check directly
1752 # whether it supports SSE.
1753 if test "$_sse" = yes; then
1754 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1755 proc=athlon-xp
1756 else
1757 # Again, gcc treats athlon and athlon-tbird similarly.
1758 proc=athlon
1761 15) iproc=686
1762 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1763 # caught and remedied in the optimization tests below.
1764 proc=k8
1767 *) proc=k8 iproc=686 ;;
1768 esac
1770 GenuineIntel)
1771 case "$pfamily" in
1772 3) proc=i386 iproc=386 ;;
1773 4) proc=i486 iproc=486 ;;
1774 5) iproc=586
1775 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1776 proc=pentium-mmx # 4 is desktop, 8 is mobile
1777 else
1778 proc=i586
1781 6) iproc=686
1782 if test "$pmodel" -ge 15; then
1783 proc=core2
1784 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1785 proc=pentium-m
1786 elif test "$pmodel" -ge 7; then
1787 proc=pentium3
1788 elif test "$pmodel" -ge 3; then
1789 proc=pentium2
1790 else
1791 proc=i686
1794 15) iproc=686
1795 # A nocona in 32-bit mode has no more capabilities than a prescott.
1796 if test "$pmodel" -ge 3; then
1797 proc=prescott
1798 else
1799 proc=pentium4
1801 test $_fast_cmov = "auto" && _fast_cmov=no
1803 *) proc=prescott iproc=686 ;;
1804 esac
1806 CentaurHauls)
1807 case "$pfamily" in
1808 5) iproc=586
1809 if test "$pmodel" -ge 8; then
1810 proc=winchip2
1811 elif test "$pmodel" -ge 4; then
1812 proc=winchip-c6
1813 else
1814 proc=i586
1817 6) iproc=686
1818 if test "$pmodel" -ge 9; then
1819 proc=c3-2
1820 else
1821 proc=c3
1822 iproc=586
1825 *) proc=i686 iproc=i686 ;;
1826 esac
1828 unknown)
1829 case "$pfamily" in
1830 3) proc=i386 iproc=386 ;;
1831 4) proc=i486 iproc=486 ;;
1832 *) proc=i586 iproc=586 ;;
1833 esac
1836 proc=i586 iproc=586 ;;
1837 esac
1838 fi # test "$_runtime_cpudetection" = no
1841 # check that gcc supports our CPU, if not, fall back to earlier ones
1842 # LGB: check -mcpu and -march swithing step by step with enabling
1843 # to fall back till 386.
1845 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1847 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1848 cpuopt=-mtune
1849 else
1850 cpuopt=-mcpu
1853 echocheck "GCC & CPU optimization abilities"
1854 cat > $TMPC << EOF
1855 int main(void) { return 0; }
1857 if test "$_runtime_cpudetection" = no ; then
1858 cc_check -march=native && proc=native
1859 if test "$proc" = "k8"; then
1860 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1862 if test "$proc" = "athlon-xp"; then
1863 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1865 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1866 cc_check -march=$proc $cpuopt=$proc || proc=k6
1868 if test "$proc" = "k6" || test "$proc" = "c3"; then
1869 if ! cc_check -march=$proc $cpuopt=$proc; then
1870 if cc_check -march=i586 $cpuopt=i686; then
1871 proc=i586-i686
1872 else
1873 proc=i586
1877 if test "$proc" = "prescott" ; then
1878 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1880 if test "$proc" = "core2" ; then
1881 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1883 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
1884 cc_check -march=$proc $cpuopt=$proc || proc=i686
1886 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1887 cc_check -march=$proc $cpuopt=$proc || proc=i586
1889 if test "$proc" = "i586"; then
1890 cc_check -march=$proc $cpuopt=$proc || proc=i486
1892 if test "$proc" = "i486" ; then
1893 cc_check -march=$proc $cpuopt=$proc || proc=i386
1895 if test "$proc" = "i386" ; then
1896 cc_check -march=$proc $cpuopt=$proc || proc=error
1898 if test "$proc" = "error" ; then
1899 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1900 _mcpu=""
1901 _march=""
1902 _optimizing=""
1903 elif test "$proc" = "i586-i686"; then
1904 _march="-march=i586"
1905 _mcpu="$cpuopt=i686"
1906 _optimizing="$proc"
1907 else
1908 _march="-march=$proc"
1909 _mcpu="$cpuopt=$proc"
1910 _optimizing="$proc"
1912 else # if test "$_runtime_cpudetection" = no
1913 _mcpu="$cpuopt=generic"
1914 # at least i486 required, for bswap instruction
1915 _march="-march=i486"
1916 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1917 cc_check $_mcpu || _mcpu=""
1918 cc_check $_march $_mcpu || _march=""
1921 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1922 ## autodetected mcpu/march parameters
1923 if test "$_target" ; then
1924 # TODO: it may be a good idea to check GCC and fall back in all cases
1925 if test "$host_arch" = "i586-i686"; then
1926 _march="-march=i586"
1927 _mcpu="$cpuopt=i686"
1928 else
1929 _march="-march=$host_arch"
1930 _mcpu="$cpuopt=$host_arch"
1933 proc="$host_arch"
1935 case "$proc" in
1936 i386) iproc=386 ;;
1937 i486) iproc=486 ;;
1938 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1939 i686|athlon*|pentium*) iproc=686 ;;
1940 *) iproc=586 ;;
1941 esac
1944 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1945 _fast_cmov="yes"
1946 else
1947 _fast_cmov="no"
1950 echores "$proc"
1953 ia64)
1954 _arch='IA64'
1955 _target_arch='ARCH_IA64 = yes'
1956 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1957 iproc='ia64'
1960 x86_64|amd64)
1961 _arch='X86 X86_64'
1962 _target_arch='ARCH_X86_64 = yes'
1963 _target_arch_x86="ARCH_X86 = yes"
1964 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1965 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1966 iproc='x86_64'
1968 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1969 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1970 cpuopt=-mtune
1971 else
1972 cpuopt=-mcpu
1974 test $_fast_cmov = "auto" && _fast_cmov=yes
1975 if test "$_runtime_cpudetection" = no ; then
1976 case "$pvendor" in
1977 AuthenticAMD)
1978 proc=k8;;
1979 GenuineIntel)
1980 case "$pfamily" in
1981 6) proc=core2;;
1983 # 64-bit prescotts exist, but as far as GCC is concerned they
1984 # have the same capabilities as a nocona.
1985 proc=nocona
1987 esac
1990 proc=error;;
1991 esac
1992 fi # test "$_runtime_cpudetection" = no
1994 echocheck "GCC & CPU optimization abilities"
1995 cat > $TMPC << EOF
1996 int main(void) { return 0; }
1998 # This is a stripped-down version of the i386 fallback.
1999 if test "$_runtime_cpudetection" = no ; then
2000 cc_check -march=native && proc=native
2001 # --- AMD processors ---
2002 if test "$proc" = "k8"; then
2003 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2005 # This will fail if gcc version < 3.3, which is ok because earlier
2006 # versions don't really support 64-bit on amd64.
2007 # Is this a valid assumption? -Corey
2008 if test "$proc" = "athlon-xp"; then
2009 cc_check -march=$proc $cpuopt=$proc || proc=error
2011 # --- Intel processors ---
2012 if test "$proc" = "core2"; then
2013 cc_check -march=$proc $cpuopt=$proc || proc=nocona
2015 if test "$proc" = "nocona"; then
2016 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
2018 if test "$proc" = "pentium4"; then
2019 cc_check -march=$proc $cpuopt=$proc || proc=error
2022 _march="-march=$proc"
2023 _mcpu="$cpuopt=$proc"
2024 if test "$proc" = "error" ; then
2025 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2026 _mcpu=""
2027 _march=""
2029 else # if test "$_runtime_cpudetection" = no
2030 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2031 _march="-march=x86-64"
2032 _mcpu="$cpuopt=generic"
2033 cc_check $_mcpu || _mcpu="x86-64"
2034 cc_check $_mcpu || _mcpu=""
2035 cc_check $_march $_mcpu || _march=""
2038 _optimizing=""
2040 echores "$proc"
2043 sparc|sparc64)
2044 _arch='SPARC'
2045 _target_arch='ARCH_SPARC = yes'
2046 iproc='sparc'
2047 if test "$host_arch" = "sparc64" ; then
2048 _vis='yes'
2049 proc='ultrasparc'
2050 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2051 elif sunos ; then
2052 echocheck "CPU type"
2053 karch=$(uname -m)
2054 case "$(echo $karch)" in
2055 sun4) proc=v7 ;;
2056 sun4c) proc=v7 ;;
2057 sun4d) proc=v8 ;;
2058 sun4m) proc=v8 ;;
2059 sun4u) proc=ultrasparc _vis='yes' ;;
2060 sun4v) proc=v9 ;;
2061 *) proc=v8 ;;
2062 esac
2063 echores "$proc"
2064 else
2065 proc=v8
2067 _mcpu="-mcpu=$proc"
2068 _optimizing="$proc"
2071 arm|armv4l|armv5tel)
2072 _arch='ARM'
2073 _target_arch='ARCH_ARM = yes'
2074 iproc='arm'
2077 avr32)
2078 _arch='AVR32'
2079 _target_arch='ARCH_AVR32 = yes'
2080 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2081 iproc='avr32'
2084 sh|sh4)
2085 _arch='SH4'
2086 _target_arch='ARCH_SH4 = yes'
2087 iproc='sh4'
2090 ppc|ppc64|powerpc|powerpc64)
2091 _arch='PPC'
2092 def_dcbzl='#define HAVE_DCBZL 0'
2093 _target_arch='ARCH_PPC = yes'
2094 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2095 iproc='ppc'
2097 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2098 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2100 echocheck "CPU type"
2101 case $system_name in
2102 Linux)
2103 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2104 if test -n "$($_cpuinfo | grep altivec)"; then
2105 test $_altivec = auto && _altivec=yes
2108 Darwin)
2109 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2110 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2111 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2112 test $_altivec = auto && _altivec=yes
2115 NetBSD)
2116 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2117 case $cc_version in
2118 2*|3.0*|3.1*|3.2*|3.3*)
2121 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2122 test $_altivec = auto && _altivec=yes
2125 esac
2127 AIX)
2128 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2130 esac
2131 if test "$_altivec" = yes; then
2132 echores "$proc altivec"
2133 else
2134 _altivec=no
2135 echores "$proc"
2138 echocheck "GCC & CPU optimization abilities"
2140 if test -n "$proc"; then
2141 case "$proc" in
2142 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2143 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2144 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2145 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2146 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2147 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2148 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2149 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2150 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2151 *) ;;
2152 esac
2153 # gcc 3.1(.1) and up supports 7400 and 7450
2154 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2155 case "$proc" in
2156 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2157 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2158 *) ;;
2159 esac
2161 # gcc 3.2 and up supports 970
2162 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2163 case "$proc" in
2164 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2165 def_dcbzl='#define HAVE_DCBZL 1' ;;
2166 *) ;;
2167 esac
2169 # gcc 3.3 and up supports POWER4
2170 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2171 case "$proc" in
2172 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2173 *) ;;
2174 esac
2176 # gcc 3.4 and up supports 440*
2177 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2178 case "$proc" in
2179 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2180 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2181 *) ;;
2182 esac
2184 # gcc 4.0 and up supports POWER5
2185 if test "$_cc_major" -ge "4"; then
2186 case "$proc" in
2187 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2188 *) ;;
2189 esac
2193 if test -n "$_mcpu"; then
2194 _optimizing=$(echo $_mcpu | cut -c 8-)
2195 echores "$_optimizing"
2196 else
2197 echores "none"
2202 alpha*)
2203 _arch='ALPHA'
2204 _target_arch='ARCH_ALPHA = yes'
2205 iproc='alpha'
2206 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2208 echocheck "CPU type"
2209 cat > $TMPC << EOF
2210 int main(void) {
2211 unsigned long ver, mask;
2212 __asm__ ("implver %0" : "=r" (ver));
2213 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2214 printf("%ld-%x\n", ver, ~mask);
2215 return 0;
2218 $_cc -o "$TMPEXE" "$TMPC"
2219 case $("$TMPEXE") in
2221 0-0) proc="ev4"; _mvi="0";;
2222 1-0) proc="ev5"; _mvi="0";;
2223 1-1) proc="ev56"; _mvi="0";;
2224 1-101) proc="pca56"; _mvi="1";;
2225 2-303) proc="ev6"; _mvi="1";;
2226 2-307) proc="ev67"; _mvi="1";;
2227 2-1307) proc="ev68"; _mvi="1";;
2228 esac
2229 echores "$proc"
2231 echocheck "GCC & CPU optimization abilities"
2232 if test "$proc" = "ev68" ; then
2233 cc_check -mcpu=$proc || proc=ev67
2235 if test "$proc" = "ev67" ; then
2236 cc_check -mcpu=$proc || proc=ev6
2238 _mcpu="-mcpu=$proc"
2239 echores "$proc"
2241 _optimizing="$proc"
2244 mips)
2245 _arch='SGI_MIPS'
2246 _target_arch='ARCH_SGI_MIPS = yes'
2247 iproc='sgi-mips'
2249 if irix ; then
2250 echocheck "CPU type"
2251 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2252 case "$(echo $proc)" in
2253 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2254 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2255 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2256 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2257 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2258 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2259 esac
2260 # gcc < 3.x does not support -mtune.
2261 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2262 _mcpu=''
2264 echores "$proc"
2269 hppa)
2270 _arch='PA_RISC'
2271 _target_arch='ARCH_PA_RISC = yes'
2272 iproc='PA-RISC'
2275 s390)
2276 _arch='S390'
2277 _target_arch='ARCH_S390 = yes'
2278 iproc='390'
2281 s390x)
2282 _arch='S390X'
2283 _target_arch='ARCH_S390X = yes'
2284 iproc='390x'
2287 vax)
2288 _arch='VAX'
2289 _target_arch='ARCH_VAX = yes'
2290 iproc='vax'
2293 xtensa)
2294 _arch='XTENSA'
2295 _target_arch='ARCH_XTENSA = yes'
2296 iproc='xtensa'
2299 generic)
2300 _arch='GENERIC'
2301 _target_arch='ARCH_GENERIC = yes'
2305 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2306 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2307 die "unsupported architecture $host_arch"
2309 esac # case "$host_arch" in
2311 if test "$_runtime_cpudetection" = yes ; then
2312 if x86 ; then
2313 test "$_cmov" != no && _cmov=yes
2314 x86_32 && _cmov=no
2315 test "$_mmx" != no && _mmx=yes
2316 test "$_3dnow" != no && _3dnow=yes
2317 test "$_3dnowext" != no && _3dnowext=yes
2318 test "$_mmxext" != no && _mmxext=yes
2319 test "$_sse" != no && _sse=yes
2320 test "$_sse2" != no && _sse2=yes
2321 test "$_ssse3" != no && _ssse3=yes
2322 test "$_mtrr" != no && _mtrr=yes
2324 if ppc; then
2325 _altivec=yes
2330 # endian testing
2331 echocheck "byte order"
2332 if test "$_big_endian" = auto ; then
2333 cat > $TMPC <<EOF
2334 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2335 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2336 int main(void) { return (int)ascii_name; }
2338 if cc_check ; then
2339 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2340 _big_endian=yes
2341 else
2342 _big_endian=no
2344 else
2345 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2348 if test "$_big_endian" = yes ; then
2349 _byte_order='big-endian'
2350 def_words_endian='#define WORDS_BIGENDIAN 1'
2351 else
2352 _byte_order='little-endian'
2353 def_words_endian='#undef WORDS_BIGENDIAN'
2355 echores "$_byte_order"
2358 echocheck "extern symbol prefix"
2359 cat > $TMPC << EOF
2360 int ff_extern;
2362 cc_check -c || die "Symbol mangling check failed."
2363 sym=$($_nm -P -g $TMPEXE)
2364 extern_prefix=${sym%%ff_extern*}
2365 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2366 echores $extern_prefix
2369 echocheck "assembler support of -pipe option"
2370 cat > $TMPC << EOF
2371 int main(void) { return 0; }
2373 cc_check -pipe && _pipe="-pipe" && echores "yes" || echores "no"
2376 echocheck "compiler support of named assembler arguments"
2377 _named_asm_args=yes
2378 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2379 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2380 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2381 _named_asm_args=no
2382 def_named_asm_args="#undef NAMED_ASM_ARGS"
2384 echores $_named_asm_args
2387 if darwin && test "$cc_vendor" = "gnu" ; then
2388 echocheck "GCC support of -mstackrealign"
2389 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2390 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2391 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2392 # wrong code with this flag, but this can be worked around by adding
2393 # -fno-unit-at-a-time as described in the blog post at
2394 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2395 cat > $TMPC << EOF
2396 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2397 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2399 cc_check -O4 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2400 test -z "$cflags_stackrealign" && cc_check -O4 -mstackrealign -fno-unit-at-a-time \
2401 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2402 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2403 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2406 # Checking for CFLAGS
2407 _install_strip="-s"
2408 if test "$_profile" != "" || test "$_debug" != "" ; then
2409 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2410 _install_strip=
2411 elif test -z "$CFLAGS" ; then
2412 if test "$cc_vendor" = "intel" ; then
2413 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2414 elif test "$cc_vendor" != "gnu" ; then
2415 CFLAGS="-O2 $_march $_mcpu $_pipe"
2416 else
2417 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2418 extra_ldflags="$extra_ldflags -ffast-math"
2420 else
2421 _warn_CFLAGS=yes
2424 cat > $TMPC << EOF
2425 int main(void) { return 0; }
2427 if test "$cc_vendor" = "gnu" ; then
2428 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2429 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2430 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2431 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2432 else
2433 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2436 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2439 if test -n "$LDFLAGS" ; then
2440 extra_ldflags="$extra_ldflags $LDFLAGS"
2441 _warn_CFLAGS=yes
2442 elif test "$cc_vendor" = "intel" ; then
2443 extra_ldflags="$extra_ldflags -i-static"
2445 if test -n "$CPPFLAGS" ; then
2446 extra_cflags="$extra_cflags $CPPFLAGS"
2447 _warn_CFLAGS=yes
2452 if x86_32 ; then
2453 # Checking assembler (_as) compatibility...
2454 # Added workaround for older as that reads from stdin by default - atmos
2455 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2456 echocheck "assembler ($_as $as_version)"
2458 _pref_as_version='2.9.1'
2459 echo 'nop' > $TMPS
2460 if test "$_mmx" = yes ; then
2461 echo 'emms' >> $TMPS
2463 if test "$_3dnow" = yes ; then
2464 _pref_as_version='2.10.1'
2465 echo 'femms' >> $TMPS
2467 if test "$_3dnowext" = yes ; then
2468 _pref_as_version='2.10.1'
2469 echo 'pswapd %mm0, %mm0' >> $TMPS
2471 if test "$_mmxext" = yes ; then
2472 _pref_as_version='2.10.1'
2473 echo 'movntq %mm0, (%eax)' >> $TMPS
2475 if test "$_sse" = yes ; then
2476 _pref_as_version='2.10.1'
2477 echo 'xorps %xmm0, %xmm0' >> $TMPS
2479 #if test "$_sse2" = yes ; then
2480 # _pref_as_version='2.11'
2481 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2483 if test "$_cmov" = yes ; then
2484 _pref_as_version='2.10.1'
2485 echo 'cmovb %eax, %ebx' >> $TMPS
2487 if test "$_ssse3" = yes ; then
2488 _pref_as_version='2.16.92'
2489 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2491 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2493 if test "$as_verc_fail" != yes ; then
2494 echores "ok"
2495 else
2496 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2497 echores "failed"
2498 die "obsolete binutils version"
2501 fi #if x86_32
2503 echocheck ".align is a power of two"
2504 if test "$_asmalign_pot" = auto ; then
2505 _asmalign_pot=no
2506 cat > $TMPC << EOF
2507 int main(void) { __asm__ (".align 3"); return 0; }
2509 cc_check && _asmalign_pot=yes
2511 if test "$_asmalign_pot" = "yes" ; then
2512 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2513 else
2514 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2516 echores $_asmalign_pot
2518 if x86 ; then
2519 echocheck "10 assembler operands"
2520 ten_operands=no
2521 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2522 cat > $TMPC << EOF
2523 int main(void) {
2524 int x=0;
2525 __asm__ volatile(
2527 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2529 return 0;
2532 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2533 echores $ten_operands
2535 echocheck "yasm"
2536 if test -z "$YASMFLAGS" ; then
2537 if darwin ; then
2538 x86_64 && objformat="macho64" || objformat="macho"
2539 elif win32 ; then
2540 objformat="win32"
2541 else
2542 objformat="elf"
2544 # currently tested for Linux x86, x86_64
2545 YASMFLAGS="-f $objformat"
2546 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2547 case "$objformat" in
2548 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2549 macho64) YASMFLAGS="$YASMFLAGS -DPIC -DPREFIX" ;;
2550 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2551 esac
2552 else
2553 _warn_CFLAGS=yes
2556 echo "pabsw xmm0, xmm0" > $TMPS
2557 yasm_check || _yasm=""
2558 if test $_yasm ; then
2559 test "$_mmx" = "yes" && fft_mmx="yes"
2560 def_yasm='#define HAVE_YASM 1'
2561 _have_yasm="yes"
2562 echores "$_yasm"
2563 else
2564 def_yasm='#define HAVE_YASM 0'
2565 fft_mmx="no"
2566 _have_yasm="no"
2567 echores "no"
2570 echocheck "bswap"
2571 def_bswap='#define HAVE_BSWAP 0'
2572 echo 'bswap %eax' > $TMPS
2573 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2574 echores "$bswap"
2575 fi #if x86
2578 #FIXME: This should happen before the check for CFLAGS..
2579 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2580 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2582 # check if AltiVec is supported by the compiler, and how to enable it
2583 echocheck "GCC AltiVec flags"
2584 cat > $TMPC << EOF
2585 int main(void) { return 0; }
2587 if $(cc_check -maltivec -mabi=altivec) ; then
2588 _altivec_gcc_flags="-maltivec -mabi=altivec"
2589 # check if <altivec.h> should be included
2590 cat > $TMPC << EOF
2591 #include <altivec.h>
2592 int main(void) { return 0; }
2594 if $(cc_check $_altivec_gcc_flags) ; then
2595 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2596 inc_altivec_h='#include <altivec.h>'
2597 else
2598 cat > $TMPC << EOF
2599 int main(void) { return 0; }
2601 if $(cc_check -faltivec) ; then
2602 _altivec_gcc_flags="-faltivec"
2603 else
2604 _altivec=no
2605 _altivec_gcc_flags="none, AltiVec disabled"
2609 echores "$_altivec_gcc_flags"
2611 # check if the compiler supports braces for vector declarations
2612 cat > $TMPC << EOF
2613 $inc_altivec_h
2614 int main(void) { (vector int) {1}; return 0; }
2616 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2618 # Disable runtime cpudetection if we cannot generate AltiVec code or
2619 # AltiVec is disabled by the user.
2620 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2621 && _runtime_cpudetection=no
2623 # Show that we are optimizing for AltiVec (if enabled and supported).
2624 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2625 && _optimizing="$_optimizing altivec"
2627 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2628 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2631 if ppc ; then
2632 def_xform_asm='#define HAVE_XFORM_ASM 0'
2633 xform_asm=no
2634 echocheck "XFORM ASM support"
2635 cat > $TMPC << EOF
2636 int main(void) { __asm__ volatile ("lwzx 0, %y0" :: "Z"(*(int*)0)); return 0; }
2638 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2639 echores "$xform_asm"
2642 if arm ; then
2643 echocheck "ARM pld instruction"
2644 cat > $TMPC << EOF
2645 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2647 pld=no
2648 cc_check && pld=yes
2649 echores "$pld"
2651 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2652 if test $_armv5te = "auto" ; then
2653 cat > $TMPC << EOF
2654 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2656 _armv5te=no
2657 cc_check && _armv5te=yes
2659 echores "$_armv5te"
2661 echocheck "ARMv6 (SIMD instructions)"
2662 if test $_armv6 = "auto" ; then
2663 cat > $TMPC << EOF
2664 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2666 _armv6=no
2667 cc_check && _armv6=yes
2669 echores "$_armv6"
2671 echocheck "ARMv6t2 (SIMD instructions)"
2672 if test $_armv6t2 = "auto" ; then
2673 cat > $TMPC << EOF
2674 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2676 _armv6t2=no
2677 cc_check && _armv6t2=yes
2679 echores "$_armv6"
2681 echocheck "ARM VFP"
2682 if test $_armvfp = "auto" ; then
2683 cat > $TMPC << EOF
2684 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2686 _armvfp=no
2687 cc_check && _armvfp=yes
2689 echores "$_armvfp"
2691 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2692 if test $_iwmmxt = "auto" ; then
2693 cat > $TMPC << EOF
2694 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2696 _iwmmxt=no
2697 cc_check && _iwmmxt=yes
2699 echores "$_iwmmxt"
2702 _cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP IWMMXT MMI VIS MVI'
2703 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2704 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2705 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2706 test "$_3dnow" = yes && _cpuexts="AMD3DNOW $_cpuexts"
2707 test "$_3dnowext" = yes && _cpuexts="AMD3DNOWEXT $_cpuexts"
2708 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2709 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2710 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2711 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2712 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2713 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2714 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2715 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2716 test "$_armv6t2" = yes && _cpuexts="ARMV6T2 $_cpuexts"
2717 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2718 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2719 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2720 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2722 # Checking kernel version...
2723 if x86_32 && linux ; then
2724 _k_verc_problem=no
2725 kernel_version=$(uname -r 2>&1)
2726 echocheck "$system_name kernel version"
2727 case "$kernel_version" in
2728 '') kernel_version="?.??"; _k_verc_fail=yes;;
2729 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2730 _k_verc_problem=yes;;
2731 esac
2732 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2733 _k_verc_fail=yes
2735 if test "$_k_verc_fail" ; then
2736 echores "$kernel_version, fail"
2737 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2738 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2739 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2740 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2741 echo "2.2.x you must upgrade it to get SSE support!"
2742 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2743 else
2744 echores "$kernel_version, ok"
2748 ######################
2749 # MAIN TESTS GO HERE #
2750 ######################
2753 echocheck "-lposix"
2754 cat > $TMPC <<EOF
2755 int main(void) { return 0; }
2757 if cc_check -lposix ; then
2758 extra_ldflags="$extra_ldflags -lposix"
2759 echores "yes"
2760 else
2761 echores "no"
2764 echocheck "-lm"
2765 cat > $TMPC <<EOF
2766 int main(void) { return 0; }
2768 if cc_check -lm ; then
2769 _ld_lm="-lm"
2770 echores "yes"
2771 else
2772 _ld_lm=""
2773 echores "no"
2777 echocheck "langinfo"
2778 if test "$_langinfo" = auto ; then
2779 cat > $TMPC <<EOF
2780 #include <langinfo.h>
2781 int main(void) { nl_langinfo(CODESET); return 0; }
2783 _langinfo=no
2784 cc_check && _langinfo=yes
2786 if test "$_langinfo" = yes ; then
2787 def_langinfo='#define HAVE_LANGINFO 1'
2788 else
2789 def_langinfo='#undef HAVE_LANGINFO'
2791 echores "$_langinfo"
2794 echocheck "language"
2795 test -z "$_language" && _language=$LINGUAS
2796 _language=$(echo $_language | tr , " ")
2797 if $(echo $_language | grep -q all) ; then
2798 doc_lang=en ; doc_langs=$doc_lang_all
2799 man_lang=en ; man_langs=$man_lang_all
2800 msg_lang=en
2801 else
2802 for lang in $_language ; do
2803 if test -d DOCS/man/$lang ; then
2804 tmp_man_langs="$tmp_man_langs $lang"
2806 if test -d DOCS/xml/$lang ; then
2807 tmp_doc_langs="$tmp_doc_langs $lang"
2809 done
2810 man_langs=$tmp_man_langs
2811 doc_langs=$tmp_man_langs
2812 for lang in $_language ; do
2813 if test -f "help/help_mp-${lang}.h" ; then
2814 msg_lang=$lang
2815 break
2816 else
2817 echo ${_echo_n} "$lang not found, ${_echo_c}"
2818 _language=$(echo $_language | sed "s/$lang *//")
2820 done
2822 test -z "$doc_langs" && doc_langs=en
2823 test -z "$man_langs" && man_langs=en
2824 test -z "$doc_lang" && doc_lang=$(echo $doc_langs | cut -f1 -d" ")
2825 test -z "$man_lang" && man_lang=$(echo $man_langs | cut -f1 -d" ")
2826 test -z "$msg_lang" && msg_lang=en
2827 _mp_help="help/help_mp-${msg_lang}.h"
2828 echores "messages: $msg_lang - man pages: $man_langs - documentation: $doc_langs"
2831 echocheck "enable sighandler"
2832 if test "$_sighandler" = yes ; then
2833 def_sighandler='#define CONFIG_SIGHANDLER 1'
2834 else
2835 def_sighandler='#undef CONFIG_SIGHANDLER'
2837 echores "$_sighandler"
2839 echocheck "runtime cpudetection"
2840 if test "$_runtime_cpudetection" = yes ; then
2841 _optimizing="Runtime CPU-Detection enabled"
2842 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2843 else
2844 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2846 echores "$_runtime_cpudetection"
2849 echocheck "restrict keyword"
2850 for restrict_keyword in restrict __restrict __restrict__ ; do
2851 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2852 if cc_check; then
2853 def_restrict_keyword=$restrict_keyword
2854 break;
2856 done
2857 if [ -n "$def_restrict_keyword" ]; then
2858 echores "$def_restrict_keyword"
2859 else
2860 echores "none"
2862 # Avoid infinite recursion loop ("#define restrict restrict")
2863 if [ "$def_restrict_keyword" != "restrict" ]; then
2864 def_restrict_keyword="#define restrict $def_restrict_keyword"
2865 else
2866 def_restrict_keyword=""
2870 echocheck "__builtin_expect"
2871 # GCC branch prediction hint
2872 cat > $TMPC << EOF
2873 int foo(int a) {
2874 a = __builtin_expect(a, 10);
2875 return a == 10 ? 0 : 1;
2877 int main(void) { return foo(10) && foo(0); }
2879 _builtin_expect=no
2880 cc_check && _builtin_expect=yes
2881 if test "$_builtin_expect" = yes ; then
2882 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2883 else
2884 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2886 echores "$_builtin_expect"
2889 echocheck "kstat"
2890 cat > $TMPC << EOF
2891 #include <kstat.h>
2892 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2894 _kstat=no
2895 cc_check -lkstat && _kstat=yes
2896 if test "$_kstat" = yes ; then
2897 def_kstat="#define HAVE_LIBKSTAT 1"
2898 extra_ldflags="$extra_ldflags -lkstat"
2899 else
2900 def_kstat="#undef HAVE_LIBKSTAT"
2902 echores "$_kstat"
2905 echocheck "posix4"
2906 # required for nanosleep on some systems
2907 cat > $TMPC << EOF
2908 #include <time.h>
2909 int main(void) { (void) nanosleep(0, 0); return 0; }
2911 _posix4=no
2912 cc_check -lposix4 && _posix4=yes
2913 if test "$_posix4" = yes ; then
2914 extra_ldflags="$extra_ldflags -lposix4"
2916 echores "$_posix4"
2918 for func in llrint lrint lrintf round roundf truncf; do
2919 echocheck $func
2920 cat > $TMPC << EOF
2921 #include <math.h>
2922 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2924 eval _$func=no
2925 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2926 if eval test "x\$_$func" = "xyes"; then
2927 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2928 echores yes
2929 else
2930 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2931 echores no
2933 done
2936 echocheck "mkstemp"
2937 cat > $TMPC << EOF
2938 #include <stdlib.h>
2939 int main(void) { char a; mkstemp(&a); return 0; }
2941 _mkstemp=no
2942 cc_check && _mkstemp=yes
2943 if test "$_mkstemp" = yes ; then
2944 def_mkstemp='#define HAVE_MKSTEMP 1'
2945 else
2946 def_mkstemp='#undef HAVE_MKSTEMP'
2948 echores "$_mkstemp"
2951 echocheck "nanosleep"
2952 # also check for nanosleep
2953 cat > $TMPC << EOF
2954 #include <time.h>
2955 int main(void) { (void) nanosleep(0, 0); return 0; }
2957 _nanosleep=no
2958 cc_check && _nanosleep=yes
2959 if test "$_nanosleep" = yes ; then
2960 def_nanosleep='#define HAVE_NANOSLEEP 1'
2961 else
2962 def_nanosleep='#undef HAVE_NANOSLEEP'
2964 echores "$_nanosleep"
2967 echocheck "socklib"
2968 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2969 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2970 cat > $TMPC << EOF
2971 #include <netdb.h>
2972 #include <sys/socket.h>
2973 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
2975 _socklib=no
2976 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2977 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2978 done
2979 if test $_winsock2_h = auto && ! cygwin ; then
2980 _winsock2_h=no
2981 cat > $TMPC << EOF
2982 #include <winsock2.h>
2983 int main(void) { (void) gethostbyname(0); return 0; }
2985 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2987 test "$_ld_sock" && _res_comment="using $_ld_sock"
2988 echores "$_socklib"
2991 if test $_winsock2_h = yes ; then
2992 _ld_sock="-lws2_32"
2993 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2994 else
2995 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2999 echocheck "arpa/inet.h"
3000 arpa_inet_h=no
3001 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3002 cat > $TMPC << EOF
3003 #include <arpa/inet.h>
3004 int main(void) { return 0; }
3006 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3007 echores "$arpa_inet_h"
3010 echocheck "inet_pton()"
3011 def_inet_pton='#define HAVE_INET_PTON 0'
3012 inet_pton=no
3013 cat > $TMPC << EOF
3014 #include <sys/types.h>
3015 #include <sys/socket.h>
3016 #include <arpa/inet.h>
3017 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3019 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3020 cc_check $_ld_tmp && inet_pton=yes && break
3021 done
3022 if test $inet_pton = yes ; then
3023 test $_ld_tmp && _res_comment="using $_ld_tmp"
3024 def_inet_pton='#define HAVE_INET_PTON 1'
3026 echores "$inet_pton"
3029 echocheck "inet_aton()"
3030 def_inet_aton='#define HAVE_INET_ATON 0'
3031 inet_aton=no
3032 cat > $TMPC << EOF
3033 #include <sys/types.h>
3034 #include <sys/socket.h>
3035 #include <arpa/inet.h>
3036 int main(void) { (void) inet_aton(0, 0); return 0; }
3038 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3039 cc_check $_ld_tmp && inet_aton=yes && break
3040 done
3041 if test $inet_aton = yes ; then
3042 test $_ld_tmp && _res_comment="using $_ld_tmp"
3043 def_inet_aton='#define HAVE_INET_ATON 1'
3045 echores "$inet_aton"
3048 echocheck "socklen_t"
3049 _socklen_t=no
3050 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3051 cat > $TMPC << EOF
3052 #include <$header>
3053 int main(void) { socklen_t v = 0; return v; }
3055 cc_check && _socklen_t=yes && break
3056 done
3057 if test "$_socklen_t" = yes ; then
3058 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3059 else
3060 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3062 echores "$_socklen_t"
3065 echocheck "closesocket()"
3066 _closesocket=no
3067 cat > $TMPC << EOF
3068 #include <winsock2.h>
3069 int main(void) { closesocket(~0); return 0; }
3071 cc_check $_ld_sock && _closesocket=yes
3072 if test "$_closesocket" = yes ; then
3073 def_closesocket='#define HAVE_CLOSESOCKET 1'
3074 else
3075 def_closesocket='#define HAVE_CLOSESOCKET 0'
3077 echores "$_closesocket"
3080 echocheck "network"
3081 test $_winsock2_h = no && test $inet_pton = no &&
3082 test $inet_aton = no && _network=no
3083 if test "$_network" = yes ; then
3084 def_network='#define CONFIG_NETWORK 1'
3085 extra_ldflags="$extra_ldflags $_ld_sock"
3086 _inputmodules="network $_inputmodules"
3087 else
3088 _noinputmodules="network $_noinputmodules"
3089 def_network='#undef CONFIG_NETWORK'
3090 _ftp=no
3092 echores "$_network"
3095 echocheck "inet6"
3096 if test "$_inet6" = auto ; then
3097 cat > $TMPC << EOF
3098 #include <sys/types.h>
3099 #if !defined(_WIN32) || defined(__CYGWIN__)
3100 #include <sys/socket.h>
3101 #include <netinet/in.h>
3102 #else
3103 #include <ws2tcpip.h>
3104 #endif
3105 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3107 _inet6=no
3108 if cc_check $_ld_sock ; then
3109 _inet6=yes
3112 if test "$_inet6" = yes ; then
3113 def_inet6='#define HAVE_AF_INET6 1'
3114 else
3115 def_inet6='#undef HAVE_AF_INET6'
3117 echores "$_inet6"
3120 echocheck "gethostbyname2"
3121 if test "$_gethostbyname2" = auto ; then
3122 cat > $TMPC << EOF
3123 #include <sys/types.h>
3124 #include <sys/socket.h>
3125 #include <netdb.h>
3126 int main(void) { gethostbyname2("", AF_INET); return 0; }
3128 _gethostbyname2=no
3129 if cc_check ; then
3130 _gethostbyname2=yes
3133 if test "$_gethostbyname2" = yes ; then
3134 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3135 else
3136 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3138 echores "$_gethostbyname2"
3141 echocheck "inttypes.h (required)"
3142 cat > $TMPC << EOF
3143 #include <inttypes.h>
3144 int main(void) { return 0; }
3146 _inttypes=no
3147 cc_check && _inttypes=yes
3148 echores "$_inttypes"
3150 if test "$_inttypes" = no ; then
3151 echocheck "bitypes.h (inttypes.h predecessor)"
3152 cat > $TMPC << EOF
3153 #include <sys/bitypes.h>
3154 int main(void) { return 0; }
3156 cc_check && _inttypes=yes
3157 if test "$_inttypes" = yes ; then
3158 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."
3159 else
3160 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3165 echocheck "int_fastXY_t in inttypes.h"
3166 cat > $TMPC << EOF
3167 #include <inttypes.h>
3168 int main(void) {
3169 volatile int_fast16_t v= 0;
3170 return v; }
3172 _fast_inttypes=no
3173 cc_check && _fast_inttypes=yes
3174 if test "$_fast_inttypes" = no ; then
3175 def_fast_inttypes='
3176 typedef signed char int_fast8_t;
3177 typedef signed int int_fast16_t;
3178 typedef signed int int_fast32_t;
3179 typedef signed long long int_fast64_t;
3180 typedef unsigned char uint_fast8_t;
3181 typedef unsigned int uint_fast16_t;
3182 typedef unsigned int uint_fast32_t;
3183 typedef unsigned long long uint_fast64_t;'
3185 echores "$_fast_inttypes"
3188 echocheck "malloc.h"
3189 cat > $TMPC << EOF
3190 #include <malloc.h>
3191 int main(void) { (void) malloc(0); return 0; }
3193 _malloc=no
3194 cc_check && _malloc=yes
3195 if test "$_malloc" = yes ; then
3196 def_malloc_h='#define HAVE_MALLOC_H 1'
3197 else
3198 def_malloc_h='#define HAVE_MALLOC_H 0'
3200 # malloc.h emits a warning in FreeBSD and OpenBSD
3201 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3202 echores "$_malloc"
3205 echocheck "memalign()"
3206 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3207 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3208 cat > $TMPC << EOF
3209 #include <malloc.h>
3210 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3212 _memalign=no
3213 cc_check && _memalign=yes
3214 if test "$_memalign" = yes ; then
3215 def_memalign='#define HAVE_MEMALIGN 1'
3216 else
3217 def_memalign='#define HAVE_MEMALIGN 0'
3218 def_map_memalign='#define memalign(a,b) malloc(b)'
3219 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3221 echores "$_memalign"
3224 echocheck "posix_memalign()"
3225 posix_memalign=no
3226 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3227 cat > $TMPC << EOF
3228 #define _XOPEN_SOURCE 600
3229 #include <stdlib.h>
3230 int main(void) { posix_memalign(NULL, 0, 0); }
3232 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3233 echores "$posix_memalign"
3236 echocheck "alloca.h"
3237 cat > $TMPC << EOF
3238 #include <alloca.h>
3239 int main(void) { (void) alloca(0); return 0; }
3241 _alloca=no
3242 cc_check && _alloca=yes
3243 if cc_check ; then
3244 def_alloca_h='#define HAVE_ALLOCA_H 1'
3245 else
3246 def_alloca_h='#undef HAVE_ALLOCA_H'
3248 echores "$_alloca"
3251 echocheck "fastmemcpy"
3252 if test "$_fastmemcpy" = yes ; then
3253 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3254 else
3255 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3257 echores "$_fastmemcpy"
3260 echocheck "mman.h"
3261 cat > $TMPC << EOF
3262 #include <sys/types.h>
3263 #include <sys/mman.h>
3264 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3266 _mman=no
3267 cc_check && _mman=yes
3268 if test "$_mman" = yes ; then
3269 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3270 else
3271 def_mman_h='#undef HAVE_SYS_MMAN_H'
3272 os2 && _need_mmap=yes
3274 echores "$_mman"
3276 cat > $TMPC << EOF
3277 #include <sys/types.h>
3278 #include <sys/mman.h>
3279 int main(void) { void *p = MAP_FAILED; return 0; }
3281 _mman_has_map_failed=no
3282 cc_check && _mman_has_map_failed=yes
3283 if test "$_mman_has_map_failed" = yes ; then
3284 def_mman_has_map_failed=''
3285 else
3286 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3289 echocheck "dynamic loader"
3290 cat > $TMPC << EOF
3291 #include <stddef.h>
3292 #include <dlfcn.h>
3293 int main(void) { dlopen(NULL, 0); dlclose(NULL); dlsym(NULL, NULL); return 0; }
3295 _dl=no
3296 for _ld_tmp in "" "-ldl" ; do
3297 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3298 done
3299 if test "$_dl" = yes ; then
3300 def_dl='#define HAVE_LIBDL 1'
3301 else
3302 def_dl='#undef HAVE_LIBDL'
3304 echores "$_dl"
3307 echocheck "dynamic a/v plugins support"
3308 if test "$_dl" = no ; then
3309 _dynamic_plugins=no
3311 if test "$_dynamic_plugins" = yes ; then
3312 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3313 else
3314 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3316 echores "$_dynamic_plugins"
3319 def_threads='#define HAVE_THREADS 0'
3321 echocheck "pthread"
3322 if linux ; then
3323 THREAD_CFLAGS=-D_REENTRANT
3324 elif freebsd || netbsd || openbsd || bsdos ; then
3325 THREAD_CFLAGS=-D_THREAD_SAFE
3327 if test "$_pthreads" = auto ; then
3328 cat > $TMPC << EOF
3329 #include <pthread.h>
3330 void* func(void *arg) { return arg; }
3331 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3333 _pthreads=no
3334 if ! hpux ; then
3335 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3336 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3337 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3338 done
3341 if test "$_pthreads" = yes ; then
3342 test $_ld_pthread && _res_comment="using $_ld_pthread"
3343 def_pthreads='#define HAVE_PTHREADS 1'
3344 def_threads='#define HAVE_THREADS 1'
3345 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3346 else
3347 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3348 def_pthreads='#undef HAVE_PTHREADS'
3349 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3350 mingw32 || _win32dll=no
3352 echores "$_pthreads"
3354 if cygwin ; then
3355 if test "$_pthreads" = yes ; then
3356 def_pthread_cache="#define PTHREAD_CACHE 1"
3357 else
3358 _stream_cache=no
3359 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3363 echocheck "w32threads"
3364 if test "$_pthreads" = yes ; then
3365 _res_comment="using pthread instead"
3366 _w32threads=no
3368 if test "$_w32threads" = auto ; then
3369 _w32threads=no
3370 mingw32 && _w32threads=yes
3372 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3373 echores "$_w32threads"
3375 echocheck "rpath"
3376 netbsd &&_rpath=yes
3377 if test "$_rpath" = yes ; then
3378 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3379 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3380 done
3381 extra_ldflags=$tmp
3383 echores "$_rpath"
3385 echocheck "iconv"
3386 if test "$_iconv" = auto ; then
3387 cat > $TMPC << EOF
3388 #include <stdio.h>
3389 #include <unistd.h>
3390 #include <iconv.h>
3391 #define INBUFSIZE 1024
3392 #define OUTBUFSIZE 4096
3394 char inbuffer[INBUFSIZE];
3395 char outbuffer[OUTBUFSIZE];
3397 int main(void) {
3398 size_t numread;
3399 iconv_t icdsc;
3400 char *tocode="UTF-8";
3401 char *fromcode="cp1250";
3402 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3403 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3404 char *iptr=inbuffer;
3405 char *optr=outbuffer;
3406 size_t inleft=numread;
3407 size_t outleft=OUTBUFSIZE;
3408 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3409 != (size_t)(-1)) {
3410 write(1, outbuffer, OUTBUFSIZE - outleft);
3413 if (iconv_close(icdsc) == -1)
3416 return 0;
3419 _iconv=no
3420 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3421 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3422 _iconv=yes && break
3423 done
3425 if test "$_iconv" = yes ; then
3426 def_iconv='#define CONFIG_ICONV 1'
3427 else
3428 def_iconv='#undef CONFIG_ICONV'
3430 echores "$_iconv"
3433 echocheck "soundcard.h"
3434 _soundcard_h=no
3435 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3436 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3437 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3438 cat > $TMPC << EOF
3439 #include <$_soundcard_header>
3440 int main(void) { return 0; }
3442 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3443 done
3445 if test "$_soundcard_h" = yes ; then
3446 if test $_soundcard_header = "sys/soundcard.h"; then
3447 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3448 else
3449 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3452 echores "$_soundcard_h"
3455 echocheck "sys/dvdio.h"
3456 cat > $TMPC << EOF
3457 #include <unistd.h>
3458 #include <sys/dvdio.h>
3459 int main(void) { return 0; }
3461 _dvdio=no
3462 cc_check && _dvdio=yes
3463 if test "$_dvdio" = yes ; then
3464 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3465 else
3466 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3468 echores "$_dvdio"
3471 echocheck "sys/cdio.h"
3472 cat > $TMPC << EOF
3473 #include <unistd.h>
3474 #include <sys/cdio.h>
3475 int main(void) { return 0; }
3477 _cdio=no
3478 cc_check && _cdio=yes
3479 if test "$_cdio" = yes ; then
3480 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3481 else
3482 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3484 echores "$_cdio"
3487 echocheck "linux/cdrom.h"
3488 cat > $TMPC << EOF
3489 #include <sys/types.h>
3490 #include <linux/cdrom.h>
3491 int main(void) { return 0; }
3493 _cdrom=no
3494 cc_check && _cdrom=yes
3495 if test "$_cdrom" = yes ; then
3496 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3497 else
3498 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3500 echores "$_cdrom"
3503 echocheck "dvd.h"
3504 cat > $TMPC << EOF
3505 #include <dvd.h>
3506 int main(void) { return 0; }
3508 _dvd=no
3509 cc_check && _dvd=yes
3510 if test "$_dvd" = yes ; then
3511 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3512 else
3513 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3515 echores "$_dvd"
3518 if bsdos; then
3519 echocheck "BSDI dvd.h"
3520 cat > $TMPC << EOF
3521 #include <dvd.h>
3522 int main(void) { return 0; }
3524 _bsdi_dvd=no
3525 cc_check && _bsdi_dvd=yes
3526 if test "$_bsdi_dvd" = yes ; then
3527 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3528 else
3529 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3531 echores "$_bsdi_dvd"
3532 fi #if bsdos
3535 if hpux; then
3536 # also used by AIX, but AIX does not support VCD and/or libdvdread
3537 echocheck "HP-UX SCSI header"
3538 cat > $TMPC << EOF
3539 #include <sys/scsi.h>
3540 int main(void) { return 0; }
3542 _hpux_scsi_h=no
3543 cc_check && _hpux_scsi_h=yes
3544 if test "$_hpux_scsi_h" = yes ; then
3545 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3546 else
3547 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3549 echores "$_hpux_scsi_h"
3550 fi #if hpux
3553 if sunos; then
3554 echocheck "userspace SCSI headers (Solaris)"
3555 cat > $TMPC << EOF
3556 #include <unistd.h>
3557 #include <stropts.h>
3558 #include <sys/scsi/scsi_types.h>
3559 #include <sys/scsi/impl/uscsi.h>
3560 int main(void) { return 0; }
3562 _sol_scsi_h=no
3563 cc_check && _sol_scsi_h=yes
3564 if test "$_sol_scsi_h" = yes ; then
3565 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3566 else
3567 def_sol_scsi_h='#undef SOLARIS_USCSI'
3569 echores "$_sol_scsi_h"
3570 fi #if sunos
3573 echocheck "termcap"
3574 if test "$_termcap" = auto ; then
3575 cat > $TMPC <<EOF
3576 #include <stddef.h>
3577 #include <term.h>
3578 int main(void) { tgetent(NULL, NULL); return 0; }
3580 _termcap=no
3581 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3582 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3583 && _termcap=yes && break
3584 done
3586 if test "$_termcap" = yes ; then
3587 def_termcap='#define HAVE_TERMCAP 1'
3588 test $_ld_tmp && _res_comment="using $_ld_tmp"
3589 else
3590 def_termcap='#undef HAVE_TERMCAP'
3592 echores "$_termcap"
3595 echocheck "termios"
3596 def_termios='#undef HAVE_TERMIOS'
3597 def_termios_h='#undef HAVE_TERMIOS_H'
3598 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3599 if test "$_termios" = auto ; then
3600 _termios=no
3601 for _termios_header in "sys/termios.h" "termios.h"; do
3602 cat > $TMPC <<EOF
3603 #include <$_termios_header>
3604 int main(void) { return 0; }
3606 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3607 done
3610 if test "$_termios" = yes ; then
3611 def_termios='#define HAVE_TERMIOS 1'
3612 if test "$_termios_header" = "termios.h" ; then
3613 def_termios_h='#define HAVE_TERMIOS_H 1'
3614 else
3615 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3618 echores "$_termios"
3621 echocheck "shm"
3622 if test "$_shm" = auto ; then
3623 cat > $TMPC << EOF
3624 #include <sys/types.h>
3625 #include <sys/shm.h>
3626 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3628 _shm=no
3629 cc_check && _shm=yes
3631 if test "$_shm" = yes ; then
3632 def_shm='#define HAVE_SHM 1'
3633 else
3634 def_shm='#undef HAVE_SHM'
3636 echores "$_shm"
3639 echocheck "strsep()"
3640 cat > $TMPC << EOF
3641 #include <string.h>
3642 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3644 _strsep=no
3645 cc_check && _strsep=yes
3646 if test "$_strsep" = yes ; then
3647 def_strsep='#define HAVE_STRSEP 1'
3648 _need_strsep=no
3649 else
3650 def_strsep='#undef HAVE_STRSEP'
3651 _need_strsep=yes
3653 echores "$_strsep"
3656 echocheck "vsscanf()"
3657 cat > $TMPC << EOF
3658 #define _ISOC99_SOURCE
3659 #include <stdarg.h>
3660 #include <stdio.h>
3661 int main(void) { vsscanf(0, 0, 0); return 0; }
3663 _vsscanf=no
3664 cc_check && _vsscanf=yes
3665 if test "$_vsscanf" = yes ; then
3666 def_vsscanf='#define HAVE_VSSCANF 1'
3667 _need_vsscanf=no
3668 else
3669 def_vsscanf='#undef HAVE_VSSCANF'
3670 _need_vsscanf=yes
3672 echores "$_vsscanf"
3675 echocheck "swab()"
3676 cat > $TMPC << EOF
3677 #define _XOPEN_SOURCE 600
3678 #include <unistd.h>
3679 int main(void) { swab(0, 0, 0); return 0; }
3681 _swab=no
3682 cc_check && _swab=yes
3683 if test "$_swab" = yes ; then
3684 def_swab='#define HAVE_SWAB 1'
3685 _need_swab=no
3686 else
3687 def_swab='#undef HAVE_SWAB'
3688 _need_swab=yes
3690 echores "$_swab"
3692 echocheck "POSIX select()"
3693 cat > $TMPC << EOF
3694 #include <stdio.h>
3695 #include <stdlib.h>
3696 #include <sys/types.h>
3697 #include <string.h>
3698 #include <sys/time.h>
3699 #include <unistd.h>
3700 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3702 _posix_select=no
3703 def_posix_select='#undef HAVE_POSIX_SELECT'
3704 #select() of kLIBC (OS/2) supports socket only
3705 ! os2 && cc_check && _posix_select=yes \
3706 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3707 echores "$_posix_select"
3710 echocheck "audio select()"
3711 if test "$_select" = no ; then
3712 def_select='#undef HAVE_AUDIO_SELECT'
3713 elif test "$_select" = yes ; then
3714 def_select='#define HAVE_AUDIO_SELECT 1'
3716 echores "$_select"
3719 echocheck "gettimeofday()"
3720 cat > $TMPC << EOF
3721 #include <stdio.h>
3722 #include <sys/time.h>
3723 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3725 _gettimeofday=no
3726 cc_check && _gettimeofday=yes
3727 if test "$_gettimeofday" = yes ; then
3728 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3729 _need_gettimeofday=no
3730 else
3731 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3732 _need_gettimeofday=yes
3734 echores "$_gettimeofday"
3737 echocheck "glob()"
3738 cat > $TMPC << EOF
3739 #include <stdio.h>
3740 #include <glob.h>
3741 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3743 _glob=no
3744 cc_check && _glob=yes
3745 if test "$_glob" = yes ; then
3746 def_glob='#define HAVE_GLOB 1'
3747 _need_glob=no
3748 else
3749 def_glob='#undef HAVE_GLOB'
3750 _need_glob=yes
3752 echores "$_glob"
3755 echocheck "setenv()"
3756 cat > $TMPC << EOF
3757 #include <stdlib.h>
3758 int main(void) { setenv("","",0); return 0; }
3760 _setenv=no
3761 cc_check && _setenv=yes
3762 if test "$_setenv" = yes ; then
3763 def_setenv='#define HAVE_SETENV 1'
3764 _need_setenv=no
3765 else
3766 def_setenv='#undef HAVE_SETENV'
3767 _need_setenv=yes
3769 echores "$_setenv"
3772 if sunos; then
3773 echocheck "sysi86()"
3774 cat > $TMPC << EOF
3775 #include <sys/sysi86.h>
3776 int main(void) { sysi86(0); return 0; }
3778 _sysi86=no
3779 cc_check && _sysi86=yes
3780 if test "$_sysi86" = yes ; then
3781 def_sysi86='#define HAVE_SYSI86 1'
3782 cat > $TMPC << EOF
3783 #include <sys/sysi86.h>
3784 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3786 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3787 else
3788 def_sysi86='#undef HAVE_SYSI86'
3790 echores "$_sysi86"
3791 fi #if sunos
3794 echocheck "sys/sysinfo.h"
3795 cat > $TMPC << EOF
3796 #include <sys/sysinfo.h>
3797 int main(void) {
3798 struct sysinfo s_info;
3799 sysinfo(&s_info);
3800 return 0;
3803 _sys_sysinfo=no
3804 cc_check && _sys_sysinfo=yes
3805 if test "$_sys_sysinfo" = yes ; then
3806 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3807 else
3808 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3810 echores "$_sys_sysinfo"
3813 if darwin; then
3815 echocheck "Mac OS X Finder Support"
3816 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3817 if test "$_macosx_finder" = yes ; then
3818 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3819 extra_ldflags="$extra_ldflags -framework Carbon"
3821 echores "$_macosx_finder"
3823 echocheck "Mac OS X Bundle file locations"
3824 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3825 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3826 if test "$_macosx_bundle" = yes ; then
3827 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3828 extra_ldflags="$extra_ldflags -framework Carbon"
3830 echores "$_macosx_bundle"
3832 echocheck "Apple Remote"
3833 if test "$_apple_remote" = auto ; then
3834 _apple_remote=no
3835 cat > $TMPC <<EOF
3836 #include <stdio.h>
3837 #include <IOKit/IOCFPlugIn.h>
3838 int main(void) {
3839 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3840 CFMutableDictionaryRef hidMatchDictionary;
3841 IOReturn ioReturnValue;
3843 // Set up a matching dictionary to search the I/O Registry by class.
3844 // name for all HID class devices
3845 hidMatchDictionary = IOServiceMatching("AppleIRController");
3847 // Now search I/O Registry for matching devices.
3848 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3849 hidMatchDictionary, &hidObjectIterator);
3851 // If search is unsuccessful, return nonzero.
3852 if (ioReturnValue != kIOReturnSuccess ||
3853 !IOIteratorIsValid(hidObjectIterator)) {
3854 return 1;
3856 return 0;
3859 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3861 if test "$_apple_remote" = yes ; then
3862 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3863 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3864 else
3865 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3867 echores "$_apple_remote"
3869 fi #if darwin
3871 if linux; then
3873 echocheck "Apple IR"
3874 if test "$_apple_ir" = auto ; then
3875 _apple_ir=no
3876 cat > $TMPC <<EOF
3877 #include <linux/types.h>
3878 #include <linux/input.h>
3879 int main(void) {
3880 struct input_event ev;
3881 struct input_id id;
3882 return 0;
3885 cc_check && tmp_run && _apple_ir=yes
3887 if test "$_apple_ir" = yes ; then
3888 def_apple_ir='#define CONFIG_APPLE_IR 1'
3889 else
3890 def_apple_ir='#undef CONFIG_APPLE_IR'
3892 echores "$_apple_ir"
3893 fi #if linux
3895 echocheck "pkg-config"
3896 _pkg_config=pkg-config
3897 if $($_pkg_config --version > /dev/null 2>&1); then
3898 if test "$_ld_static"; then
3899 _pkg_config="$_pkg_config --static"
3901 echores "yes"
3902 else
3903 _pkg_config=false
3904 echores "no"
3908 echocheck "Samba support (libsmbclient)"
3909 if test "$_smb" = yes; then
3910 extra_ldflags="$extra_ldflags -lsmbclient"
3912 if test "$_smb" = auto; then
3913 _smb=no
3914 cat > $TMPC << EOF
3915 #include <libsmbclient.h>
3916 int main(void) { smbc_opendir("smb://"); return 0; }
3918 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3919 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3920 _smb=yes && break
3921 done
3924 if test "$_smb" = yes; then
3925 def_smb="#define CONFIG_LIBSMBCLIENT"
3926 _inputmodules="smb $_inputmodules"
3927 else
3928 def_smb="#undef CONFIG_LIBSMBCLIENT"
3929 _noinputmodules="smb $_noinputmodules"
3931 echores "$_smb"
3934 #########
3935 # VIDEO #
3936 #########
3939 echocheck "tdfxfb"
3940 if test "$_tdfxfb" = yes ; then
3941 def_tdfxfb='#define CONFIG_TDFXFB 1'
3942 _vomodules="tdfxfb $_vomodules"
3943 else
3944 def_tdfxfb='#undef CONFIG_TDFXFB'
3945 _novomodules="tdfxfb $_novomodules"
3947 echores "$_tdfxfb"
3949 echocheck "s3fb"
3950 if test "$_s3fb" = yes ; then
3951 def_s3fb='#define CONFIG_S3FB 1'
3952 _vomodules="s3fb $_vomodules"
3953 else
3954 def_s3fb='#undef CONFIG_S3FB'
3955 _novomodules="s3fb $_novomodules"
3957 echores "$_s3fb"
3959 echocheck "wii"
3960 if test "$_wii" = yes ; then
3961 def_wii='#define CONFIG_WII 1'
3962 _vomodules="wii $_vomodules"
3963 else
3964 def_wii='#undef CONFIG_WII'
3965 _novomodules="wii $_novomodules"
3967 echores "$_wii"
3969 echocheck "tdfxvid"
3970 if test "$_tdfxvid" = yes ; then
3971 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3972 _vomodules="tdfx_vid $_vomodules"
3973 else
3974 def_tdfxvid='#undef CONFIG_TDFX_VID'
3975 _novomodules="tdfx_vid $_novomodules"
3977 echores "$_tdfxvid"
3979 echocheck "xvr100"
3980 if test "$_xvr100" = auto ; then
3981 cat > $TMPC << EOF
3982 #include <unistd.h>
3983 #include <sys/fbio.h>
3984 #include <sys/visual_io.h>
3985 int main(void) {
3986 struct vis_identifier ident;
3987 struct fbgattr attr;
3988 ioctl(0, VIS_GETIDENTIFIER, &ident);
3989 ioctl(0, FBIOGATTR, &attr);
3990 return 0;
3993 _xvr100=no
3994 cc_check && _xvr100=yes
3996 if test "$_xvr100" = yes ; then
3997 def_xvr100='#define CONFIG_XVR100 1'
3998 _vomodules="xvr100 $_vomodules"
3999 else
4000 def_tdfxvid='#undef CONFIG_XVR100'
4001 _novomodules="xvr100 $_novomodules"
4003 echores "$_xvr100"
4005 echocheck "tga"
4006 if test "$_tga" = yes ; then
4007 def_tga='#define CONFIG_TGA 1'
4008 _vomodules="tga $_vomodules"
4009 else
4010 def_tga='#undef CONFIG_TGA'
4011 _novomodules="tga $_novomodules"
4013 echores "$_tga"
4016 echocheck "md5sum support"
4017 if test "$_md5sum" = yes; then
4018 def_md5sum="#define CONFIG_MD5SUM"
4019 _vomodules="md5sum $_vomodules"
4020 else
4021 def_md5sum="#undef CONFIG_MD5SUM"
4022 _novomodules="md5sum $_novomodules"
4024 echores "$_md5sum"
4027 echocheck "yuv4mpeg support"
4028 if test "$_yuv4mpeg" = yes; then
4029 def_yuv4mpeg="#define CONFIG_YUV4MPEG"
4030 _vomodules="yuv4mpeg $_vomodules"
4031 else
4032 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4033 _novomodules="yuv4mpeg $_novomodules"
4035 echores "$_yuv4mpeg"
4038 echocheck "bl"
4039 if test "$_bl" = yes ; then
4040 def_bl='#define CONFIG_BL 1'
4041 _vomodules="bl $_vomodules"
4042 else
4043 def_bl='#undef CONFIG_BL'
4044 _novomodules="bl $_novomodules"
4046 echores "$_bl"
4049 echocheck "DirectFB"
4050 if test "$_directfb" = auto ; then
4051 _directfb=no
4052 cat > $TMPC <<EOF
4053 #include <directfb.h>
4054 int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
4056 for _inc_tmp in "" -I/usr/local/include/directfb \
4057 -I/usr/include/directfb -I/usr/local/include; do
4058 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4059 extra_cflags="$extra_cflags $_inc_tmp" && break
4060 done
4063 dfb_version() {
4064 expr $1 \* 65536 + $2 \* 256 + $3
4067 if test "$_directfb" = yes; then
4068 cat > $TMPC << EOF
4069 #include <directfb_version.h>
4071 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4074 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4075 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4076 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4077 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4078 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4079 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4080 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4081 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4082 _res_comment="$_directfb_version"
4083 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4084 else
4085 def_directfb_version='#undef DIRECTFBVERSION'
4086 _directfb=no
4087 _res_comment="version >=0.9.13 required"
4089 else
4090 _directfb=no
4091 _res_comment="failed to get version"
4094 echores "$_directfb"
4096 if test "$_directfb" = yes ; then
4097 def_directfb='#define CONFIG_DIRECTFB 1'
4098 _vomodules="directfb $_vomodules"
4099 libs_mplayer="$libs_mplayer -ldirectfb"
4100 else
4101 def_directfb='#undef CONFIG_DIRECTFB'
4102 _novomodules="directfb $_novomodules"
4104 if test "$_dfbmga" = yes; then
4105 _vomodules="dfbmga $_vomodules"
4106 def_dfbmga='#define CONFIG_DFBMGA 1'
4107 else
4108 _novomodules="dfbmga $_novomodules"
4109 def_dfbmga='#undef CONFIG_DFBMGA'
4113 echocheck "X11 headers presence"
4114 _x11_headers="no"
4115 _res_comment="check if the dev(el) packages are installed"
4116 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4117 if test -f "$I/X11/Xlib.h" ; then
4118 _x11_headers="yes"
4119 _res_comment=""
4120 break
4122 done
4123 if test $_cross_compile = no; then
4124 for I in /usr/X11/include /usr/X11R7/include /usr/X11R6/include \
4125 /usr/include/X11R6 /usr/openwin/include ; do
4126 if test -f "$I/X11/Xlib.h" ; then
4127 extra_cflags="$extra_cflags -I$I"
4128 _x11_headers="yes"
4129 _res_comment="using $I"
4130 break
4132 done
4134 echores "$_x11_headers"
4137 echocheck "X11"
4138 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4139 cat > $TMPC <<EOF
4140 #include <X11/Xlib.h>
4141 #include <X11/Xutil.h>
4142 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4144 for I in "" -L/usr/X11R7/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4145 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/X11R6/lib64 \
4146 -L/usr/lib ; do
4147 if netbsd; then
4148 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4149 else
4150 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4152 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4153 && _x11=yes && break
4154 done
4156 if test "$_x11" = yes ; then
4157 def_x11='#define CONFIG_X11 1'
4158 _vomodules="x11 xover $_vomodules"
4159 else
4160 _x11=no
4161 def_x11='#undef CONFIG_X11'
4162 _novomodules="x11 $_novomodules"
4163 _res_comment="check if the dev(el) packages are installed"
4164 # disable stuff that depends on X
4165 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4167 echores "$_x11"
4169 echocheck "Xss screensaver extensions"
4170 if test "$_xss" = auto ; then
4171 cat > $TMPC << EOF
4172 #include <X11/Xlib.h>
4173 #include <X11/extensions/scrnsaver.h>
4174 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4176 _xss=no
4177 cc_check -lXss && _xss=yes
4179 if test "$_xss" = yes ; then
4180 def_xss='#define CONFIG_XSS 1'
4181 libs_mplayer="$libs_mplayer -lXss"
4182 else
4183 def_xss='#undef CONFIG_XSS'
4185 echores "$_xss"
4187 echocheck "DPMS"
4188 _xdpms3=no
4189 _xdpms4=no
4190 if test "$_x11" = yes ; then
4191 cat > $TMPC <<EOF
4192 #include <X11/Xmd.h>
4193 #include <X11/Xlib.h>
4194 #include <X11/Xutil.h>
4195 #include <X11/Xatom.h>
4196 #include <X11/extensions/dpms.h>
4197 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4199 cc_check -lXdpms && _xdpms3=yes
4200 cat > $TMPC <<EOF
4201 #include <X11/Xlib.h>
4202 #include <X11/extensions/dpms.h>
4203 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4205 cc_check -lXext && _xdpms4=yes
4207 if test "$_xdpms4" = yes ; then
4208 def_xdpms='#define CONFIG_XDPMS 1'
4209 _res_comment="using Xdpms 4"
4210 echores "yes"
4211 elif test "$_xdpms3" = yes ; then
4212 def_xdpms='#define CONFIG_XDPMS 1'
4213 libs_mplayer="$libs_mplayer -lXdpms"
4214 _res_comment="using Xdpms 3"
4215 echores "yes"
4216 else
4217 def_xdpms='#undef CONFIG_XDPMS'
4218 echores "no"
4222 echocheck "Xv"
4223 if test "$_xv" = auto ; then
4224 cat > $TMPC <<EOF
4225 #include <X11/Xlib.h>
4226 #include <X11/extensions/Xvlib.h>
4227 int main(void) {
4228 (void) XvGetPortAttribute(0, 0, 0, 0);
4229 (void) XvQueryPortAttributes(0, 0, 0);
4230 return 0; }
4232 _xv=no
4233 cc_check -lXv && _xv=yes
4236 if test "$_xv" = yes ; then
4237 def_xv='#define CONFIG_XV 1'
4238 libs_mplayer="$libs_mplayer -lXv"
4239 _vomodules="xv $_vomodules"
4240 else
4241 def_xv='#undef CONFIG_XV'
4242 _novomodules="xv $_novomodules"
4244 echores "$_xv"
4247 echocheck "XvMC"
4248 if test "$_xv" = yes && test "$_xvmc" != no ; then
4249 _xvmc=no
4250 cat > $TMPC <<EOF
4251 #include <X11/Xlib.h>
4252 #include <X11/extensions/Xvlib.h>
4253 #include <X11/extensions/XvMClib.h>
4254 int main(void) {
4255 (void) XvMCQueryExtension(0,0,0);
4256 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4257 return 0; }
4259 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4260 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4261 done
4263 if test "$_xvmc" = yes ; then
4264 def_xvmc='#define CONFIG_XVMC 1'
4265 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4266 _vomodules="xvmc $_vomodules"
4267 _res_comment="using $_xvmclib"
4268 else
4269 def_xvmc='#define CONFIG_XVMC 0'
4270 _novomodules="xvmc $_novomodules"
4271 _libavdecoders=$(echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER//)
4273 echores "$_xvmc"
4276 echocheck "VDPAU"
4277 if test "$_vdpau" = auto ; then
4278 _vdpau=no
4279 if test "$_dl" = yes ; then
4280 cat > $TMPC <<EOF
4281 #include <vdpau/vdpau_x11.h>
4282 int main(void) {return VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE;}
4284 cc_check && _vdpau=yes
4287 if test "$_vdpau" = yes ; then
4288 def_vdpau='#define CONFIG_VDPAU 1'
4289 _vomodules="vdpau $_vomodules"
4290 else
4291 def_vdpau='#define CONFIG_VDPAU 0'
4292 _novomodules="vdpau $_novomodules"
4293 _libavdecoders=$(echo $_libavdecoders | sed -e s/MPEG_VDPAU_DECODER// -e s/MPEG1_VDPAU_DECODER// -e s/H264_VDPAU_DECODER// -e s/WMV3_VDPAU_DECODER// -e s/VC1_VDPAU_DECODER//)
4295 echores "$_vdpau"
4298 echocheck "Xinerama"
4299 if test "$_xinerama" = auto ; then
4300 cat > $TMPC <<EOF
4301 #include <X11/Xlib.h>
4302 #include <X11/extensions/Xinerama.h>
4303 int main(void) { (void) XineramaIsActive(0); return 0; }
4305 _xinerama=no
4306 cc_check -lXinerama && _xinerama=yes
4309 if test "$_xinerama" = yes ; then
4310 def_xinerama='#define CONFIG_XINERAMA 1'
4311 libs_mplayer="$libs_mplayer -lXinerama"
4312 else
4313 def_xinerama='#undef CONFIG_XINERAMA'
4315 echores "$_xinerama"
4318 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4319 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4320 # named 'X extensions' or something similar.
4321 # This check may be useful for future mplayer versions (to change resolution)
4322 # If you run into problems, remove '-lXxf86vm'.
4323 echocheck "Xxf86vm"
4324 if test "$_vm" = auto ; then
4325 cat > $TMPC <<EOF
4326 #include <X11/Xlib.h>
4327 #include <X11/extensions/xf86vmode.h>
4328 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4330 _vm=no
4331 cc_check -lXxf86vm && _vm=yes
4333 if test "$_vm" = yes ; then
4334 def_vm='#define CONFIG_XF86VM 1'
4335 libs_mplayer="$libs_mplayer -lXxf86vm"
4336 else
4337 def_vm='#undef CONFIG_XF86VM'
4339 echores "$_vm"
4341 # Check for the presence of special keycodes, like audio control buttons
4342 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4343 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4344 # have these new keycodes.
4345 echocheck "XF86keysym"
4346 if test "$_xf86keysym" = auto; then
4347 _xf86keysym=no
4348 cat > $TMPC <<EOF
4349 #include <X11/Xlib.h>
4350 #include <X11/XF86keysym.h>
4351 int main(void) { return XF86XK_AudioPause; }
4353 cc_check && _xf86keysym=yes
4355 if test "$_xf86keysym" = yes ; then
4356 def_xf86keysym='#define CONFIG_XF86XK 1'
4357 else
4358 def_xf86keysym='#undef CONFIG_XF86XK'
4360 echores "$_xf86keysym"
4362 echocheck "DGA"
4363 if test "$_dga2" = auto && test "$_x11" = yes ; then
4364 cat > $TMPC << EOF
4365 #include <X11/Xlib.h>
4366 #include <X11/extensions/xf86dga.h>
4367 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4369 _dga2=no
4370 cc_check -lXxf86dga && _dga2=yes
4372 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4373 cat > $TMPC << EOF
4374 #include <X11/Xlib.h>
4375 #include <X11/extensions/xf86dga.h>
4376 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4378 _dga1=no
4379 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4382 _dga=no
4383 def_dga='#undef CONFIG_DGA'
4384 def_dga1='#undef CONFIG_DGA1'
4385 def_dga2='#undef CONFIG_DGA2'
4386 if test "$_dga1" = yes ; then
4387 _dga=yes
4388 def_dga1='#define CONFIG_DGA1 1'
4389 _res_comment="using DGA 1.0"
4390 elif test "$_dga2" = yes ; then
4391 _dga=yes
4392 def_dga2='#define CONFIG_DGA2 1'
4393 _res_comment="using DGA 2.0"
4395 if test "$_dga" = yes ; then
4396 def_dga='#define CONFIG_DGA 1'
4397 libs_mplayer="$libs_mplayer -lXxf86dga"
4398 _vomodules="dga $_vomodules"
4399 else
4400 _novomodules="dga $_novomodules"
4402 echores "$_dga"
4405 echocheck "3dfx"
4406 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4407 def_3dfx='#define CONFIG_3DFX 1'
4408 _vomodules="3dfx $_vomodules"
4409 else
4410 def_3dfx='#undef CONFIG_3DFX'
4411 _novomodules="3dfx $_novomodules"
4413 echores "$_3dfx"
4416 echocheck "OpenGL"
4417 #Note: this test is run even with --enable-gl since we autodetect linker flags
4418 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4419 cat > $TMPC << EOF
4420 #ifdef GL_WIN32
4421 #include <windows.h>
4422 #include <GL/gl.h>
4423 #else
4424 #include <GL/gl.h>
4425 #include <X11/Xlib.h>
4426 #include <GL/glx.h>
4427 #endif
4428 int main(void) {
4429 #ifdef GL_WIN32
4430 HDC dc;
4431 wglCreateContext(dc);
4432 #else
4433 glXCreateContext(NULL, NULL, NULL, True);
4434 #endif
4435 glFinish();
4436 return 0;
4439 _gl=no
4440 if cc_check -lGL $_ld_lm ; then
4441 _gl=yes
4442 libs_mplayer="$libs_mplayer -lGL $_ld_dl"
4443 elif cc_check -lGL $_ld_lm $_ld_pthread ; then
4444 _gl=yes
4445 libs_mplayer="$libs_mplayer -lGL $_ld_pthread $_ld_dl"
4446 elif cc_check -DGL_WIN32 -lopengl32 ; then
4447 _gl=yes
4448 _gl_win32=yes
4449 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4451 else
4452 _gl=no
4454 if test "$_gl" = yes ; then
4455 def_gl='#define CONFIG_GL 1'
4456 if test "$_gl_win32" = yes ; then
4457 def_gl_win32='#define GL_WIN32 1'
4458 _res_comment="win32 version"
4460 _vomodules="opengl $_vomodules"
4461 else
4462 def_gl='#undef CONFIG_GL'
4463 def_gl_win32='#undef GL_WIN32'
4464 _novomodules="opengl $_novomodules"
4466 echores "$_gl"
4469 echocheck "VIDIX"
4470 def_vidix='#undef CONFIG_VIDIX'
4471 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4472 _vidix_drv_cyberblade=no
4473 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4474 _vidix_drv_ivtv=no
4475 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4476 _vidix_drv_ivtv=no
4477 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4478 _vidix_drv_mach64=no
4479 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4480 _vidix_drv_mga=no
4481 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4482 _vidix_drv_mga_crtc2=no
4483 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4484 _vidix_drv_nvidia=no
4485 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4486 _vidix_drv_pm2=no
4487 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4488 _vidix_drv_pm3=no
4489 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4490 _vidix_drv_radeon=no
4491 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4492 _vidix_drv_rage128=no
4493 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4494 _vidix_drv_s3=no
4495 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4496 _vidix_drv_sh_veu=no
4497 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4498 _vidix_drv_sis=no
4499 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4500 _vidix_drv_unichrome=no
4501 if test "$_vidix" = auto ; then
4502 _vidix=no
4503 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4504 && _vidix=yes
4505 (ppc || alpha) && linux && _vidix=yes
4507 echores "$_vidix"
4509 if test "$_vidix" = yes ; then
4510 def_vidix='#define CONFIG_VIDIX 1'
4511 _vomodules="cvidix $_vomodules"
4512 test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4513 test $_ivtv = "yes" || _vidix_drivers=$(echo $_vidix_drivers | sed s/ivtv//)
4515 # some vidix drivers are architecture and os specific, discard them elsewhere
4516 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4517 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4519 for driver in $_vidix_drivers ; do
4520 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4521 eval _vidix_drv_${driver}=yes
4522 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4523 done
4525 echocheck "VIDIX PCI device name database"
4526 echores "$_vidix_pcidb"
4527 if test "$_vidix_pcidb" = yes ; then
4528 _vidix_pcidb_val=1
4529 else
4530 _vidix_pcidb_val=0
4533 echocheck "VIDIX dhahelper support"
4534 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4535 echores "$_dhahelper"
4537 echocheck "VIDIX svgalib_helper support"
4538 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4539 echores "$_svgalib_helper"
4541 else
4542 _novomodules="cvidix $_novomodules"
4545 if test "$_vidix" = yes && win32; then
4546 winvidix=yes
4547 _vomodules="winvidix $_vomodules"
4548 libs_mplayer="$libs_mplayer -lgdi32"
4549 else
4550 _novomodules="winvidix $_novomodules"
4552 if test "$_vidix" = yes && test "$_x11" = yes; then
4553 xvidix=yes
4554 _vomodules="xvidix $_vomodules"
4555 else
4556 _novomodules="xvidix $_novomodules"
4559 echocheck "/dev/mga_vid"
4560 if test "$_mga" = auto ; then
4561 _mga=no
4562 test -c /dev/mga_vid && _mga=yes
4564 if test "$_mga" = yes ; then
4565 def_mga='#define CONFIG_MGA 1'
4566 _vomodules="mga $_vomodules"
4567 else
4568 def_mga='#undef CONFIG_MGA'
4569 _novomodules="mga $_novomodules"
4571 echores "$_mga"
4574 echocheck "xmga"
4575 if test "$_xmga" = auto ; then
4576 _xmga=no
4577 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
4579 if test "$_xmga" = yes ; then
4580 def_xmga='#define CONFIG_XMGA 1'
4581 _vomodules="xmga $_vomodules"
4582 else
4583 def_xmga='#undef CONFIG_XMGA'
4584 _novomodules="xmga $_novomodules"
4586 echores "$_xmga"
4589 echocheck "GGI"
4590 if test "$_ggi" = auto ; then
4591 cat > $TMPC << EOF
4592 #include <ggi/ggi.h>
4593 int main(void) { ggiInit(); return 0; }
4595 _ggi=no
4596 cc_check -lggi && _ggi=yes
4598 if test "$_ggi" = yes ; then
4599 def_ggi='#define CONFIG_GGI 1'
4600 libs_mplayer="$libs_mplayer -lggi"
4601 _vomodules="ggi $_vomodules"
4602 else
4603 def_ggi='#undef CONFIG_GGI'
4604 _novomodules="ggi $_novomodules"
4606 echores "$_ggi"
4608 echocheck "GGI extension: libggiwmh"
4609 if test "$_ggiwmh" = auto ; then
4610 _ggiwmh=no
4611 cat > $TMPC << EOF
4612 #include <ggi/ggi.h>
4613 #include <ggi/wmh.h>
4614 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4616 cc_check -lggi -lggiwmh && _ggiwmh=yes
4618 # needed to get right output on obscure combination
4619 # like --disable-ggi --enable-ggiwmh
4620 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4621 def_ggiwmh='#define CONFIG_GGIWMH 1'
4622 libs_mplayer="$libs_mplayer -lggiwmh"
4623 else
4624 _ggiwmh=no
4625 def_ggiwmh='#undef CONFIG_GGIWMH'
4627 echores "$_ggiwmh"
4630 echocheck "AA"
4631 if test "$_aa" = auto ; then
4632 cat > $TMPC << EOF
4633 #include <aalib.h>
4634 extern struct aa_hardware_params aa_defparams;
4635 extern struct aa_renderparams aa_defrenderparams;
4636 int main(void) {
4637 aa_context *c;
4638 aa_renderparams *p;
4639 (void) aa_init(0, 0, 0);
4640 c = aa_autoinit(&aa_defparams);
4641 p = aa_getrenderparams();
4642 aa_autoinitkbd(c,0);
4643 return 0; }
4645 _aa=no
4646 for _ld_tmp in "-laa" ; do
4647 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4648 done
4650 if test "$_aa" = yes ; then
4651 def_aa='#define CONFIG_AA 1'
4652 if cygwin ; then
4653 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4655 _vomodules="aa $_vomodules"
4656 else
4657 def_aa='#undef CONFIG_AA'
4658 _novomodules="aa $_novomodules"
4660 echores "$_aa"
4663 echocheck "CACA"
4664 if test "$_caca" = auto ; then
4665 _caca=no
4666 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4667 cat > $TMPC << EOF
4668 #include <caca.h>
4669 #ifdef CACA_API_VERSION_1
4670 #include <caca0.h>
4671 #endif
4672 int main(void) { (void) caca_init(); return 0; }
4674 cc_check $(caca-config --libs) && _caca=yes
4677 if test "$_caca" = yes ; then
4678 def_caca='#define CONFIG_CACA 1'
4679 extra_cflags="$extra_cflags $(caca-config --cflags)"
4680 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4681 _vomodules="caca $_vomodules"
4682 else
4683 def_caca='#undef CONFIG_CACA'
4684 _novomodules="caca $_novomodules"
4686 echores "$_caca"
4689 echocheck "SVGAlib"
4690 if test "$_svga" = auto ; then
4691 cat > $TMPC << EOF
4692 #include <vga.h>
4693 int main(void) { return 0; }
4695 _svga=no
4696 cc_check -lvga $_ld_lm && _svga=yes
4698 if test "$_svga" = yes ; then
4699 def_svga='#define CONFIG_SVGALIB 1'
4700 libs_mplayer="$libs_mplayer -lvga"
4701 _vomodules="svga $_vomodules"
4702 else
4703 def_svga='#undef CONFIG_SVGALIB'
4704 _novomodules="svga $_novomodules"
4706 echores "$_svga"
4709 echocheck "FBDev"
4710 if test "$_fbdev" = auto ; then
4711 _fbdev=no
4712 linux && _fbdev=yes
4714 if test "$_fbdev" = yes ; then
4715 def_fbdev='#define CONFIG_FBDEV 1'
4716 _vomodules="fbdev $_vomodules"
4717 else
4718 def_fbdev='#undef CONFIG_FBDEV'
4719 _novomodules="fbdev $_novomodules"
4721 echores "$_fbdev"
4725 echocheck "DVB"
4726 if test "$_dvb" = auto ; then
4727 _dvb=no
4728 cat >$TMPC << EOF
4729 #include <poll.h>
4730 #include <sys/ioctl.h>
4731 #include <stdio.h>
4732 #include <time.h>
4733 #include <unistd.h>
4734 #include <ost/dmx.h>
4735 #include <ost/frontend.h>
4736 #include <ost/sec.h>
4737 #include <ost/video.h>
4738 #include <ost/audio.h>
4739 int main(void) {return 0;}
4741 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4742 cc_check $_inc_tmp && _dvb=yes && \
4743 extra_cflags="$extra_cflags $_inc_tmp" && break
4744 done
4746 echores "$_dvb"
4747 if test "$_dvb" = yes ; then
4748 def_dvb='#define CONFIG_DVB 1'
4749 def_dvbin='#define CONFIG_DVBIN 1'
4750 _aomodules="mpegpes(dvb) $_aomodules"
4751 _vomodules="mpegpes(dvb) $_vomodules"
4754 echocheck "DVB HEAD"
4755 if test "$_dvbhead" = auto ; then
4756 _dvbhead=no
4758 cat >$TMPC << EOF
4759 #include <poll.h>
4760 #include <sys/ioctl.h>
4761 #include <stdio.h>
4762 #include <time.h>
4763 #include <unistd.h>
4764 #include <linux/dvb/dmx.h>
4765 #include <linux/dvb/frontend.h>
4766 #include <linux/dvb/video.h>
4767 #include <linux/dvb/audio.h>
4768 int main(void) {return 0;}
4770 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4771 cc_check $_inc_tmp && _dvbhead=yes && \
4772 extra_cflags="$extra_cflags $_inc_tmp" && break
4773 done
4775 echores "$_dvbhead"
4776 if test "$_dvbhead" = yes ; then
4777 def_dvb='#define CONFIG_DVB 1'
4778 def_dvb_head='#define CONFIG_DVB_HEAD 1'
4779 def_dvbin='#define CONFIG_DVBIN 1'
4780 _aomodules="mpegpes(dvb) $_aomodules"
4781 _vomodules="mpegpes(dvb) $_vomodules"
4784 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4785 def_dvb='#undef CONFIG_DVB'
4786 def_dvb_head='#undef CONFIG_DVB_HEAD'
4787 def_dvbin='#undef CONFIG_DVBIN '
4788 _aomodules="mpegpes(file) $_aomodules"
4789 _vomodules="mpegpes(file) $_vomodules"
4792 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4793 _dvbin=yes
4794 _inputmodules="dvb $_inputmodules"
4795 else
4796 _dvbin=no
4797 _noinputmodules="dvb $_noinputmodules"
4801 if darwin; then
4803 echocheck "Quartz"
4804 if test "$_quartz" = auto ; then
4805 cat > $TMPC <<EOF
4806 #include <Carbon/Carbon.h>
4807 #include <QuickTime/QuickTime.h>
4808 int main(void) {
4809 EnterMovies();
4810 ExitMovies();
4811 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4812 return 0;
4815 _quartz=no
4816 cc_check -framework Carbon -framework QuickTime && _quartz=yes
4818 if test "$_quartz" = yes ; then
4819 libs_mplayer="$libs_mplayer -framework Carbon -framework QuickTime"
4820 def_quartz='#define CONFIG_QUARTZ 1'
4821 _vomodules="quartz $_vomodules"
4822 else
4823 def_quartz='#undef CONFIG_QUARTZ'
4824 _novomodules="quartz $_novomodules"
4826 echores $_quartz
4828 echocheck "CoreVideo"
4829 if test "$_corevideo" = auto ; then
4830 cat > $TMPC <<EOF
4831 #include <Carbon/Carbon.h>
4832 #include <CoreServices/CoreServices.h>
4833 #include <OpenGL/OpenGL.h>
4834 #include <QuartzCore/CoreVideo.h>
4835 int main(void) { return 0; }
4837 _corevideo=no
4838 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4840 if test "$_corevideo" = yes ; then
4841 _vomodules="corevideo $_vomodules"
4842 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4843 def_corevideo='#define CONFIG_COREVIDEO 1'
4844 else
4845 _novomodules="corevideo $_novomodules"
4846 def_corevideo='#undef CONFIG_COREVIDEO'
4848 echores "$_corevideo"
4850 fi #if darwin
4853 echocheck "PNG support"
4854 if test "$_png" = auto ; then
4855 _png=no
4856 if irix ; then
4857 # Don't check for -lpng on irix since it has its own libpng
4858 # incompatible with the GNU libpng
4859 _res_comment="disabled on irix (not GNU libpng)"
4860 else
4861 cat > $TMPC << EOF
4862 #include <png.h>
4863 #include <string.h>
4864 int main(void) {
4865 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4866 printf("libpng: %s\n", png_libpng_ver);
4867 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4870 if cc_check -lpng -lz $_ld_lm ; then
4871 if tmp_run ; then
4872 _png=yes
4873 else
4874 _res_comment="mismatch of library and header versions"
4879 echores "$_png"
4880 if test "$_png" = yes ; then
4881 def_png='#define CONFIG_PNG 1'
4882 extra_ldflags="$extra_ldflags -lpng -lz"
4883 _vomodules="png $_vomodules"
4884 else
4885 def_png='#undef CONFIG_PNG'
4886 _novomodules="png $_novomodules"
4889 echocheck "MNG support"
4890 if test "$_mng" = auto ; then
4891 _mng=no
4892 cat > $TMPC << EOF
4893 #include <libmng.h>
4894 int main(void) {
4895 const char * p_ver = mng_version_text();
4896 return !p_ver || p_ver[0] == 0;
4899 if cc_check -lmng -lz $_ld_lm ; then
4900 _mng=yes
4903 echores "$_mng"
4904 if test "$_mng" = yes ; then
4905 def_mng='#define CONFIG_MNG 1'
4906 extra_ldflags="$extra_ldflags -lmng -lz"
4907 else
4908 def_mng='#undef CONFIG_MNG'
4911 echocheck "JPEG support"
4912 if test "$_jpeg" = auto ; then
4913 _jpeg=no
4914 cat > $TMPC << EOF
4915 #include <stdio.h>
4916 #include <stdlib.h>
4917 #include <setjmp.h>
4918 #include <string.h>
4919 #include <jpeglib.h>
4920 int main(void) { return 0; }
4922 if cc_check -ljpeg $_ld_lm ; then
4923 if tmp_run ; then
4924 _jpeg=yes
4928 echores "$_jpeg"
4930 if test "$_jpeg" = yes ; then
4931 def_jpeg='#define CONFIG_JPEG 1'
4932 _vomodules="jpeg $_vomodules"
4933 extra_ldflags="$extra_ldflags -ljpeg"
4934 else
4935 def_jpeg='#undef CONFIG_JPEG'
4936 _novomodules="jpeg $_novomodules"
4941 echocheck "PNM support"
4942 if test "$_pnm" = yes; then
4943 def_pnm="#define CONFIG_PNM 1"
4944 _vomodules="pnm $_vomodules"
4945 else
4946 def_pnm="#undef CONFIG_PNM"
4947 _novomodules="pnm $_novomodules"
4949 echores "$_pnm"
4953 echocheck "GIF support"
4954 # This is to appease people who want to force gif support.
4955 # If it is forced to yes, then we still do checks to determine
4956 # which gif library to use.
4957 if test "$_gif" = yes ; then
4958 _force_gif=yes
4959 _gif=auto
4962 if test "$_gif" = auto ; then
4963 _gif=no
4964 cat > $TMPC << EOF
4965 #include <gif_lib.h>
4966 int main(void) { return 0; }
4968 for _ld_gif in "-lungif" "-lgif" ; do
4969 cc_check $_ld_gif && tmp_run && _gif=yes && break
4970 done
4973 # If no library was found, and the user wants support forced,
4974 # then we force it on with libgif, as this is the safest
4975 # assumption IMHO. (libungif & libregif both create symbolic
4976 # links to libgif. We also assume that no x11 support is needed,
4977 # because if you are forcing this, then you _should_ know what
4978 # you are doing. [ Besides, package maintainers should never
4979 # have compiled x11 deps into libungif in the first place. ] )
4980 # </rant>
4981 # --Joey
4982 if test "$_force_gif" = yes && test "$_gif" = no ; then
4983 _gif=yes
4984 _ld_gif="-lgif"
4987 if test "$_gif" = yes ; then
4988 def_gif='#define CONFIG_GIF 1'
4989 _codecmodules="gif $_codecmodules"
4990 _vomodules="gif89a $_vomodules"
4991 _res_comment="old version, some encoding functions disabled"
4992 def_gif_4='#undef CONFIG_GIF_4'
4993 extra_ldflags="$extra_ldflags $_ld_gif"
4995 cat > $TMPC << EOF
4996 #include <signal.h>
4997 #include <gif_lib.h>
4998 void catch() { exit(1); }
4999 int main(void) {
5000 signal(SIGSEGV, catch); // catch segfault
5001 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
5002 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
5003 return 0;
5006 if cc_check "$_ld_gif" && tmp_run ; then
5007 def_gif_4='#define CONFIG_GIF_4 1'
5008 _res_comment=""
5010 else
5011 def_gif='#undef CONFIG_GIF'
5012 def_gif_4='#undef CONFIG_GIF_4'
5013 _novomodules="gif89a $_novomodules"
5014 _nocodecmodules="gif $_nocodecmodules"
5016 echores "$_gif"
5019 case "$_gif" in yes*)
5020 echocheck "broken giflib workaround"
5021 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5023 cat > $TMPC << EOF
5024 #include <gif_lib.h>
5025 int main(void) {
5026 GifFileType gif;
5027 printf("UserData is at address %p\n", gif.UserData);
5028 return 0;
5031 if cc_check "$_ld_gif" && tmp_run ; then
5032 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5033 echores "disabled"
5034 else
5035 echores "enabled"
5038 esac
5041 echocheck "VESA support"
5042 if test "$_vesa" = auto ; then
5043 cat > $TMPC << EOF
5044 #include <vbe.h>
5045 int main(void) { vbeVersion(); return 0; }
5047 _vesa=no
5048 cc_check -lvbe -llrmi && _vesa=yes
5050 if test "$_vesa" = yes ; then
5051 def_vesa='#define CONFIG_VESA 1'
5052 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5053 _vomodules="vesa $_vomodules"
5054 else
5055 def_vesa='#undef CONFIG_VESA'
5056 _novomodules="vesa $_novomodules"
5058 echores "$_vesa"
5060 #################
5061 # VIDEO + AUDIO #
5062 #################
5065 echocheck "SDL"
5066 if test -z "$_sdlconfig" ; then
5067 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5068 _sdlconfig="sdl-config"
5069 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5070 _sdlconfig="sdl11-config"
5071 else
5072 _sdlconfig=false
5075 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5076 cat > $TMPC << EOF
5077 #include <SDL.h>
5078 int main(int argc, char *argv[]) {
5079 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5080 return 0;
5083 _sdl=no
5084 if "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5085 if cc_check $($_sdlconfig --cflags) $($_sdlconfig --libs) >>"$TMPLOG" 2>&1 ; then
5086 _sdlversion=$($_sdlconfig --version | sed 's/[^0-9]//g')
5087 if test "$_sdlversion" -gt 116 ; then
5088 if test "$_sdlversion" -lt 121 ; then
5089 def_sdlbuggy='#define BUGGY_SDL'
5090 else
5091 def_sdlbuggy='#undef BUGGY_SDL'
5093 _sdl=yes
5098 if test "$_sdl" = yes ; then
5099 def_sdl='#define CONFIG_SDL 1'
5100 if cygwin ; then
5101 libs_mplayer="$libs_mplayer $($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5102 extra_cflags="$extra_cflags $($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5103 elif mingw32 ; then
5104 libs_mplayer="$libs_mplayer $($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)"
5105 extra_cflags="$extra_cflags $($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)"
5106 else
5107 libs_mplayer="$libs_mplayer $($_sdlconfig --libs)"
5108 extra_cflags="$extra_cflags $($_sdlconfig --cflags | sed s/-D_GNU_SOURCE=1//)"
5110 _vomodules="sdl $_vomodules"
5111 _aomodules="sdl $_aomodules"
5112 _res_comment="using $_sdlconfig"
5113 else
5114 def_sdl='#undef CONFIG_SDL'
5115 _novomodules="sdl $_novomodules"
5116 _noaomodules="sdl $_noaomodules"
5118 echores "$_sdl"
5121 if os2 ; then
5122 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5123 if test "$_kva" = auto; then
5124 cat > $TMPC << EOF
5125 #include <os2.h>
5126 #include <kva.h>
5127 int main( void ) { return 0; }
5129 _kva=no;
5130 cc_check -lkva && _kva=yes
5132 if test "$_kva" = yes ; then
5133 def_kva='#define CONFIG_KVA 1'
5134 libs_mplayer="$libs_mplayer -lkva"
5135 _vomodules="kva $_vomodules"
5136 else
5137 def_kva='#undef CONFIG_KVA'
5138 _novomodules="kva $_novomodules"
5140 echores "$_kva"
5141 fi #if os2
5144 if win32; then
5146 echocheck "Windows waveout"
5147 if test "$_win32waveout" = auto ; then
5148 cat > $TMPC << EOF
5149 #include <windows.h>
5150 #include <mmsystem.h>
5151 int main(void) { return 0; }
5153 _win32waveout=no
5154 cc_check -lwinmm && _win32waveout=yes
5156 if test "$_win32waveout" = yes ; then
5157 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5158 libs_mplayer="$libs_mplayer -lwinmm"
5159 _aomodules="win32 $_aomodules"
5160 else
5161 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5162 _noaomodules="win32 $_noaomodules"
5164 echores "$_win32waveout"
5166 echocheck "Direct3D"
5167 if test "$_direct3d" = auto ; then
5168 cat > $TMPC << EOF
5169 #include <windows.h>
5170 #include <d3d9.h>
5171 int main(void) { return 0; }
5173 _direct3d=no
5174 cc_check -ld3d9 && _direct3d=yes
5176 if test "$_direct3d" = yes ; then
5177 def_direct3d='#define CONFIG_DIRECT3D 1'
5178 libs_mplayer="$libs_mplayer -ld3d9"
5179 _vomodules="direct3d $_vomodules"
5180 else
5181 def_direct3d='#undef CONFIG_DIRECT3D'
5182 _novomodules="direct3d $_novomodules"
5184 echores "$_direct3d"
5186 echocheck "Directx"
5187 if test "$_directx" = auto ; then
5188 cat > $TMPC << EOF
5189 #include <windows.h>
5190 #include <ddraw.h>
5191 #include <dsound.h>
5192 int main(void) { return 0; }
5194 _directx=no
5195 cc_check -lgdi32 && _directx=yes
5197 if test "$_directx" = yes ; then
5198 def_directx='#define CONFIG_DIRECTX 1'
5199 libs_mplayer="$libs_mplayer -lgdi32"
5200 _vomodules="directx $_vomodules"
5201 _aomodules="dsound $_aomodules"
5202 else
5203 def_directx='#undef CONFIG_DIRECTX'
5204 _novomodules="directx $_novomodules"
5205 _noaomodules="dsound $_noaomodules"
5207 echores "$_directx"
5209 fi #if win32; then
5212 echocheck "DXR2"
5213 if test "$_dxr2" = auto; then
5214 _dxr2=no
5215 cat > $TMPC << EOF
5216 #include <dxr2ioctl.h>
5217 int main(void) { return 0; }
5219 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5220 cc_check $_inc_tmp && _dxr2=yes && \
5221 extra_cflags="$extra_cflags $_inc_tmp" && break
5222 done
5224 if test "$_dxr2" = yes; then
5225 def_dxr2='#define CONFIG_DXR2 1'
5226 _aomodules="dxr2 $_aomodules"
5227 _vomodules="dxr2 $_vomodules"
5228 else
5229 def_dxr2='#undef CONFIG_DXR2'
5230 _noaomodules="dxr2 $_noaomodules"
5231 _novomodules="dxr2 $_novomodules"
5233 echores "$_dxr2"
5235 echocheck "DXR3/H+"
5236 if test "$_dxr3" = auto ; then
5237 cat > $TMPC << EOF
5238 #include <linux/em8300.h>
5239 int main(void) { return 0; }
5241 _dxr3=no
5242 cc_check && _dxr3=yes
5244 if test "$_dxr3" = yes ; then
5245 def_dxr3='#define CONFIG_DXR3 1'
5246 _vomodules="dxr3 $_vomodules"
5247 else
5248 def_dxr3='#undef CONFIG_DXR3'
5249 _novomodules="dxr3 $_novomodules"
5251 echores "$_dxr3"
5254 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5255 if test "$_ivtv" = auto ; then
5256 cat > $TMPC << EOF
5257 #include <stdlib.h>
5258 #include <inttypes.h>
5259 #include <linux/types.h>
5260 #include <linux/videodev2.h>
5261 #include <linux/ivtv.h>
5262 #include <sys/ioctl.h>
5263 int main(void) {
5264 struct ivtv_cfg_stop_decode sd;
5265 struct ivtv_cfg_start_decode sd1;
5266 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5267 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5268 return 0; }
5270 _ivtv=no
5271 cc_check && _ivtv=yes
5273 if test "$_ivtv" = yes ; then
5274 def_ivtv='#define CONFIG_IVTV 1'
5275 _vomodules="ivtv $_vomodules"
5276 _aomodules="ivtv $_aomodules"
5277 else
5278 def_ivtv='#undef CONFIG_IVTV'
5279 _novomodules="ivtv $_novomodules"
5280 _noaomodules="ivtv $_noaomodules"
5282 echores "$_ivtv"
5285 echocheck "V4L2 MPEG Decoder"
5286 if test "$_v4l2" = auto ; then
5287 cat > $TMPC << EOF
5288 #include <stdlib.h>
5289 #include <inttypes.h>
5290 #include <linux/types.h>
5291 #include <linux/videodev2.h>
5292 #include <linux/version.h>
5293 int main(void) {
5294 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5295 #error kernel headers too old, need 2.6.22
5296 bad_kernel_version();
5297 #endif
5298 struct v4l2_ext_controls ctrls;
5299 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5300 return 0;
5303 _v4l2=no
5304 cc_check && _v4l2=yes
5306 if test "$_v4l2" = yes ; then
5307 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5308 _vomodules="v4l2 $_vomodules"
5309 _aomodules="v4l2 $_aomodules"
5310 else
5311 def_v4l2='#undef CONFIG_V4L2_DECODER'
5312 _novomodules="v4l2 $_novomodules"
5313 _noaomodules="v4l2 $_noaomodules"
5315 echores "$_v4l2"
5319 #########
5320 # AUDIO #
5321 #########
5324 echocheck "OSS Audio"
5325 if test "$_ossaudio" = auto ; then
5326 cat > $TMPC << EOF
5327 #include <sys/ioctl.h>
5328 #include <$_soundcard_header>
5329 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5331 _ossaudio=no
5332 cc_check && _ossaudio=yes
5334 if test "$_ossaudio" = yes ; then
5335 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5336 _aomodules="oss $_aomodules"
5337 if test "$_linux_devfs" = yes; then
5338 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5339 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5340 else
5341 cat > $TMPC << EOF
5342 #include <sys/ioctl.h>
5343 #include <$_soundcard_header>
5344 #ifdef OPEN_SOUND_SYSTEM
5345 int main(void) { return 0; }
5346 #else
5347 #error Not the real thing
5348 #endif
5350 _real_ossaudio=no
5351 cc_check && _real_ossaudio=yes
5352 if test "$_real_ossaudio" = yes; then
5353 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5354 # Check for OSS4 headers (override default headers)
5355 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5356 if test -f /etc/oss.conf; then
5357 . /etc/oss.conf
5358 _ossinc="$OSSLIBDIR/include"
5359 if test -f "$_ossinc/sys/soundcard.h"; then
5360 extra_cflags="-I$_ossinc $extra_cflags"
5363 elif netbsd || openbsd ; then
5364 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5365 extra_ldflags="$extra_ldflags -lossaudio"
5366 else
5367 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5369 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5371 else
5372 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5373 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5374 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5375 _noaomodules="oss $_noaomodules"
5377 echores "$_ossaudio"
5380 echocheck "aRts"
5381 if test "$_arts" = auto ; then
5382 _arts=no
5383 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5385 cat > $TMPC << EOF
5386 #include <artsc.h>
5387 int main(void) { return 0; }
5389 cc_check $(artsc-config --libs) $(artsc-config --cflags) && tmp_run && _arts=yes
5394 if test "$_arts" = yes ; then
5395 def_arts='#define CONFIG_ARTS 1'
5396 _aomodules="arts $_aomodules"
5397 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5398 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5399 else
5400 _noaomodules="arts $_noaomodules"
5402 echores "$_arts"
5405 echocheck "EsounD"
5406 if test "$_esd" = auto ; then
5407 _esd=no
5408 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5410 cat > $TMPC << EOF
5411 #include <esd.h>
5412 int main(void) { int fd = esd_open_sound("test"); return fd; }
5414 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5418 echores "$_esd"
5420 if test "$_esd" = yes ; then
5421 def_esd='#define CONFIG_ESD 1'
5422 _aomodules="esd $_aomodules"
5423 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5424 extra_cflags="$extra_cflags $(esd-config --cflags)"
5426 echocheck "esd_get_latency()"
5427 cat > $TMPC << EOF
5428 #include <esd.h>
5429 int main(void) { return esd_get_latency(0); }
5431 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY'
5432 echores "$_esd_latency"
5433 else
5434 def_esd='#undef CONFIG_ESD'
5435 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5436 _noaomodules="esd $_noaomodules"
5440 echocheck "NAS"
5441 if test "$_nas" = auto ; then
5442 cat > $TMPC << EOF
5443 #include <audio/audiolib.h>
5444 int main(void) { return 0; }
5446 _nas=no
5447 cc_check $_ld_lm -laudio -lXt && _nas=yes
5449 if test "$_nas" = yes ; then
5450 def_nas='#define CONFIG_NAS 1'
5451 libs_mplayer="$libs_mplayer -laudio -lXt"
5452 _aomodules="nas $_aomodules"
5453 else
5454 _noaomodules="nas $_noaomodules"
5455 def_nas='#undef CONFIG_NAS'
5457 echores "$_nas"
5460 echocheck "pulse"
5461 if test "$_pulse" = auto ; then
5462 _pulse=no
5463 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5465 cat > $TMPC << EOF
5466 #include <pulse/pulseaudio.h>
5467 int main(void) { return 0; }
5469 cc_check $($_pkg_config --libs --cflags libpulse) && tmp_run && _pulse=yes
5473 echores "$_pulse"
5475 if test "$_pulse" = yes ; then
5476 def_pulse='#define CONFIG_PULSE 1'
5477 _aomodules="pulse $_aomodules"
5478 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5479 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5480 else
5481 def_pulse='#undef CONFIG_PULSE'
5482 _noaomodules="pulse $_noaomodules"
5486 echocheck "JACK"
5487 if test "$_jack" = auto ; then
5488 _jack=yes
5490 cat > $TMPC << EOF
5491 #include <jack/jack.h>
5492 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5494 if cc_check -ljack ; then
5495 libs_mplayer="$libs_mplayer -ljack"
5496 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5497 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5498 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5499 else
5500 _jack=no
5504 if test "$_jack" = yes ; then
5505 def_jack='#define CONFIG_JACK 1'
5506 _aomodules="jack $_aomodules"
5507 else
5508 _noaomodules="jack $_noaomodules"
5510 echores "$_jack"
5512 echocheck "OpenAL"
5513 if test "$_openal" = auto ; then
5514 _openal=no
5515 cat > $TMPC << EOF
5516 #ifdef OPENAL_AL_H
5517 #include <OpenAL/al.h>
5518 #else
5519 #include <AL/al.h>
5520 #endif
5521 int main(void) {
5522 alSourceQueueBuffers(0, 0, 0);
5523 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5524 return 0;
5527 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5528 cc_check $I && _openal=yes && break
5529 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5530 done
5531 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5533 if test "$_openal" = yes ; then
5534 def_openal='#define CONFIG_OPENAL 1'
5535 _aomodules="openal $_aomodules"
5536 else
5537 _noaomodules="openal $_noaomodules"
5539 echores "$_openal"
5541 echocheck "ALSA audio"
5542 if test "$_alloca" != yes ; then
5543 _alsa=no
5544 _res_comment="alloca missing"
5546 if test "$_alsa" != no ; then
5547 _alsa=no
5548 cat > $TMPC << EOF
5549 #include <sys/time.h>
5550 #include <sys/asoundlib.h>
5551 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5552 #error "alsa version != 0.5.x"
5553 #endif
5554 int main(void) { return 0; }
5556 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5558 cat > $TMPC << EOF
5559 #include <sys/time.h>
5560 #include <sys/asoundlib.h>
5561 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5562 #error "alsa version != 0.9.x"
5563 #endif
5564 int main(void) { return 0; }
5566 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5567 cat > $TMPC << EOF
5568 #include <sys/time.h>
5569 #include <alsa/asoundlib.h>
5570 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5571 #error "alsa version != 0.9.x"
5572 #endif
5573 int main(void) { return 0; }
5575 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5577 cat > $TMPC << EOF
5578 #include <sys/time.h>
5579 #include <sys/asoundlib.h>
5580 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5581 #error "alsa version != 1.0.x"
5582 #endif
5583 int main(void) { return 0; }
5585 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5586 cat > $TMPC << EOF
5587 #include <sys/time.h>
5588 #include <alsa/asoundlib.h>
5589 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5590 #error "alsa version != 1.0.x"
5591 #endif
5592 int main(void) { return 0; }
5594 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5596 def_alsa='#undef CONFIG_ALSA'
5597 def_alsa5='#undef CONFIG_ALSA5'
5598 def_alsa9='#undef CONFIG_ALSA9'
5599 def_alsa1x='#undef CONFIG_ALSA1X'
5600 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5601 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5602 if test "$_alsaver" ; then
5603 _alsa=yes
5604 if test "$_alsaver" = '0.5.x' ; then
5605 _alsa5=yes
5606 _aomodules="alsa5 $_aomodules"
5607 def_alsa5='#define CONFIG_ALSA5 1'
5608 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5609 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5610 elif test "$_alsaver" = '0.9.x-sys' ; then
5611 _alsa9=yes
5612 _aomodules="alsa $_aomodules"
5613 def_alsa='#define CONFIG_ALSA 1'
5614 def_alsa9='#define CONFIG_ALSA9 1'
5615 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5616 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5617 elif test "$_alsaver" = '0.9.x-alsa' ; then
5618 _alsa9=yes
5619 _aomodules="alsa $_aomodules"
5620 def_alsa='#define CONFIG_ALSA 1'
5621 def_alsa9='#define CONFIG_ALSA9 1'
5622 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5623 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5624 elif test "$_alsaver" = '1.0.x-sys' ; then
5625 _alsa1x=yes
5626 _aomodules="alsa $_aomodules"
5627 def_alsa='#define CONFIG_ALSA 1'
5628 def_alsa1x="#define CONFIG_ALSA1X 1"
5629 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5630 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5631 elif test "$_alsaver" = '1.0.x-alsa' ; then
5632 _alsa1x=yes
5633 _aomodules="alsa $_aomodules"
5634 def_alsa='#define CONFIG_ALSA 1'
5635 def_alsa1x="#define CONFIG_ALSA1X 1"
5636 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5637 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5638 else
5639 _alsa=no
5640 _res_comment="unknown version"
5642 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5643 else
5644 _noaomodules="alsa $_noaomodules"
5646 echores "$_alsa"
5649 echocheck "Sun audio"
5650 if test "$_sunaudio" = auto ; then
5651 cat > $TMPC << EOF
5652 #include <sys/types.h>
5653 #include <sys/audioio.h>
5654 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5656 _sunaudio=no
5657 cc_check && _sunaudio=yes
5659 if test "$_sunaudio" = yes ; then
5660 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5661 _aomodules="sun $_aomodules"
5662 else
5663 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5664 _noaomodules="sun $_noaomodules"
5666 echores "$_sunaudio"
5669 def_mlib='#define CONFIG_MLIB 0'
5670 if sunos; then
5671 echocheck "Sun mediaLib"
5672 if test "$_mlib" = auto ; then
5673 _mlib=no
5674 cat > $TMPC << EOF
5675 #include <mlib.h>
5676 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5678 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5680 echores "$_mlib"
5681 fi #if sunos
5684 if darwin; then
5685 echocheck "CoreAudio"
5686 if test "$_coreaudio" = auto ; then
5687 cat > $TMPC <<EOF
5688 #include <CoreAudio/CoreAudio.h>
5689 #include <AudioToolbox/AudioToolbox.h>
5690 #include <AudioUnit/AudioUnit.h>
5691 int main(void) { return 0; }
5693 _coreaudio=no
5694 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5696 if test "$_coreaudio" = yes ; then
5697 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5698 def_coreaudio='#define CONFIG_COREAUDIO 1'
5699 _aomodules="coreaudio $_aomodules"
5700 else
5701 def_coreaudio='#undef CONFIG_COREAUDIO'
5702 _noaomodules="coreaudio $_noaomodules"
5704 echores $_coreaudio
5705 fi #if darwin
5708 if irix; then
5709 echocheck "SGI audio"
5710 if test "$_sgiaudio" = auto ; then
5711 # check for SGI audio
5712 cat > $TMPC << EOF
5713 #include <dmedia/audio.h>
5714 int main(void) { return 0; }
5716 _sgiaudio=no
5717 cc_check && _sgiaudio=yes
5719 if test "$_sgiaudio" = "yes" ; then
5720 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5721 libs_mplayer="$libs_mplayer -laudio"
5722 _aomodules="sgi $_aomodules"
5723 else
5724 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5725 _noaomodules="sgi $_noaomodules"
5727 echores "$_sgiaudio"
5728 fi #if irix
5731 if os2 ; then
5732 echocheck "DART"
5733 if test "$_dart" = auto; then
5734 cat > $TMPC << EOF
5735 #include <os2.h>
5736 #include <dart.h>
5737 int main( void ) { return 0; }
5739 _dart=no;
5740 cc_check -ldart && _dart=yes
5742 if test "$_dart" = yes ; then
5743 def_dart='#define CONFIG_DART 1'
5744 libs_mplayer="$libs_mplayer -ldart"
5745 _aomodules="dart $_aomodules"
5746 else
5747 def_dart='#undef CONFIG_DART'
5748 _noaomodules="dart $_noaomodules"
5750 echores "$_dart"
5751 fi #if os2
5754 # set default CD/DVD devices
5755 if win32 || os2 ; then
5756 default_cdrom_device="D:"
5757 elif darwin ; then
5758 default_cdrom_device="/dev/disk1"
5759 elif dragonfly ; then
5760 default_cdrom_device="/dev/cd0"
5761 elif freebsd ; then
5762 default_cdrom_device="/dev/acd0"
5763 elif openbsd ; then
5764 default_cdrom_device="/dev/rcd0a"
5765 elif sunos ; then
5766 default_cdrom_device="/vol/dev/aliases/cdrom0"
5767 elif amigaos ; then
5768 default_cdrom_device="a1ide.device:2"
5769 else
5770 default_cdrom_device="/dev/cdrom"
5773 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5774 default_dvd_device=$default_cdrom_device
5775 elif darwin ; then
5776 default_dvd_device="/dev/rdiskN"
5777 else
5778 default_dvd_device="/dev/dvd"
5782 echocheck "VCD support"
5783 if test "$_vcd" = auto; then
5784 _vcd=no
5785 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos; then
5786 _vcd=yes
5787 elif mingw32; then
5788 cat > $TMPC << EOF
5789 #include <ddk/ntddcdrm.h>
5790 int main(void) { return 0; }
5792 cc_check && _vcd=yes
5795 if test "$_vcd" = yes; then
5796 _inputmodules="vcd $_inputmodules"
5797 def_vcd='#define CONFIG_VCD 1'
5798 else
5799 def_vcd='#undef CONFIG_VCD'
5800 _noinputmodules="vcd $_noinputmodules"
5801 _res_comment="not supported on this OS"
5803 echores "$_vcd"
5807 echocheck "dvdread"
5808 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5809 _dvdread_internal=no
5811 if test "$_dvdread_internal" = auto ; then
5812 _dvdread_internal=no
5813 _dvdread=no
5814 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5815 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5816 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5817 || darwin || win32 || os2; then
5818 _dvdread_internal=yes
5819 _dvdread=yes
5820 extra_cflags="$extra_cflags -Ilibdvdread4"
5822 elif test "$_dvdread" = auto ; then
5823 _dvdread=no
5824 if test "$_dl" = yes; then
5825 cat > $TMPC << EOF
5826 #include <inttypes.h>
5827 #include <dvdread/dvd_reader.h>
5828 #include <dvdread/ifo_types.h>
5829 #include <dvdread/ifo_read.h>
5830 #include <dvdread/nav_read.h>
5831 int main(void) { return 0; }
5834 _dvdreadcflags=$($_dvdreadconfig --cflags)
5835 _dvdreadlibs=$($_dvdreadconfig --libs)
5836 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5837 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5838 _dvdread=yes
5839 extra_cflags="$extra_cflags $_dvdreadcflags"
5840 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5841 _res_comment="external"
5845 if test "$_dvdread_internal" = yes; then
5846 def_dvdread='#define CONFIG_DVDREAD 1'
5847 _inputmodules="dvdread(internal) $_inputmodules"
5848 _largefiles=yes
5849 _res_comment="internal"
5850 elif test "$_dvdread" = yes; then
5851 def_dvdread='#define CONFIG_DVDREAD 1'
5852 _largefiles=yes
5853 extra_ldflags="$extra_ldflags -ldvdread"
5854 _inputmodules="dvdread(external) $_inputmodules"
5855 _res_comment="external"
5856 else
5857 def_dvdread='#undef CONFIG_DVDREAD'
5858 _noinputmodules="dvdread $_noinputmodules"
5860 echores "$_dvdread"
5863 echocheck "internal libdvdcss"
5864 if test "$_libdvdcss_internal" = auto ; then
5865 _libdvdcss_internal=no
5866 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5867 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5869 if test "$_libdvdcss_internal" = yes ; then
5870 if linux || netbsd || openbsd || bsdos ; then
5871 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5872 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5873 elif freebsd || dragonfly ; then
5874 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5875 elif darwin ; then
5876 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5877 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5878 elif cygwin ; then
5879 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5880 elif beos ; then
5881 cflags_libdvdcss="-DSYS_BEOS"
5882 elif os2 ; then
5883 cflags_libdvdcss="-DSYS_OS2"
5885 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5886 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5887 _inputmodules="libdvdcss(internal) $_inputmodules"
5888 _largefiles=yes
5889 else
5890 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5892 echores "$_libdvdcss_internal"
5895 echocheck "cdparanoia"
5896 if test "$_cdparanoia" = auto ; then
5897 cat > $TMPC <<EOF
5898 #include <cdda_interface.h>
5899 #include <cdda_paranoia.h>
5900 // This need a better test. How ?
5901 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5903 _cdparanoia=no
5904 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5905 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5906 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5907 done
5909 if test "$_cdparanoia" = yes ; then
5910 _cdda='yes'
5911 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5912 openbsd && extra_ldflags="$extra_ldflags -lutil"
5914 echores "$_cdparanoia"
5917 echocheck "libcdio"
5918 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5919 cat > $TMPC << EOF
5920 #include <stdio.h>
5921 #include <cdio/version.h>
5922 #include <cdio/cdda.h>
5923 #include <cdio/paranoia.h>
5924 int main(void) {
5925 void *test = cdda_verbose_set;
5926 printf("%s\n", CDIO_VERSION);
5927 return test == (void *)1;
5930 _libcdio=no
5931 for _ld_tmp in "" "-lwinmm" ; do
5932 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5933 cc_check $_ld_tmp $_ld_lm \
5934 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5935 done
5936 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5937 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5938 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5939 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5940 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5943 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5944 _cdda='yes'
5945 def_libcdio='#define CONFIG_LIBCDIO'
5946 def_havelibcdio='yes'
5947 else
5948 if test "$_cdparanoia" = yes ; then
5949 _res_comment="using cdparanoia"
5951 def_libcdio='#undef CONFIG_LIBCDIO'
5952 def_havelibcdio='no'
5954 echores "$_libcdio"
5956 if test "$_cdda" = yes ; then
5957 test $_cddb = auto && test $_network = yes && _cddb=yes
5958 def_cdparanoia='#define CONFIG_CDDA'
5959 _inputmodules="cdda $_inputmodules"
5960 else
5961 def_cdparanoia='#undef CONFIG_CDDA'
5962 _noinputmodules="cdda $_noinputmodules"
5965 if test "$_cddb" = yes ; then
5966 def_cddb='#define CONFIG_CDDB'
5967 _inputmodules="cddb $_inputmodules"
5968 else
5969 _cddb=no
5970 def_cddb='#undef CONFIG_CDDB'
5971 _noinputmodules="cddb $_noinputmodules"
5974 echocheck "bitmap font support"
5975 if test "$_bitmap_font" = yes ; then
5976 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5977 else
5978 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5980 echores "$_bitmap_font"
5983 echocheck "freetype >= 2.0.9"
5985 # freetype depends on iconv
5986 if test "$_iconv" = no ; then
5987 _freetype=no
5988 _res_comment="iconv support needed"
5991 if test "$_freetype" = auto ; then
5992 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5993 cat > $TMPC << EOF
5994 #include <stdio.h>
5995 #include <ft2build.h>
5996 #include FT_FREETYPE_H
5997 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5998 #error "Need FreeType 2.0.9 or newer"
5999 #endif
6000 int main(void) {
6001 FT_Library library;
6002 FT_Int major=-1,minor=-1,patch=-1;
6003 int err=FT_Init_FreeType(&library);
6004 if (err) {
6005 printf("Couldn't initialize freetype2 lib, err code: %d\n",err);
6006 exit(err);
6008 FT_Library_Version(library,&major,&minor,&patch); // in v2.1.0+ only :(((
6009 printf("freetype2 header version: %d.%d.%d library version: %d.%d.%d\n",
6010 FREETYPE_MAJOR,FREETYPE_MINOR,FREETYPE_PATCH,
6011 (int)major,(int)minor,(int)patch );
6012 if (major!=FREETYPE_MAJOR || minor!=FREETYPE_MINOR) {
6013 printf("Library and header version mismatch! Fix it in your distribution!\n");
6014 exit(1);
6016 return 0;
6019 _freetype=no
6020 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && tmp_run && _freetype=yes
6021 else
6022 _freetype=no
6025 if test "$_freetype" = yes ; then
6026 def_freetype='#define CONFIG_FREETYPE'
6027 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6028 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6029 else
6030 def_freetype='#undef CONFIG_FREETYPE'
6032 echores "$_freetype"
6034 if test "$_freetype" = no ; then
6035 _fontconfig=no
6036 _res_comment="FreeType support needed"
6038 echocheck "fontconfig"
6039 if test "$_fontconfig" = auto ; then
6040 cat > $TMPC << EOF
6041 #include <stdio.h>
6042 #include <stdlib.h>
6043 #include <fontconfig/fontconfig.h>
6044 int main(void) {
6045 int err = FcInit();
6046 if (err == FcFalse) {
6047 printf("Couldn't initialize fontconfig lib\n");
6048 exit(err);
6050 return 0;
6053 _fontconfig=no
6054 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" ; do
6055 _ld_tmp="-lfontconfig $_ld_tmp"
6056 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6057 done
6058 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6059 _inc_tmp=$($_pkg_config --cflags fontconfig)
6060 _ld_tmp=$($_pkg_config --libs fontconfig)
6061 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6062 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6065 if test "$_fontconfig" = yes ; then
6066 def_fontconfig='#define CONFIG_FONTCONFIG'
6067 else
6068 def_fontconfig='#undef CONFIG_FONTCONFIG'
6070 echores "$_fontconfig"
6073 echocheck "SSA/ASS support"
6074 # libass depends on FreeType
6075 if test "$_freetype" = no ; then
6076 _ass=no
6077 _res_comment="FreeType support needed"
6080 if test "$_ass" = auto ; then
6081 cat > $TMPC << EOF
6082 #include <ft2build.h>
6083 #include FT_FREETYPE_H
6084 #if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 1) || ((FREETYPE_MINOR == 1) && (FREETYPE_PATCH < 8)))
6085 #error "Need FreeType 2.1.8 or newer"
6086 #endif
6087 int main(void) { return 0; }
6089 _ass=no
6090 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && tmp_run && _ass=yes
6091 if test "$_ass" = no ; then
6092 _res_comment="FreeType >= 2.1.8 needed"
6095 if test "$_ass" = yes ; then
6096 def_ass='#define CONFIG_ASS'
6097 else
6098 def_ass='#undef CONFIG_ASS'
6100 echores "$_ass"
6103 echocheck "fribidi with charsets"
6104 if test "$_fribidi" = auto ; then
6105 if ( $_fribidiconfig --version ) >/dev/null 2>&1 ; then
6106 cat > $TMPC << EOF
6107 #include <stdio.h>
6108 /* workaround for fribidi 0.10.4 and below */
6109 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6110 #include <fribidi/fribidi.h>
6111 int main(void) {
6112 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6113 printf("Fribidi headers are not consistents with the library!\n");
6114 exit(1);
6116 return 0;
6119 _fribidi=no
6120 cc_check $($_fribidiconfig --cflags) $($_fribidiconfig --libs) && tmp_run && _fribidi=yes
6121 else
6122 _fribidi=no
6125 if test "$_fribidi" = yes ; then
6126 def_fribidi='#define CONFIG_FRIBIDI'
6127 extra_cflags="$extra_cflags $($_fribidiconfig --cflags)"
6128 extra_ldflags="$extra_ldflags $($_fribidiconfig --libs)"
6129 else
6130 def_fribidi='#undef CONFIG_FRIBIDI'
6132 echores "$_fribidi"
6135 echocheck "ENCA"
6136 if test "$_enca" = auto ; then
6137 cat > $TMPC << EOF
6138 #include <sys/types.h>
6139 #include <enca.h>
6140 int main(void) {
6141 const char **langs;
6142 size_t langcnt;
6143 langs = enca_get_languages(&langcnt);
6144 return 0;
6147 _enca=no
6148 cc_check -lenca $_ld_lm && _enca=yes
6150 if test "$_enca" = yes ; then
6151 def_enca='#define CONFIG_ENCA 1'
6152 extra_ldflags="$extra_ldflags -lenca"
6153 else
6154 def_enca='#undef CONFIG_ENCA'
6156 echores "$_enca"
6159 echocheck "zlib"
6160 cat > $TMPC << EOF
6161 #include <zlib.h>
6162 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6164 _zlib=no
6165 cc_check -lz && _zlib=yes
6166 if test "$_zlib" = yes ; then
6167 def_zlib='#define CONFIG_ZLIB 1'
6168 extra_ldflags="$extra_ldflags -lz"
6169 else
6170 def_zlib='#define CONFIG_ZLIB 0'
6171 _libavdecoders=$(echo $_libavdecoders | sed -e s/FLASHSV_DECODER// -e s/PNG_DECODER// -e s/ZMBV_DECODER// -e s/DXA_DECODER// -e s/TSCC_DECODER//)
6172 _libavencoders=$(echo $_libavencoders | sed -e s/FLASHSV_ENCODER// -e s/PNG_ENCODER// -e s/ZMBV_ENCODER//)
6174 echores "$_zlib"
6177 echocheck "bzlib"
6178 bzlib=no
6179 def_bzlib='#define CONFIG_BZLIB 0'
6180 cat > $TMPC << EOF
6181 #include <bzlib.h>
6182 int main(void) { BZ2_bzlibVersion(); return 0; }
6184 cc_check -lbz2 && bzlib=yes
6185 if test "$bzlib" = yes ; then
6186 def_bzlib='#define CONFIG_BZLIB 1'
6187 extra_ldflags="$extra_ldflags -lbz2"
6189 echores "$bzlib"
6192 echocheck "RTC"
6193 if test "$_rtc" = auto ; then
6194 cat > $TMPC << EOF
6195 #include <sys/ioctl.h>
6196 #ifdef __linux__
6197 #include <linux/rtc.h>
6198 #else
6199 #include <rtc.h>
6200 #define RTC_PIE_ON RTCIO_PIE_ON
6201 #endif
6202 int main(void) { return RTC_PIE_ON; }
6204 _rtc=no
6205 cc_check && _rtc=yes
6206 ppc && _rtc=no
6208 if test "$_rtc" = yes ; then
6209 def_rtc='#define HAVE_RTC 1'
6210 else
6211 def_rtc='#undef HAVE_RTC'
6213 echores "$_rtc"
6216 echocheck "liblzo2 support"
6217 if test "$_liblzo" = auto ; then
6218 _liblzo=no
6219 cat > $TMPC << EOF
6220 #include <lzo/lzo1x.h>
6221 int main(void) { lzo_init();return 0; }
6223 cc_check -llzo2 && _liblzo=yes
6225 if test "$_liblzo" = yes ; then
6226 def_liblzo='#define CONFIG_LIBLZO 1'
6227 extra_ldflags="$extra_ldflags -llzo2"
6228 _codecmodules="liblzo $_codecmodules"
6229 else
6230 def_liblzo='#undef CONFIG_LIBLZO'
6231 _nocodecmodules="liblzo $_nocodecmodules"
6233 echores "$_liblzo"
6236 echocheck "mad support"
6237 if test "$_mad" = auto ; then
6238 _mad=no
6239 cat > $TMPC << EOF
6240 #include <mad.h>
6241 int main(void) { return 0; }
6243 cc_check -lmad && _mad=yes
6245 if test "$_mad" = yes ; then
6246 def_mad='#define CONFIG_LIBMAD 1'
6247 extra_ldflags="$extra_ldflags -lmad"
6248 _codecmodules="libmad $_codecmodules"
6249 else
6250 def_mad='#undef CONFIG_LIBMAD'
6251 _nocodecmodules="libmad $_nocodecmodules"
6253 echores "$_mad"
6255 echocheck "Twolame"
6256 if test "$_twolame" = auto ; then
6257 cat > $TMPC <<EOF
6258 #include <twolame.h>
6259 int main(void) { twolame_init(); return 0; }
6261 _twolame=no
6262 cc_check -ltwolame $_ld_lm && _twolame=yes
6264 if test "$_twolame" = yes ; then
6265 def_twolame='#define CONFIG_TWOLAME 1'
6266 libs_mencoder="$libs_mencoder -ltwolame"
6267 _codecmodules="twolame $_codecmodules"
6268 else
6269 def_twolame='#undef CONFIG_TWOLAME'
6270 _nocodecmodules="twolame $_nocodecmodules"
6272 echores "$_twolame"
6274 echocheck "Toolame"
6275 if test "$_toolame" = auto ; then
6276 _toolame=no
6277 if test "$_twolame" = yes ; then
6278 _res_comment="disabled by twolame"
6279 else
6280 cat > $TMPC <<EOF
6281 #include <toolame.h>
6282 int main(void) { toolame_init(); return 0; }
6284 cc_check -ltoolame $_ld_lm && _toolame=yes
6287 if test "$_toolame" = yes ; then
6288 def_toolame='#define CONFIG_TOOLAME 1'
6289 libs_mencoder="$libs_mencoder -ltoolame"
6290 _codecmodules="toolame $_codecmodules"
6291 else
6292 def_toolame='#undef CONFIG_TOOLAME'
6293 _nocodecmodules="toolame $_nocodecmodules"
6295 if test "$_toolamedir" ; then
6296 _res_comment="using $_toolamedir"
6298 echores "$_toolame"
6300 echocheck "OggVorbis support"
6301 if test "$_tremor_internal" = yes; then
6302 _libvorbis=no
6303 elif test "$_tremor" = auto; then
6304 _tremor=no
6305 cat > $TMPC << EOF
6306 #include <tremor/ivorbiscodec.h>
6307 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6309 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6311 if test "$_libvorbis" = auto; then
6312 _libvorbis=no
6313 cat > $TMPC << EOF
6314 #include <vorbis/codec.h>
6315 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6317 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6319 if test "$_tremor_internal" = yes ; then
6320 _vorbis=yes
6321 def_vorbis='#define CONFIG_OGGVORBIS 1'
6322 def_tremor='#define CONFIG_TREMOR 1'
6323 _codecmodules="tremor(internal) $_codecmodules"
6324 _res_comment="internal Tremor"
6325 if test "$_tremor_low" = yes ; then
6326 cflags_tremor_low="-D_LOW_ACCURACY_"
6327 _res_comment="internal low accuracy Tremor"
6329 elif test "$_tremor" = yes ; then
6330 _vorbis=yes
6331 def_vorbis='#define CONFIG_OGGVORBIS 1'
6332 def_tremor='#define CONFIG_TREMOR 1'
6333 _codecmodules="tremor(external) $_codecmodules"
6334 _res_comment="external Tremor"
6335 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6336 elif test "$_libvorbis" = yes ; then
6337 _vorbis=yes
6338 def_vorbis='#define CONFIG_OGGVORBIS 1'
6339 _codecmodules="libvorbis $_codecmodules"
6340 _res_comment="libvorbis"
6341 extra_ldflags="$extra_ldflags -lvorbis -logg"
6342 else
6343 _vorbis=no
6344 _nocodecmodules="libvorbis $_nocodecmodules"
6346 echores "$_vorbis"
6348 echocheck "libspeex (version >= 1.1 required)"
6349 if test "$_speex" = auto ; then
6350 _speex=no
6351 cat > $TMPC << EOF
6352 #include <speex/speex.h>
6353 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6355 cc_check -lspeex $_ld_lm && _speex=yes
6357 if test "$_speex" = yes ; then
6358 def_speex='#define CONFIG_SPEEX 1'
6359 extra_ldflags="$extra_ldflags -lspeex"
6360 _codecmodules="speex $_codecmodules"
6361 else
6362 def_speex='#undef CONFIG_SPEEX'
6363 _nocodecmodules="speex $_nocodecmodules"
6365 echores "$_speex"
6367 echocheck "OggTheora support"
6368 if test "$_theora" = auto ; then
6369 _theora=no
6370 cat > $TMPC << EOF
6371 #include <theora/theora.h>
6372 #include <string.h>
6373 int main(void) {
6374 /* Theora is in flux, make sure that all interface routines and datatypes
6375 * exist and work the way we expect it, so we don't break MPlayer. */
6376 ogg_packet op;
6377 theora_comment tc;
6378 theora_info inf;
6379 theora_state st;
6380 yuv_buffer yuv;
6381 int r;
6382 double t;
6384 theora_info_init(&inf);
6385 theora_comment_init(&tc);
6387 return 0;
6389 /* we don't want to execute this kind of nonsense; just for making sure
6390 * that compilation works... */
6391 memset(&op, 0, sizeof(op));
6392 r = theora_decode_header(&inf, &tc, &op);
6393 r = theora_decode_init(&st, &inf);
6394 t = theora_granule_time(&st, op.granulepos);
6395 r = theora_decode_packetin(&st, &op);
6396 r = theora_decode_YUVout(&st, &yuv);
6397 theora_clear(&st);
6399 return 0;
6402 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6403 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6404 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6405 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6406 if test _theora = no; then
6407 _ld_theora="-ltheora -logg"
6408 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6410 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6411 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6412 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6413 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6414 extra_ldflags="$extra_ldflags $_ld_theora" &&
6415 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6416 if test _theora = no; then
6417 _ld_theora="-ltheora -logg"
6418 cc_check tremor/bitwise.c $_ld_theora &&
6419 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6423 if test "$_theora" = yes ; then
6424 def_theora='#define CONFIG_OGGTHEORA 1'
6425 _codecmodules="libtheora $_codecmodules"
6426 # when --enable-theora is forced, we'd better provide a probably sane
6427 # $_ld_theora than nothing
6428 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6429 else
6430 def_theora='#undef CONFIG_OGGTHEORA'
6431 _nocodecmodules="libtheora $_nocodecmodules"
6433 echores "$_theora"
6435 echocheck "internal mp3lib support"
6436 if test "$_mp3lib" = auto ; then
6437 test "$cc_vendor" = intel && _mp3lib=no || _mp3lib=yes
6439 if test "$_mp3lib" = yes ; then
6440 def_mp3lib='#define CONFIG_MP3LIB 1'
6441 _codecmodules="mp3lib(internal) $_codecmodules"
6442 else
6443 def_mp3lib='#undef CONFIG_MP3LIB'
6444 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6446 echores "$_mp3lib"
6448 echocheck "liba52 support"
6449 if test "$_liba52_internal" = auto ; then
6450 test "$cc_vendor" = intel && _liba52_internal=no || _liba52_internal=yes
6452 def_liba52='#undef CONFIG_LIBA52'
6453 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6454 if test "$_liba52_internal" = yes ; then
6455 _liba52=yes
6456 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6457 _res_comment="internal"
6458 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6459 _liba52=no
6460 cat > $TMPC << EOF
6461 #include <inttypes.h>
6462 #include <a52dec/a52.h>
6463 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6465 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6467 if test "$_liba52" = yes ; then
6468 def_liba52='#define CONFIG_LIBA52 1'
6469 _codecmodules="liba52($_res_comment) $_codecmodules"
6470 else
6471 _nocodecmodules="liba52 $_nocodecmodules"
6473 echores "$_liba52"
6475 echocheck "internal libmpeg2 support"
6476 if test "$_libmpeg2" = auto ; then
6477 _libmpeg2=yes
6478 if alpha && test cc_vendor=gnu; then
6479 case $cc_version in
6480 2*|3.0*|3.1*) # cannot compile MVI instructions
6481 _libmpeg2=no
6482 _res_comment="broken gcc"
6484 esac
6487 if test "$_libmpeg2" = yes ; then
6488 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6489 _codecmodules="libmpeg2(internal) $_codecmodules"
6490 else
6491 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6492 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6494 echores "$_libmpeg2"
6496 echocheck "libdca support"
6497 if test "$_libdca" = auto ; then
6498 _libdca=no
6499 cat > $TMPC << EOF
6500 #include <inttypes.h>
6501 #include <dts.h>
6502 int main(void) { dts_init(0); return 0; }
6504 for _ld_dca in -ldts -ldca ; do
6505 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6506 && _libdca=yes && break
6507 done
6509 if test "$_libdca" = yes ; then
6510 def_libdca='#define CONFIG_LIBDCA 1'
6511 _codecmodules="libdca $_codecmodules"
6512 else
6513 def_libdca='#undef CONFIG_LIBDCA'
6514 _nocodecmodules="libdca $_nocodecmodules"
6516 echores "$_libdca"
6518 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6519 if test "$_musepack" = auto ; then
6520 _musepack=no
6521 cat > $TMPC << EOF
6522 #include <stddef.h>
6523 #include <mpcdec/mpcdec.h>
6524 int main(void) {
6525 mpc_streaminfo info;
6526 mpc_decoder decoder;
6527 mpc_decoder_set_streaminfo(&decoder, &info);
6528 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6529 return 0;
6532 cc_check -lmpcdec $_ld_lm && _musepack=yes
6534 if test "$_musepack" = yes ; then
6535 def_musepack='#define CONFIG_MUSEPACK 1'
6536 extra_ldflags="$extra_ldflags -lmpcdec"
6537 _codecmodules="musepack $_codecmodules"
6538 else
6539 def_musepack='#undef CONFIG_MUSEPACK'
6540 _nocodecmodules="musepack $_nocodecmodules"
6542 echores "$_musepack"
6545 echocheck "FAAC support"
6546 if test "$_faac" = auto ; then
6547 cat > $TMPC <<EOF
6548 #include <inttypes.h>
6549 #include <faac.h>
6550 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6552 _faac=no
6553 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6554 cc_check -O4 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6555 done
6557 if test "$_faac" = yes ; then
6558 def_faac="#define CONFIG_FAAC 1"
6559 test "$_faac_lavc" = auto && _faac_lavc=yes
6560 if test "$_faac_lavc" = yes ; then
6561 def_faac_lavc="#define CONFIG_LIBFAAC 1"
6562 libs_mplayer="$libs_mplayer $_ld_faac"
6563 _libavencoders="$_libavencoders LIBFAAC_ENCODER"
6565 _codecmodules="faac $_codecmodules"
6566 else
6567 _faac_lavc=no
6568 def_faac="#undef CONFIG_FAAC"
6569 def_faac_lavc="#define CONFIG_LIBFAAC 0"
6570 _nocodecmodules="faac $_nocodecmodules"
6572 _res_comment="in libavcodec: $_faac_lavc"
6573 echores "$_faac"
6576 echocheck "FAAD2 support"
6577 if test "$_faad_internal" = auto ; then
6578 if x86_32 && test cc_vendor=gnu; then
6579 case $cc_version in
6580 3.1*|3.2) # ICE/insn with these versions
6581 _faad_internal=no
6582 _res_comment="broken gcc"
6585 _faad=yes
6586 _faad_internal=yes
6588 esac
6589 else
6590 _faad=yes
6591 _faad_internal=yes
6594 if test "$_faad" = auto ; then
6595 cat > $TMPC << EOF
6596 #include <faad.h>
6597 #ifndef FAAD_MIN_STREAMSIZE
6598 #error Too old version
6599 #endif
6600 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6601 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6603 cc_check -lfaad $_ld_lm && _faad=yes
6606 def_faad='#undef CONFIG_FAAD'
6607 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6608 if test "$_faad_internal" = yes ; then
6609 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6610 _res_comment="internal floating-point"
6611 if test "$_faad_fixed" = yes ; then
6612 # The FIXED_POINT implementation of FAAD2 improves performance
6613 # on some platforms, especially for SBR files.
6614 cflags_faad_fixed="-DFIXED_POINT"
6615 _res_comment="internal fixed-point"
6617 elif test "$_faad" = yes ; then
6618 extra_ldflags="$extra_ldflags -lfaad"
6621 if test "$_faad" = yes ; then
6622 def_faad='#define CONFIG_FAAD 1'
6623 if test "$_faad_internal" = yes ; then
6624 _codecmodules="faad2(internal) $_codecmodules"
6625 else
6626 _codecmodules="faad2 $_codecmodules"
6628 else
6629 _faad=no
6630 _nocodecmodules="faad2 $_nocodecmodules"
6632 echores "$_faad"
6635 echocheck "LADSPA plugin support"
6636 if test "$_ladspa" = auto ; then
6637 cat > $TMPC <<EOF
6638 #include <stdio.h>
6639 #include <ladspa.h>
6640 int main(void) {
6641 const LADSPA_Descriptor *ld = NULL;
6642 return 0;
6645 _ladspa=no
6646 cc_check && _ladspa=yes
6648 if test "$_ladspa" = yes; then
6649 def_ladspa="#define CONFIG_LADSPA"
6650 else
6651 def_ladspa="#undef CONFIG_LADSPA"
6653 echores "$_ladspa"
6656 echocheck "libbs2b audio filter support"
6657 if test "$_libbs2b" = auto ; then
6658 cat > $TMPC <<EOF
6659 #include <bs2b.h>
6660 #if BS2B_VERSION_MAJOR < 3
6661 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6662 #endif
6663 int main(void) {
6664 t_bs2bdp filter;
6665 filter=bs2b_open();
6666 bs2b_close(filter);
6667 return 0;
6670 _libbs2b=no
6671 if $_pkg_config --exists libbs2b ; then
6672 _inc_tmp=$($_pkg_config --cflags libbs2b)
6673 _ld_tmp=$($_pkg_config --libs libbs2b)
6674 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6675 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6676 else
6677 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6678 -I/usr/local/include/bs2b ; do
6679 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6680 extra_ldflags="$extra_ldflags -lbs2b"
6681 extra_cflags="$extra_cflags $_inc_tmp"
6682 _libbs2b=yes
6683 break
6685 done
6688 def_libbs2b="#undef CONFIG_LIBBS2B"
6689 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B"
6690 echores "$_libbs2b"
6693 if test -z "$_codecsdir" ; then
6694 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6695 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6696 if test -d "$dir" ; then
6697 _codecsdir="$dir"
6698 break;
6700 done
6702 # Fall back on default directory.
6703 if test -z "$_codecsdir" ; then
6704 _codecsdir="$_libdir/codecs"
6705 mingw32 && _codecsdir="codecs"
6706 os2 && _codecsdir="codecs"
6710 echocheck "Win32 codecs"
6711 if test "$_win32dll" = auto ; then
6712 _win32dll=no
6713 if x86_32 && ! qnx; then
6714 _win32dll=yes
6717 if test "$_win32dll" = yes ; then
6718 def_win32dll='#define CONFIG_WIN32DLL 1'
6719 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6720 _res_comment="using $_win32codecsdir"
6721 if ! win32 ; then
6722 def_win32_loader='#define WIN32_LOADER 1'
6723 _win32_emulation=yes
6724 else
6725 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6726 _res_comment="using native windows"
6728 _codecmodules="win32 $_codecmodules"
6729 else
6730 def_win32dll='#undef CONFIG_WIN32DLL'
6731 def_win32_loader='#undef WIN32_LOADER'
6732 _nocodecmodules="win32 $_nocodecmodules"
6734 echores "$_win32dll"
6737 echocheck "XAnim codecs"
6738 if test "$_xanim" = auto ; then
6739 _xanim=no
6740 _res_comment="dynamic loader support needed"
6741 if test "$_dl" = yes ; then
6742 _xanim=yes
6745 if test "$_xanim" = yes ; then
6746 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6747 def_xanim='#define CONFIG_XANIM 1'
6748 def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6749 _codecmodules="xanim $_codecmodules"
6750 _res_comment="using $_xanimcodecsdir"
6751 else
6752 def_xanim='#undef CONFIG_XANIM'
6753 def_xanim_path='#undef XACODEC_PATH'
6754 _nocodecmodules="xanim $_nocodecmodules"
6756 echores "$_xanim"
6759 echocheck "RealPlayer codecs"
6760 if test "$_real" = auto ; then
6761 _real=no
6762 _res_comment="dynamic loader support needed"
6763 if test "$_dl" = yes || test "$_win32dll" = yes &&
6764 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32) ; then
6765 _real=yes
6768 if test "$_real" = yes ; then
6769 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6770 def_real='#define CONFIG_REALCODECS 1'
6771 def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6772 _codecmodules="real $_codecmodules"
6773 _res_comment="using $_realcodecsdir"
6774 else
6775 def_real='#undef CONFIG_REALCODECS'
6776 def_real_path="#undef REALCODEC_PATH"
6777 _nocodecmodules="real $_nocodecmodules"
6779 echores "$_real"
6782 echocheck "QuickTime codecs"
6783 _qtx_emulation=no
6784 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6785 def_quicktime='#undef CONFIG_QUICKTIME'
6786 if test "$_qtx" = auto ; then
6787 test "$_win32dll" = yes || darwin && _qtx=yes
6789 if test "$_qtx" = yes ; then
6790 darwin && extra_ldflags="$extra_ldflags -framework QuickTime" && def_quicktime='#define CONFIG_QUICKTIME 1'
6791 def_qtx='#define CONFIG_QTX_CODECS 1'
6792 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6793 _codecmodules="qtx $_codecmodules"
6794 darwin || win32 || _qtx_emulation=yes
6795 else
6796 def_qtx='#undef CONFIG_QTX_CODECS'
6797 _nocodecmodules="qtx $_nocodecmodules"
6799 echores "$_qtx"
6801 echocheck "Nemesi Streaming Media libraries"
6802 if test "$_nemesi" = auto && test "$_network" = yes ; then
6803 _nemesi=no
6804 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6805 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6806 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6807 _nemesi=yes
6810 if test "$_nemesi" = yes; then
6811 _native_rtsp=no
6812 def_nemesi='#define CONFIG_LIBNEMESI 1'
6813 _inputmodules="nemesi $_inputmodules"
6814 else
6815 _native_rtsp="$_network"
6816 _nemesi=no
6817 def_nemesi='#undef CONFIG_LIBNEMESI'
6818 _noinputmodules="nemesi $_noinputmodules"
6820 echores "$_nemesi"
6822 echocheck "LIVE555 Streaming Media libraries"
6823 if test "$_live" = auto && test "$_network" = yes ; then
6824 cat > $TMPCPP << EOF
6825 #include <liveMedia.hh>
6826 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6827 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6828 #endif
6829 int main(void) { return 0; }
6832 _live=no
6833 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
6834 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6835 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6836 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6837 $_livelibdir/groupsock/libgroupsock.a \
6838 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6839 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6840 $extra_ldflags -lstdc++" \
6841 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6842 -I$_livelibdir/UsageEnvironment/include \
6843 -I$_livelibdir/BasicUsageEnvironment/include \
6844 -I$_livelibdir/groupsock/include" && \
6845 _live=yes && break
6846 done
6847 if test "$_live" != yes ; then
6848 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock; then
6849 _live_dist=yes
6853 if test "$_live" = yes && test "$_network" = yes; then
6854 test $_livelibdir && _res_comment="using $_livelibdir"
6855 def_live='#define CONFIG_LIVE555 1'
6856 _inputmodules="live555 $_inputmodules"
6857 elif test "$_live_dist" = yes && test "$_network" = yes; then
6858 _res_comment="using distribution version"
6859 _live="yes"
6860 def_live='#define CONFIG_LIVE555 1'
6861 extra_ldflags="$extra_ldflags -lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6862 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6863 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6864 _inputmodules="live555 $_inputmodules"
6865 else
6866 _live=no
6867 def_live='#undef CONFIG_LIVE555'
6868 _noinputmodules="live555 $_noinputmodules"
6870 echores "$_live"
6873 echocheck "FFmpeg libavutil"
6874 if test "$_libavutil_a" = auto ; then
6875 if test -d ffmpeg/libavutil ; then
6876 _libavutil_a=yes
6877 _res_comment="static"
6878 else
6879 die "MPlayer will not compile without libavutil in the source tree."
6881 elif test "$_libavutil_so" = auto ; then
6882 _libavutil_so=no
6883 cat > $TMPC << EOF
6884 #include <libavutil/common.h>
6885 int main(void) { av_gcd(1,1); return 0; }
6887 if $_pkg_config --exists libavutil ; then
6888 _inc_libavutil=$($_pkg_config --cflags libavutil)
6889 _ld_tmp=$($_pkg_config --libs libavutil)
6890 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
6891 && _libavutil_so=yes
6892 elif cc_check -lavutil $_ld_lm ; then
6893 extra_ldflags="$extra_ldflags -lavutil"
6894 _libavutil_so=yes
6895 _res_comment="using libavutil.so, but static libavutil is recommended"
6898 _libavutil=no
6899 def_libavutil='#undef CONFIG_LIBAVUTIL'
6900 def_libavutil_a='#undef CONFIG_LIBAVUTIL_A'
6901 def_libavutil_so='#undef CONFIG_LIBAVUTIL_SO'
6902 test "$_libavutil_a" = yes || test "$_libavutil_so" = yes && _libavutil=yes
6903 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6904 test "$_libavutil_a" = yes && def_libavutil_a='#define CONFIG_LIBAVUTIL_A 1'
6905 test "$_libavutil_so" = yes && def_libavutil_so='#define CONFIG_LIBAVUTIL_SO 1'
6906 # neither static nor shared libavutil is available, but it is mandatory ...
6907 if test "$_libavutil" = no ; then
6908 die "You need static or shared libavutil, MPlayer will not compile without!"
6910 echores "$_libavutil"
6912 echocheck "FFmpeg libavcodec"
6913 if test "$_libavcodec_a" = auto ; then
6914 _libavcodec_a=no
6915 if test -d ffmpeg/libavcodec && test -f ffmpeg/libavcodec/utils.c ; then
6916 _libavcodec_a="yes"
6917 _res_comment="static"
6919 elif test "$_libavcodec_so" = auto ; then
6920 _libavcodec_so=no
6921 _res_comment="libavcodec.so is discouraged over static libavcodec"
6922 cat > $TMPC << EOF
6923 #include <libavcodec/avcodec.h>
6924 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6926 if $_pkg_config --exists libavcodec ; then
6927 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6928 _ld_tmp=$($_pkg_config --libs libavcodec)
6929 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
6930 && _libavcodec_so=yes
6931 elif cc_check -lavcodec $_ld_lm ; then
6932 extra_ldflags="$extra_ldflags -lavcodec"
6933 _libavcodec_so=yes
6934 _res_comment="using libavcodec.so, but static libavcodec is recommended"
6937 _libavcodec=no
6938 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6939 def_libavcodec_a='#undef CONFIG_LIBAVCODEC_A'
6940 def_libavcodec_so='#undef CONFIG_LIBAVCODEC_SO'
6941 test "$_libavcodec_a" = yes || test "$_libavcodec_so" = yes && _libavcodec=yes
6942 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6943 test "$_libavcodec_a" = yes && def_libavcodec_a='#define CONFIG_LIBAVCODEC_A 1'
6944 test "$_libavcodec_so" = yes && def_libavcodec_so='#define CONFIG_LIBAVCODEC_SO 1'
6945 test "$_libavcodec_mpegaudio_hp" = yes \
6946 && def_libavcodec_mpegaudio_hp='#define CONFIG_MPEGAUDIO_HP 1'
6947 if test "$_libavcodec_a" = yes ; then
6948 _codecmodules="libavcodec(internal) $_codecmodules"
6949 elif test "$_libavcodec_so" = yes ; then
6950 _codecmodules="libavcodec.so $_codecmodules"
6951 else
6952 _nocodecmodules="libavcodec $_nocodecmodules"
6954 echores "$_libavcodec"
6956 echocheck "FFmpeg libavformat"
6957 if test "$_libavformat_a" = auto ; then
6958 _libavformat_a=no
6959 if test -d ffmpeg/libavformat && test -f ffmpeg/libavformat/utils.c ; then
6960 _libavformat_a=yes
6961 _res_comment="static"
6963 elif test "$_libavformat_so" = auto ; then
6964 _libavformat_so=no
6965 cat > $TMPC <<EOF
6966 #include <libavformat/avformat.h>
6967 #include <libavcodec/opt.h>
6968 int main(void) { av_alloc_format_context(); return 0; }
6970 if $_pkg_config --exists libavformat ; then
6971 _inc_libavformat=$($_pkg_config --cflags libavformat)
6972 _ld_tmp=$($_pkg_config --libs libavformat)
6973 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
6974 && _libavformat_so=yes
6975 elif cc_check $_ld_lm -lavformat ; then
6976 extra_ldflags="$extra_ldflags -lavformat"
6977 _libavformat_so=yes
6978 _res_comment="using libavformat.so, but static libavformat is recommended"
6981 _libavformat=no
6982 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6983 def_libavformat_a='#undef CONFIG_LIBAVFORMAT_A'
6984 def_libavformat_so='#undef CONFIG_LIBAVFORMAT_SO'
6985 test "$_libavformat_a" = yes || test "$_libavformat_so" = yes && _libavformat=yes
6986 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6987 test "$_libavformat_a" = yes && def_libavformat_a='#define CONFIG_LIBAVFORMAT_A 1'
6988 test "$_libavformat_so" = yes \
6989 && def_libavformat_so='#define CONFIG_LIBAVFORMAT_SO 1'
6990 echores "$_libavformat"
6992 echocheck "FFmpeg libpostproc"
6993 if test "$_libpostproc_a" = auto ; then
6994 _libpostproc_a=no
6995 if test -d ffmpeg/libpostproc && test -f ffmpeg/libpostproc/postprocess.h ; then
6996 _libpostproc_a='yes'
6997 _res_comment="static"
6999 elif test "$_libpostproc_so" = auto ; then
7000 _libpostproc_so=no
7001 cat > $TMPC << EOF
7002 #include <inttypes.h>
7003 #include <libpostproc/postprocess.h>
7004 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
7006 if cc_check -lpostproc $_ld_lm ; then
7007 extra_ldflags="$extra_ldflags -lpostproc"
7008 _libpostproc_so=yes
7009 _res_comment="using libpostproc.so, but static libpostproc is recommended"
7012 _libpostproc=no
7013 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
7014 def_libpostproc_a='#undef CONFIG_LIBPOSTPROC_A'
7015 def_libpostproc_so='#undef CONFIG_LIBPOSTPROC_SO'
7016 test "$_libpostproc_a" = yes || test "$_libpostproc_so" = yes && _libpostproc=yes
7017 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
7018 test "$_libpostproc_a" = yes && def_libpostproc_a='#define CONFIG_LIBPOSTPROC_A 1'
7019 test "$_libpostproc_so" = yes \
7020 && def_libpostproc_so='#define CONFIG_LIBPOSTPROC_SO 1'
7021 echores "$_libpostproc"
7023 echocheck "FFmpeg libswscale"
7024 if test "$_libswscale_a" = auto ; then
7025 _libswscale_a=no
7026 if test -d libswscale && test -f libswscale/swscale.h ; then
7027 _libswscale_a='yes'
7028 _res_comment="static"
7030 elif test "$_libswscale_so" = auto ; then
7031 _libswscale_so=no
7032 _res_comment="using libswscale.so, but static libswscale is recommended"
7033 cat > $TMPC << EOF
7034 #include <libswscale/swscale.h>
7035 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7037 if $_pkg_config --exists libswscale ; then
7038 _inc_libswscale=$($_pkg_config --cflags libswscale)
7039 _ld_tmp=$($_pkg_config --libs libswscale)
7040 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7041 && _libswscale_so=yes
7042 elif cc_check -lswscale ; then
7043 extra_ldflags="$extra_ldflags -lswscale"
7044 _libswscale_so=yes
7047 _libswscale=no
7048 def_libswscale='#undef CONFIG_LIBSWSCALE'
7049 def_libswscale_a='#undef CONFIG_LIBSWSCALE_A'
7050 def_libswscale_so='#undef CONFIG_LIBSWSCALE_SO'
7051 test "$_libswscale_a" = yes || test "$_libswscale_so" = yes && _libswscale=yes
7052 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7053 test "$_libswscale_a" = yes && def_libswscale_a='#define CONFIG_LIBSWSCALE_A 1'
7054 test "$_libswscale_so" = yes \
7055 && def_libswscale_so='#define CONFIG_LIBSWSCALE_SO 1'
7056 echores "$_libswscale"
7058 echocheck "libamr narrowband"
7059 if test "$_libamr_nb" = auto ; then
7060 _libamr_nb=no
7061 cat > $TMPC << EOF
7062 #include <amrnb/sp_dec.h>
7063 int main(void) { Speech_Decode_Frame_init(); return 0; }
7065 cc_check -lamrnb && _libamr_nb=yes
7066 if test "$_libavcodec_a" != yes ; then
7067 _libamr_nb=no
7068 _res_comment="libavcodec (static) is required by libamr_nb, sorry"
7071 if test "$_libamr_nb" = yes ; then
7072 _libamr=yes
7073 extra_ldflags="$extra_ldflags -lamrnb"
7074 def_libamr='#define CONFIG_LIBAMR 1'
7075 def_libamr_nb='#define CONFIG_LIBAMR_NB 1'
7076 _libavdecoders="$_libavdecoders LIBAMR_NB_DECODER"
7077 _libavencoders="$_libavencoders LIBAMR_NB_ENCODER"
7078 _codecmodules="libamr_nb $_codecmodules"
7079 else
7080 def_libamr_nb='#define CONFIG_LIBAMR_NB 0'
7081 _nocodecmodules="libamr_nb $_nocodecmodules"
7083 echores "$_libamr_nb"
7086 echocheck "libamr wideband"
7087 if test "$_libamr_wb" = auto ; then
7088 _libamr_wb=no
7089 cat > $TMPC << EOF
7090 #include <amrwb/dec_if.h>
7091 int main(void) { D_IF_init(); return 0; }
7093 cc_check -lamrwb && _libamr_wb=yes
7094 if test "$_libavcodec_a" != yes ; then
7095 _libamr_wb=no
7096 _res_comment="libavcodec (static) is required by libamr_wb, sorry"
7099 if test "$_libamr_wb" = yes ; then
7100 _libamr=yes
7101 extra_ldflags="$extra_ldflags -lamrwb"
7102 def_libamr='#define CONFIG_LIBAMR 1'
7103 def_libamr_wb='#define CONFIG_LIBAMR_WB 1'
7104 _libavdecoders="$_libavdecoders LIBAMR_WB_DECODER"
7105 _libavencoders="$_libavencoders LIBAMR_WB_ENCODER"
7106 _codecmodules="libamr_wb $_codecmodules"
7107 else
7108 def_libamr_wb='#define CONFIG_LIBAMR_WB 0'
7109 _nocodecmodules="libamr_wb $_nocodecmodules"
7111 echores "$_libamr_wb"
7113 echocheck "libdv-0.9.5+"
7114 if test "$_libdv" = auto ; then
7115 _libdv=no
7116 cat > $TMPC <<EOF
7117 #include <libdv/dv.h>
7118 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7120 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7122 if test "$_libdv" = yes ; then
7123 def_libdv='#define CONFIG_LIBDV095 1'
7124 extra_ldflags="$extra_ldflags -ldv"
7125 _codecmodules="libdv $_codecmodules"
7126 else
7127 def_libdv='#undef CONFIG_LIBDV095'
7128 _nocodecmodules="libdv $_nocodecmodules"
7130 echores "$_libdv"
7133 echocheck "Xvid"
7134 if test "$_xvid" = auto ; then
7135 _xvid=no
7136 cat > $TMPC << EOF
7137 #include <xvid.h>
7138 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7140 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7141 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7142 done
7145 if test "$_xvid" = yes ; then
7146 def_xvid='#define CONFIG_XVID4 1'
7147 _codecmodules="xvid $_codecmodules"
7148 else
7149 def_xvid='#undef CONFIG_XVID4'
7150 _nocodecmodules="xvid $_nocodecmodules"
7152 echores "$_xvid"
7154 echocheck "Xvid two pass plugin"
7155 if test "$_xvid" = yes && test "$_xvid_lavc" = auto ; then
7156 cat > $TMPC << EOF
7157 #include <xvid.h>
7158 int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
7160 cc_check && _xvid_lavc=yes
7162 if test "$_xvid_lavc" = yes ; then
7163 def_xvid_lavc='#define CONFIG_LIBXVID 1'
7164 _libavencoders="$_libavencoders LIBXVID_ENCODER"
7165 else
7166 _xvid_lavc=no
7167 def_xvid_lavc='#define CONFIG_LIBXVID 0'
7169 echores "$_xvid_lavc"
7172 echocheck "x264"
7173 if test "$_x264" = auto ; then
7174 cat > $TMPC << EOF
7175 #include <inttypes.h>
7176 #include <x264.h>
7177 #if X264_BUILD < 65
7178 #error We do not support old versions of x264. Get the latest from SVN.
7179 #endif
7180 int main(void) { x264_encoder_open((void*)0); return 0; }
7182 _x264=no
7183 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7184 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7185 done
7188 if test "$_x264" = yes ; then
7189 def_x264='#define CONFIG_X264 1'
7190 _codecmodules="x264 $_codecmodules"
7191 test "$_x264_lavc" = auto && _x264_lavc=yes
7192 if test "$_x264_lavc" = yes ; then
7193 def_x264_lavc='#define CONFIG_LIBX264 1'
7194 libs_mplayer="$libs_mplayer $_ld_x264"
7195 _libavencoders="$_libavencoders LIBX264_ENCODER"
7197 else
7198 _x264_lavc=no
7199 def_x264='#undef CONFIG_X264'
7200 def_x264_lavc='#define CONFIG_LIBX264 0'
7201 _nocodecmodules="x264 $_nocodecmodules"
7203 _res_comment="in libavcodec: $_x264_lavc"
7204 echores "$_x264"
7207 echocheck "libdirac"
7208 if test "$_libdirac_lavc" = auto; then
7209 _libdirac_lavc=no
7210 if test "$_libavcodec_a" != yes; then
7211 _res_comment="libavcodec (static) is required by libdirac, sorry"
7212 else
7213 cat > $TMPC << EOF
7214 #include <libdirac_encoder/dirac_encoder.h>
7215 #include <libdirac_decoder/dirac_parser.h>
7216 int main(void)
7218 dirac_encoder_context_t enc_ctx;
7219 dirac_decoder_t *dec_handle;
7220 dirac_encoder_context_init(&enc_ctx, VIDEO_FORMAT_SD_576I50);
7221 dec_handle = dirac_decoder_init(0);
7222 if (dec_handle)
7223 dirac_decoder_close(dec_handle);
7224 return 0;
7227 if $_pkg_config --exists dirac ; then
7228 _inc_dirac=$($_pkg_config --silence-errors --cflags dirac)
7229 _ld_dirac=$($_pkg_config --silence-errors --libs dirac)
7230 cc_check $_inc_dirac $_ld_dirac &&
7231 _libdirac_lavc=yes &&
7232 extra_cflags="$extra_cflags $_inc_dirac" &&
7233 extra_ldflags="$extra_ldflags $_ld_dirac"
7237 if test "$_libdirac_lavc" = yes ; then
7238 def_libdirac_lavc='#define CONFIG_LIBDIRAC 1'
7239 _libavencoders="$_libavencoders LIBDIRAC_ENCODER"
7240 _libavdecoders="$_libavdecoders LIBDIRAC_DECODER"
7241 _codecmodules="libdirac $_codecmodules"
7242 else
7243 def_libdirac_lavc='#define CONFIG_LIBDIRAC 0'
7244 _nocodecmodules="libdirac $_nocodecmodules"
7246 echores "$_libdirac_lavc"
7249 echocheck "libschroedinger"
7250 if test "$_libschroedinger_lavc" = auto ; then
7251 _libschroedinger_lavc=no
7252 if test "$_libavcodec_a" != yes; then
7253 _res_comment="libavcodec (static) is required by libschroedinger, sorry"
7254 else
7255 cat > $TMPC << EOF
7256 #include <schroedinger/schro.h>
7257 int main(void) { schro_init(); return 0; }
7259 if $_pkg_config --exists schroedinger-1.0 ; then
7260 _inc_schroedinger=$($_pkg_config --silence-errors --cflags schroedinger-1.0)
7261 _ld_schroedinger=$($_pkg_config --silence-errors --libs schroedinger-1.0)
7262 cc_check $_inc_schroedinger $_ld_schroedinger &&
7263 _libschroedinger_lavc=yes &&
7264 extra_cflags="$extra_cflags $_inc_schroedinger" &&
7265 extra_ldflags="$extra_ldflags $_ld_schroedinger"
7269 if test "$_libschroedinger_lavc" = yes ; then
7270 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 1'
7271 _libavencoders="$_libavencoders LIBSCHROEDINGER_ENCODER"
7272 _libavdecoders="$_libavdecoders LIBSCHROEDINGER_DECODER"
7273 _codecmodules="libschroedinger $_codecmodules"
7274 else
7275 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 0'
7276 _nocodecmodules="libschroedinger $_nocodecmodules"
7278 echores "$_libschroedinger_lavc"
7280 echocheck "libnut"
7281 if test "$_libnut" = auto ; then
7282 cat > $TMPC << EOF
7283 #include <stdio.h>
7284 #include <stdlib.h>
7285 #include <inttypes.h>
7286 #include <libnut.h>
7287 int main(void) { (void)nut_error(0); return 0; }
7289 _libnut=no
7290 cc_check -lnut && _libnut=yes
7293 if test "$_libnut" = yes ; then
7294 def_libnut='#define CONFIG_LIBNUT 1'
7295 extra_ldflags="$extra_ldflags -lnut"
7296 else
7297 def_libnut='#undef CONFIG_LIBNUT'
7299 echores "$_libnut"
7301 #check must be done after libavcodec one
7302 echocheck "zr"
7303 if test "$_zr" = auto ; then
7304 #36067's seem to identify themselves as 36057PQC's, so the line
7305 #below should work for 36067's and 36057's.
7306 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7307 _zr=yes
7308 else
7309 _zr=no
7312 if test "$_zr" = yes ; then
7313 if test "$_libavcodec_a" = yes ; then
7314 def_zr='#define CONFIG_ZR 1'
7315 _vomodules="zr zr2 $_vomodules"
7316 else
7317 _res_comment="libavcodec (static) is required by zr, sorry"
7318 _novomodules="zr $_novomodules"
7319 def_zr='#undef CONFIG_ZR'
7321 else
7322 def_zr='#undef CONFIG_ZR'
7323 _novomodules="zr zr2 $_novomodules"
7325 echores "$_zr"
7327 # mencoder requires (optional) those libs: libmp3lame
7328 if test "$_mencoder" != no ; then
7330 echocheck "libmp3lame"
7331 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7332 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7333 if test "$_mp3lame" = auto ; then
7334 _mp3lame=no
7335 cat > $TMPC <<EOF
7336 #include <lame/lame.h>
7337 int main(void) { lame_version_t lv; (void) lame_init();
7338 get_lame_version_numerical(&lv); printf("%d%d\n",lv.major,lv.minor);
7339 return 0; }
7341 cc_check -lmp3lame $_ld_lm && tmp_run && _mp3lame=yes
7343 if test "$_mp3lame" = yes ; then
7344 def_mp3lame="#define CONFIG_MP3LAME"
7345 _ld_mp3lame=-lmp3lame
7346 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7347 cat > $TMPC << EOF
7348 #include <lame/lame.h>
7349 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7351 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET"
7352 cat > $TMPC << EOF
7353 #include <lame/lame.h>
7354 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7356 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM"
7357 test "$_mp3lame_lavc" = auto && _mp3lame_lavc=yes
7358 if test "$_mp3lame_lavc" = yes ; then
7359 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 1"
7360 _libavencoders="$_libavencoders LIBMP3LAME_ENCODER"
7361 libs_mplayer="$libs_mplayer $_ld_mp3lame"
7363 else
7364 _mp3lame_lavc=no
7365 def_mp3lame='#undef CONFIG_MP3LAME'
7366 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 0"
7368 _res_comment="in libavcodec: $_mp3lame_lavc"
7369 echores "$_mp3lame"
7371 fi # test "$_mencoder" != no
7373 echocheck "mencoder"
7374 if test "$_mencoder" = yes ; then
7375 def_muxers='#define CONFIG_MUXERS 1'
7376 else
7377 # mpeg1video for vf_lavc, snow for vf_uspp and vf_mcdeint, png for vf_screenshot
7378 _libavencoders="MPEG1VIDEO_ENCODER SNOW_ENCODER"
7379 test "$_zlib" = yes && _libavencoders="$_libavencoders PNG_ENCODER"
7380 _libavmuxers=""
7382 echores "$_mencoder"
7385 echocheck "UnRAR executable"
7386 if test "$_unrar_exec" = auto ; then
7387 _unrar_exec="yes"
7388 mingw32 && _unrar_exec="no"
7390 if test "$_unrar_exec" = yes ; then
7391 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7392 else
7393 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7395 echores "$_unrar_exec"
7397 echocheck "TV interface"
7398 if test "$_tv" = yes ; then
7399 def_tv='#define CONFIG_TV 1'
7400 _inputmodules="tv $_inputmodules"
7401 else
7402 _noinputmodules="tv $_noinputmodules"
7403 def_tv='#undef CONFIG_TV'
7405 echores "$_tv"
7408 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7409 echocheck "*BSD BT848 bt8xx header"
7410 _ioctl_bt848_h=no
7411 for file in "machine/ioctl_bt848.h" \
7412 "dev/bktr/ioctl_bt848.h" \
7413 "dev/video/bktr/ioctl_bt848.h" \
7414 "dev/ic/bt8xx.h" ; do
7415 cat > $TMPC <<EOF
7416 #include <sys/types.h>
7417 #include <sys/ioctl.h>
7418 #include <$file>
7419 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7421 if cc_check ; then
7422 _ioctl_bt848_h=yes
7423 _ioctl_bt848_h_name="$file"
7424 break;
7426 done
7427 if test "$_ioctl_bt848_h" = yes ; then
7428 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7429 _res_comment="using $_ioctl_bt848_h_name"
7430 else
7431 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7433 echores "$_ioctl_bt848_h"
7435 echocheck "*BSD ioctl_meteor.h"
7436 _ioctl_meteor_h=no
7437 for file in "machine/ioctl_meteor.h" \
7438 "dev/bktr/ioctl_meteor.h" \
7439 "dev/video/bktr/ioctl_meteor.h" ; do
7440 cat > $TMPC <<EOF
7441 #include <sys/types.h>
7442 #include <$file>
7443 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7445 if cc_check ; then
7446 _ioctl_meteor_h=yes
7447 _ioctl_meteor_h_name="$file"
7448 break;
7450 done
7451 if test "$_ioctl_meteor_h" = yes ; then
7452 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7453 _res_comment="using $_ioctl_meteor_h_name"
7454 else
7455 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7457 echores "$_ioctl_meteor_h"
7459 echocheck "*BSD BrookTree 848 TV interface"
7460 if test "$_tv_bsdbt848" = auto ; then
7461 _tv_bsdbt848=no
7462 if test "$_tv" = yes ; then
7463 cat > $TMPC <<EOF
7464 #include <sys/types.h>
7465 $def_ioctl_meteor_h_name
7466 $def_ioctl_bt848_h_name
7467 #ifdef IOCTL_METEOR_H_NAME
7468 #include IOCTL_METEOR_H_NAME
7469 #endif
7470 #ifdef IOCTL_BT848_H_NAME
7471 #include IOCTL_BT848_H_NAME
7472 #endif
7473 int main(void) {
7474 ioctl(0, METEORSINPUT, 0);
7475 ioctl(0, TVTUNER_GETFREQ, 0);
7476 return 0;
7479 cc_check && _tv_bsdbt848=yes
7482 if test "$_tv_bsdbt848" = yes ; then
7483 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7484 _inputmodules="tv-bsdbt848 $_inputmodules"
7485 else
7486 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7487 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7489 echores "$_tv_bsdbt848"
7490 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7493 echocheck "DirectShow TV interface"
7494 if test "$_tv_dshow" = auto ; then
7495 _tv_dshow=no
7496 if test "$_tv" = yes && win32 ; then
7497 cat > $TMPC <<EOF
7498 #include <ole2.h>
7499 int main(void) {
7500 void* p;
7501 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7502 return 0;
7505 cc_check -lole32 -luuid && _tv_dshow=yes
7508 if test "$_tv_dshow" = yes ; then
7509 _inputmodules="tv-dshow $_inputmodules"
7510 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7511 extra_ldflags="$extra_ldflags -lole32 -luuid"
7512 else
7513 _noinputmodules="tv-dshow $_noinputmodules"
7514 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7516 echores "$_tv_dshow"
7519 echocheck "Video 4 Linux TV interface"
7520 if test "$_tv_v4l1" = auto ; then
7521 _tv_v4l1=no
7522 if test "$_tv" = yes && linux ; then
7523 cat > $TMPC <<EOF
7524 #include <stdlib.h>
7525 #include <linux/videodev.h>
7526 int main(void) { return 0; }
7528 cc_check && _tv_v4l1=yes
7531 if test "$_tv_v4l1" = yes ; then
7532 _audio_input=yes
7533 _tv_v4l=yes
7534 def_tv_v4l='#define CONFIG_TV_V4L 1'
7535 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7536 _inputmodules="tv-v4l $_inputmodules"
7537 else
7538 _noinputmodules="tv-v4l1 $_noinputmodules"
7539 def_tv_v4l='#undef CONFIG_TV_V4L'
7541 echores "$_tv_v4l1"
7544 echocheck "Video 4 Linux 2 TV interface"
7545 if test "$_tv_v4l2" = auto ; then
7546 _tv_v4l2=no
7547 if test "$_tv" = yes && linux ; then
7548 cat > $TMPC <<EOF
7549 #include <stdlib.h>
7550 #include <linux/types.h>
7551 #include <linux/videodev2.h>
7552 int main(void) { return 0; }
7554 cc_check && _tv_v4l2=yes
7557 if test "$_tv_v4l2" = yes ; then
7558 _audio_input=yes
7559 _tv_v4l=yes
7560 def_tv_v4l='#define CONFIG_TV_V4L 1'
7561 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7562 _inputmodules="tv-v4l2 $_inputmodules"
7563 else
7564 _noinputmodules="tv-v4l2 $_noinputmodules"
7565 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7567 echores "$_tv_v4l2"
7570 echocheck "TV teletext interface"
7571 if test "$_tv_teletext" = auto ; then
7572 _tv_teletext=no
7573 if test "$_freetype" = yes && test "$_pthreads" = yes; then
7574 if test "$_tv_v4l2" = yes || test "$_v4l" = yes || test "$_tv_dshow" = yes; then
7575 _tv_teletext=yes
7579 if test "$_tv_teletext" = yes ; then
7580 def_tv_teletext='#define CONFIG_TV_TELETEXT 1'
7581 _inputmodules="tv-teletext $_inputmodules"
7582 else
7583 _noinputmodules="tv-teletext $_noinputmodules"
7584 def_tv_teletext='#undef CONFIG_TV_TELETEXT'
7586 echores "$_tv_teletext"
7589 echocheck "Radio interface"
7590 if test "$_radio" = yes ; then
7591 def_radio='#define CONFIG_RADIO 1'
7592 _inputmodules="radio $_inputmodules"
7593 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7594 _radio_capture=no
7596 if test "$_radio_capture" = yes ; then
7597 _audio_input=yes
7598 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7599 else
7600 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7602 else
7603 _noinputmodules="radio $_noinputmodules"
7604 def_radio='#undef CONFIG_RADIO'
7605 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7606 _radio_capture=no
7608 echores "$_radio"
7609 echocheck "Capture for Radio interface"
7610 echores "$_radio_capture"
7612 echocheck "Video 4 Linux 2 Radio interface"
7613 if test "$_radio_v4l2" = auto ; then
7614 _radio_v4l2=no
7615 if test "$_radio" = yes && linux ; then
7616 cat > $TMPC <<EOF
7617 #include <stdlib.h>
7618 #include <linux/types.h>
7619 #include <linux/videodev2.h>
7620 int main(void) { return 0; }
7622 cc_check && _radio_v4l2=yes
7625 if test "$_radio_v4l2" = yes ; then
7626 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7627 else
7628 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7630 echores "$_radio_v4l2"
7632 echocheck "Video 4 Linux Radio interface"
7633 if test "$_radio_v4l" = auto ; then
7634 _radio_v4l=no
7635 if test "$_radio" = yes && linux ; then
7636 cat > $TMPC <<EOF
7637 #include <stdlib.h>
7638 #include <linux/videodev.h>
7639 int main(void) { return 0; }
7641 cc_check && _radio_v4l=yes
7644 if test "$_radio_v4l" = yes ; then
7645 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7646 else
7647 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7649 echores "$_radio_v4l"
7651 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7652 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7653 echocheck "*BSD BrookTree 848 Radio interface"
7654 _radio_bsdbt848=no
7655 cat > $TMPC <<EOF
7656 #include <sys/types.h>
7657 $def_ioctl_bt848_h_name
7658 #ifdef IOCTL_BT848_H_NAME
7659 #include IOCTL_BT848_H_NAME
7660 #endif
7661 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7663 cc_check && _radio_bsdbt848=yes
7664 echores "$_radio_bsdbt848"
7665 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7667 if test "$_radio_bsdbt848" = yes ; then
7668 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7669 else
7670 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7673 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7674 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7675 die "Radio driver requires BSD BT848, V4L or V4L2!"
7678 echocheck "Video 4 Linux 2 MPEG PVR interface"
7679 if test "$_pvr" = auto ; then
7680 _pvr=no
7681 if test "$_tv_v4l2" = yes && linux ; then
7682 cat > $TMPC <<EOF
7683 #include <stdlib.h>
7684 #include <inttypes.h>
7685 #include <linux/types.h>
7686 #include <linux/videodev2.h>
7687 int main(void) { struct v4l2_ext_controls ext; return 0; }
7689 cc_check && _pvr=yes
7692 if test "$_pvr" = yes ; then
7693 def_pvr='#define CONFIG_PVR 1'
7694 _inputmodules="pvr $_inputmodules"
7695 else
7696 _noinputmodules="pvr $_noinputmodules"
7697 def_pvr='#undef CONFIG_PVR'
7699 echores "$_pvr"
7702 echocheck "ftp"
7703 if ! beos && test "$_ftp" = yes ; then
7704 def_ftp='#define CONFIG_FTP 1'
7705 _inputmodules="ftp $_inputmodules"
7706 else
7707 _noinputmodules="ftp $_noinputmodules"
7708 def_ftp='#undef CONFIG_FTP'
7710 echores "$_ftp"
7712 echocheck "vstream client"
7713 if test "$_vstream" = auto ; then
7714 _vstream=no
7715 cat > $TMPC <<EOF
7716 #include <vstream-client.h>
7717 void vstream_error(const char *format, ... ) {}
7718 int main(void) { vstream_start(); return 0; }
7720 cc_check -lvstream-client && _vstream=yes
7722 if test "$_vstream" = yes ; then
7723 def_vstream='#define CONFIG_VSTREAM 1'
7724 _inputmodules="vstream $_inputmodules"
7725 extra_ldflags="$extra_ldflags -lvstream-client"
7726 else
7727 _noinputmodules="vstream $_noinputmodules"
7728 def_vstream='#undef CONFIG_VSTREAM'
7730 echores "$_vstream"
7733 echocheck "OSD menu"
7734 if test "$_menu" = yes ; then
7735 def_menu='#define CONFIG_MENU 1'
7736 test $_dvbin = "yes" && _menu_dvbin=yes
7737 else
7738 def_menu='#undef CONFIG_MENU'
7739 _menu_dvbin=no
7741 echores "$_menu"
7744 echocheck "Subtitles sorting"
7745 if test "$_sortsub" = yes ; then
7746 def_sortsub='#define CONFIG_SORTSUB 1'
7747 else
7748 def_sortsub='#undef CONFIG_SORTSUB'
7750 echores "$_sortsub"
7753 echocheck "XMMS inputplugin support"
7754 if test "$_xmms" = yes ; then
7755 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7756 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7757 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7758 else
7759 _xmmsplugindir=/usr/lib/xmms/Input
7760 _xmmslibdir=/usr/lib
7763 def_xmms='#define CONFIG_XMMS 1'
7764 if darwin ; then
7765 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7766 else
7767 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7769 else
7770 def_xmms='#undef CONFIG_XMMS'
7772 echores "$_xmms"
7775 # --------------- GUI specific tests begin -------------------
7776 echocheck "GUI"
7777 echo "$_gui"
7778 if test "$_gui" = yes ; then
7780 # Required libraries
7781 if test "$_libavcodec" != yes ||
7782 ! echo $_libavdecoders | grep -q PNG_DECODER ; then
7783 die "The GUI requires libavcodec with PNG support (needs zlib)."
7785 test "$_freetype" = no && test "$_bitmap_font" = no && \
7786 die "The GUI requires either FreeType or bitmap font support."
7787 if ! win32 ; then
7788 _gui_gtk=yes
7789 test "$_x11" != yes && die "X11 support required for GUI compilation."
7791 echocheck "XShape extension"
7792 if test "$_xshape" = auto ; then
7793 _xshape=no
7794 cat > $TMPC << EOF
7795 #include <X11/Xlib.h>
7796 #include <X11/Xproto.h>
7797 #include <X11/Xutil.h>
7798 #include <X11/extensions/shape.h>
7799 #include <stdlib.h>
7800 int main(void) {
7801 char *name = ":0.0";
7802 Display *wsDisplay;
7803 int exitvar = 0;
7804 int eventbase, errorbase;
7805 if (getenv("DISPLAY"))
7806 name=getenv("DISPLAY");
7807 wsDisplay=XOpenDisplay(name);
7808 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase))
7809 exitvar=1;
7810 XCloseDisplay(wsDisplay);
7811 return exitvar;
7814 cc_check -lXext && _xshape=yes
7816 if test "$_xshape" = yes ; then
7817 def_xshape='#define CONFIG_XSHAPE 1'
7818 else
7819 die "The GUI requires the X11 extension XShape (which was not found)."
7821 echores "$_xshape"
7823 #Check for GTK
7824 if test "$_gtk1" = no ; then
7825 #Check for GTK2 :
7826 echocheck "GTK+ version"
7828 if $_pkg_config gtk+-2.0 --exists ; then
7829 _gtk=$($_pkg_config gtk+-2.0 --modversion 2>/dev/null)
7830 extra_cflags="$extra_cflags $($_pkg_config gtk+-2.0 --cflags 2>/dev/null)"
7831 libs_mplayer="$libs_mplayer $($_pkg_config gtk+-2.0 --libs 2>/dev/null)"
7832 echores "$_gtk"
7834 # Check for GLIB2
7835 if $_pkg_config glib-2.0 --exists ; then
7836 echocheck "glib version"
7837 _glib=$($_pkg_config glib-2.0 --modversion 2>/dev/null)
7838 libs_mplayer="$libs_mplayer $($_pkg_config glib-2.0 --libs 2>/dev/null)"
7839 echores "$_glib"
7841 def_gui='#define CONFIG_GUI 1'
7842 def_gtk2='#define CONFIG_GTK2 1'
7843 else
7844 _gtk1=yes
7845 echo "GLIB-2 devel packages were not found, trying GTK 1.2"
7847 else
7848 echo "GTK-2 devel packages were not found, trying GTK 1.2"
7849 _gtk1=yes
7853 if test "$_gtk1" = yes ; then
7854 # Check for old GTK (1.2.x)
7855 echocheck "GTK version"
7856 if test -z "$_gtkconfig" ; then
7857 if ( gtk-config --version ) >/dev/null 2>&1 ; then
7858 _gtkconfig="gtk-config"
7859 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
7860 _gtkconfig="gtk12-config"
7861 else
7862 die "The GUI requires GTK devel packages (which were not found)."
7865 _gtk=$($_gtkconfig --version 2>&1)
7866 extra_cflags="$extra_cflags $($_gtkconfig --cflags 2>&1)"
7867 libs_mplayer="$libs_mplayer $($_gtkconfig --libs 2>&1)"
7868 echores "$_gtk (using $_gtkconfig)"
7870 # Check for GLIB
7871 echocheck "glib version"
7872 if test -z "$_glibconfig" ; then
7873 if ( glib-config --version ) >/dev/null 2>&1 ; then
7874 _glibconfig="glib-config"
7875 elif ( glib12-config --version ) >/dev/null 2>&1 ; then
7876 _glibconfig="glib12-config"
7877 else
7878 die "The GUI requires GLIB devel packages (which were not found)"
7881 _glib=$($_glibconfig --version 2>&1)
7882 libs_mplayer="$libs_mplayer $($_glibconfig --libs 2>&1)"
7883 echores "$_glib (using $_glibconfig)"
7885 def_gui='#define CONFIG_GUI 1'
7886 def_gtk2='#undef CONFIG_GTK2'
7889 else #if ! win32
7890 _gui_win32=yes
7891 libs_mplayer="$libs_mplayer -lcomdlg32 -lcomctl32 -lshell32 -lkernel32"
7892 def_gui='#define CONFIG_GUI 1'
7893 def_gtk2='#undef CONFIG_GTK2'
7894 fi #if ! win32
7896 else #if test "$_gui"
7897 def_gui='#undef CONFIG_GUI'
7898 def_gtk2='#undef CONFIG_GTK2'
7899 fi #if test "$_gui"
7900 # --------------- GUI specific tests end -------------------
7903 if test "$_charset" != "noconv" ; then
7904 def_charset="#define MSG_CHARSET \"$_charset\""
7905 else
7906 def_charset="#undef MSG_CHARSET"
7907 _charset="UTF-8"
7910 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
7911 echocheck "iconv program"
7912 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
7913 if test "$?" -ne 0 ; then
7914 echores "no"
7915 echo "No working iconv program found, use "
7916 echo "--charset=UTF-8 to continue anyway."
7917 echo "If you also have problems with iconv library functions use --charset=noconv."
7918 echo "Messages in the GTK-2 interface will be broken then."
7919 exit 1
7920 else
7921 echores "yes"
7925 #############################################################################
7927 echocheck "automatic gdb attach"
7928 if test "$_crash_debug" = yes ; then
7929 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7930 else
7931 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7932 _crash_debug=no
7934 echores "$_crash_debug"
7936 echocheck "compiler support for noexecstack"
7937 cat > $TMPC <<EOF
7938 int main(void) { return 0; }
7940 if cc_check -Wl,-z,noexecstack ; then
7941 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7942 echores "yes"
7943 else
7944 echores "no"
7948 # Dynamic linking flags
7949 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7950 _ld_dl_dynamic=''
7951 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7952 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 ; then
7953 _ld_dl_dynamic='-rdynamic'
7956 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7957 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7958 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7960 def_debug='#undef MP_DEBUG'
7961 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7964 echocheck "joystick"
7965 def_joystick='#undef CONFIG_JOYSTICK'
7966 if test "$_joystick" = yes ; then
7967 if linux ; then
7968 # TODO add some check
7969 def_joystick='#define CONFIG_JOYSTICK 1'
7970 else
7971 _joystick="no"
7972 _res_comment="unsupported under $system_name"
7975 echores "$_joystick"
7977 echocheck "lirc"
7978 if test "$_lirc" = auto ; then
7979 _lirc=no
7980 cat > $TMPC <<EOF
7981 #include <lirc/lirc_client.h>
7982 int main(void) { return 0; }
7984 cc_check -llirc_client && _lirc=yes
7986 if test "$_lirc" = yes ; then
7987 def_lirc='#define CONFIG_LIRC 1'
7988 libs_mplayer="$libs_mplayer -llirc_client"
7989 else
7990 def_lirc='#undef CONFIG_LIRC'
7992 echores "$_lirc"
7994 echocheck "lircc"
7995 if test "$_lircc" = auto ; then
7996 _lircc=no
7997 cat > $TMPC <<EOF
7998 #include <lirc/lircc.h>
7999 int main(void) { return 0; }
8001 cc_check -llircc && _lircc=yes
8003 if test "$_lircc" = yes ; then
8004 def_lircc='#define CONFIG_LIRCC 1'
8005 libs_mplayer="$libs_mplayer -llircc"
8006 else
8007 def_lircc='#undef CONFIG_LIRCC'
8009 echores "$_lircc"
8011 if arm; then
8012 # Detect maemo development platform libraries availability (http://www.maemo.org),
8013 # they are used when run on Nokia 770|8x0
8014 echocheck "maemo (Nokia 770|8x0)"
8015 if test "$_maemo" = auto ; then
8016 _maemo=no
8017 cat > $TMPC << EOF
8018 #include <libosso.h>
8019 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
8021 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
8023 if test "$_maemo" = yes ; then
8024 def_maemo='#define CONFIG_MAEMO 1'
8025 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
8026 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
8027 else
8028 def_maemo='#undef CONFIG_MAEMO'
8030 echores "$_maemo"
8033 #############################################################################
8035 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
8036 # the OMF format needs to come after the 'extern symbol prefix' check, which
8037 # uses nm.
8038 if os2 ; then
8039 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
8042 # linker paths should be the same for mencoder and mplayer
8043 _ld_tmp=""
8044 for I in $libs_mplayer ; do
8045 _tmp=$(echo $I | sed -e 's/^-L.*$//')
8046 if test -z "$_tmp" ; then
8047 extra_ldflags="$extra_ldflags $I"
8048 else
8049 _ld_tmp="$_ld_tmp $I"
8051 done
8052 libs_mplayer=$_ld_tmp
8055 #############################################################################
8056 # 64 bit file offsets?
8057 if test "$_largefiles" = yes || freebsd ; then
8058 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
8059 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
8060 # dvdread support requires this (for off64_t)
8061 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
8065 CXXFLAGS=" $CFLAGS -Iffmpeg -D__STDC_LIMIT_MACROS"
8067 # This must be the last test to be performed. Any other tests following it
8068 # could fail due to linker errors. libdvdnavmini is intentionally not linked
8069 # against libdvdread (to permit MPlayer to use its own copy of the library).
8070 # So any compilation using the flags added here but not linking against
8071 # libdvdread can fail.
8072 echocheck "DVD support (libdvdnav)"
8073 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
8074 _dvdnav=no
8076 dvdnav_internal=no
8077 if test "$_dvdnav" = auto ; then
8078 if test "$_dvdread_internal" = yes ; then
8079 _dvdnav=yes
8080 dvdnav_internal=yes
8081 _res_comment="internal"
8082 else
8083 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
8086 if test "$_dvdnav" = auto ; then
8087 cat > $TMPC <<EOF
8088 #include <inttypes.h>
8089 #include <dvdnav/dvdnav.h>
8090 int main(void) { dvdnav_t *dvd=0; return 0; }
8092 _dvdnav=no
8093 _dvdnavdir=$($_dvdnavconfig --cflags)
8094 _dvdnavlibs=$($_dvdnavconfig --libs)
8095 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
8097 if test "$_dvdnav" = yes ; then
8098 _largefiles=yes
8099 def_dvdnav='#define CONFIG_DVDNAV 1'
8100 if test "$dvdnav_internal" = yes ; then
8101 cflags_libdvdnav="-Ilibdvdnav"
8102 _inputmodules="dvdnav(internal) $_inputmodules"
8103 else
8104 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
8105 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
8106 _inputmodules="dvdnav $_inputmodules"
8108 else
8109 def_dvdnav='#undef CONFIG_DVDNAV'
8110 _noinputmodules="dvdnav $_noinputmodules"
8112 echores "$_dvdnav"
8114 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
8115 # Read dvdnav comment above.
8117 CFLAGS_FFMPEG="-I../.. $CFLAGS"
8118 CFLAGS="-Iffmpeg $CFLAGS"
8120 #############################################################################
8121 echo "Creating config.mak"
8122 cat > config.mak << EOF
8123 # -------- Generated by configure -----------
8125 # Ensure that locale settings do not interfere with shell commands.
8126 export LC_ALL = C
8128 CONFIGURATION = $_configuration
8130 CHARSET = $_charset
8131 DOC_LANG = $doc_lang
8132 DOC_LANGS = $doc_langs
8133 DOC_LANG_ALL = $doc_lang_all
8134 MAN_LANG = $man_lang
8135 MAN_LANGS = $man_langs
8136 MAN_LANG_ALL = $man_lang_all
8138 prefix = \$(DESTDIR)$_prefix
8139 BINDIR = \$(DESTDIR)$_bindir
8140 DATADIR = \$(DESTDIR)$_datadir
8141 LIBDIR = \$(DESTDIR)$_libdir
8142 MANDIR = \$(DESTDIR)$_mandir
8143 CONFDIR = \$(DESTDIR)$_confdir
8145 AR = $_ar
8146 CC = $_cc
8147 CXX = $_cc
8148 HOST_CC = $_host_cc
8149 YASM = $_yasm
8150 INSTALL = $_install
8151 INSTALLSTRIP = $_install_strip
8152 RANLIB = $_ranlib
8153 WINDRES = $_windres
8155 CFLAGS = $CFLAGS $extra_cflags
8156 OPTFLAGS = $CFLAGS $extra_cflags
8157 FFMPEG_OFLAGS = $CFLAGS_FFMPEG $extra_cflags
8158 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
8159 CFLAGS_DHAHELPER = $cflags_dhahelper
8160 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
8161 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
8162 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
8163 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
8164 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
8165 CFLAGS_STACKREALIGN = $cflags_stackrealign
8166 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
8167 CFLAGS_TREMOR_LOW = $cflags_tremor_low
8168 YASMFLAGS = $YASMFLAGS
8170 EXTRALIBS = $extra_libs
8171 EXTRA_LIB = $extra_ldflags $_ld_static $_ld_lm
8172 EXTRALIBS_MPLAYER = $libs_mplayer
8173 EXTRALIBS_MENCODER = $libs_mencoder
8175 DEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.h,\$^) | sed "s,[0-9a-z._-]*: \(\$(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\\2&,"
8177 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 &,"
8178 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 &,"
8180 GETCH = $_getch
8181 HELP_FILE = $_mp_help
8182 TIMER = $_timer
8184 EXESUF = $_exesuf
8185 EXESUFS_ALL = .exe
8187 $_target_arch
8188 $_target_arch_x86
8189 $(echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/')
8191 MENCODER = $_mencoder
8192 MPLAYER = $_mplayer
8194 NEED_GETTIMEOFDAY = $_need_gettimeofday
8195 NEED_GLOB = $_need_glob
8196 NEED_MMAP = $_need_mmap
8197 NEED_SETENV = $_need_setenv
8198 NEED_SHMEM = $_need_shmem
8199 NEED_STRSEP = $_need_strsep
8200 NEED_SWAB = $_need_swab
8201 NEED_VSSCANF = $_need_vsscanf
8203 # features
8204 3DFX = $_3dfx
8205 AA = $_aa
8206 ALSA1X = $_alsa1x
8207 ALSA9 = $_alsa9
8208 ALSA5 = $_alsa5
8209 APPLE_IR = $_apple_ir
8210 APPLE_REMOTE = $_apple_remote
8211 ARTS = $_arts
8212 AUDIO_INPUT = $_audio_input
8213 BITMAP_FONT = $_bitmap_font
8214 BL = $_bl
8215 CACA = $_caca
8216 CDDA = $_cdda
8217 CDDB = $_cddb
8218 COREAUDIO = $_coreaudio
8219 COREVIDEO = $_corevideo
8220 DART = $_dart
8221 DFBMGA = $_dfbmga
8222 DGA = $_dga
8223 DIRECT3D = $_direct3d
8224 DIRECTFB = $_directfb
8225 DIRECTX = $_directx
8226 DVBIN = $_dvbin
8227 DVDNAV = $_dvdnav
8228 DVDNAV_INTERNAL = $dvdnav_internal
8229 DVDREAD = $_dvdread
8230 DVDREAD_INTERNAL = $_dvdread_internal
8231 DXR2 = $_dxr2
8232 DXR3 = $_dxr3
8233 ESD = $_esd
8234 FAAC=$_faac
8235 FAAD = $_faad
8236 FAAD_INTERNAL = $_faad_internal
8237 FASTMEMCPY = $_fastmemcpy
8238 FBDEV = $_fbdev
8239 FREETYPE = $_freetype
8240 FTP = $_ftp
8241 GIF = $_gif
8242 GGI = $_ggi
8243 GL = $_gl
8244 GL_WIN32 = $_gl_win32
8245 GUI = $_gui
8246 GUI_GTK = $_gui_gtk
8247 GUI_WIN32 = $_gui_win32
8248 HAVE_POSIX_SELECT = $_posix_select
8249 HAVE_SYS_MMAN_H = $_mman
8250 IVTV = $_ivtv
8251 JACK = $_jack
8252 JOYSTICK = $_joystick
8253 JPEG = $_jpeg
8254 KVA = $_kva
8255 LADSPA = $_ladspa
8256 LIBA52 = $_liba52
8257 LIBA52_INTERNAL = $_liba52_internal
8258 LIBASS = $_ass
8259 LIBBS2B = $_libbs2b
8260 LIBDCA = $_libdca
8261 LIBDV = $_libdv
8262 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
8263 LIBLZO = $_liblzo
8264 LIBMAD = $_mad
8265 LIBMENU = $_menu
8266 LIBMENU_DVBIN = $_menu_dvbin
8267 LIBMPEG2 = $_libmpeg2
8268 LIBNEMESI = $_nemesi
8269 LIBNUT = $_libnut
8270 LIBSMBCLIENT = $_smb
8271 LIBTHEORA = $_theora
8272 LIBVORBIS = $_vorbis
8273 LIRC = $_lirc
8274 LIVE555 = $_live
8275 MACOSX_BUNDLE = $_macosx_bundle
8276 MACOSX_FINDER = $_macosx_finder
8277 MD5SUM = $_md5sum
8278 MGA = $_mga
8279 MNG = $_mng
8280 MP3LAME = $_mp3lame
8281 MP3LIB = $_mp3lib
8282 MUSEPACK = $_musepack
8283 NAS = $_nas
8284 NATIVE_RTSP = $_native_rtsp
8285 NETWORK = $_network
8286 OPENAL = $_openal
8287 OSS = $_ossaudio
8288 PE_EXECUTABLE = $_pe_executable
8289 PNG = $_png
8290 PNM = $_pnm
8291 PRIORITY = $_priority
8292 PULSE = $_pulse
8293 PVR = $_pvr
8294 QTX_CODECS = $_qtx
8295 QTX_CODECS_WIN32 = $_qtx_codecs_win32
8296 QTX_EMULATION = $_qtx_emulation
8297 QUARTZ = $_quartz
8298 RADIO=$_radio
8299 RADIO_CAPTURE=$_radio_capture
8300 REAL_CODECS = $_real
8301 S3FB = $_s3fb
8302 SDL = $_sdl
8303 SPEEX = $_speex
8304 STREAM_CACHE = $_stream_cache
8305 SGIAUDIO = $_sgiaudio
8306 SUNAUDIO = $_sunaudio
8307 SVGA = $_svga
8308 TDFXFB = $_tdfxfb
8309 TDFXVID = $_tdfxvid
8310 TGA = $_tga
8311 TOOLAME=$_toolame
8312 TREMOR_INTERNAL = $_tremor_internal
8313 TV = $_tv
8314 TV_BSDBT848 = $_tv_bsdbt848
8315 TV_DSHOW = $_tv_dshow
8316 TV_TELETEXT = $_tv_teletext
8317 TV_V4L = $_tv_v4l
8318 TV_V4L1 = $_tv_v4l1
8319 TV_V4L2 = $_tv_v4l2
8320 TWOLAME=$_twolame
8321 UNRAR_EXEC = $_unrar_exec
8322 V4L2 = $_v4l2
8323 VCD = $_vcd
8324 VDPAU = $_vdpau
8325 VESA = $_vesa
8326 VIDIX = $_vidix
8327 VIDIX_PCIDB = $_vidix_pcidb_val
8328 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8329 VIDIX_IVTV=$_vidix_drv_ivtv
8330 VIDIX_MACH64=$_vidix_drv_mach64
8331 VIDIX_MGA=$_vidix_drv_mga
8332 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8333 VIDIX_NVIDIA=$_vidix_drv_nvidia
8334 VIDIX_PM2=$_vidix_drv_pm2
8335 VIDIX_PM3=$_vidix_drv_pm3
8336 VIDIX_RADEON=$_vidix_drv_radeon
8337 VIDIX_RAGE128=$_vidix_drv_rage128
8338 VIDIX_S3=$_vidix_drv_s3
8339 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8340 VIDIX_SIS=$_vidix_drv_sis
8341 VIDIX_UNICHROME=$_vidix_drv_unichrome
8342 VSTREAM = $_vstream
8343 WII = $_wii
8344 WIN32DLL = $_win32dll
8345 WIN32WAVEOUT = $_win32waveout
8346 WIN32_EMULATION = $_win32_emulation
8347 WINVIDIX = $winvidix
8348 X11 = $_x11
8349 X264 = $_x264
8350 XANIM_CODECS = $_xanim
8351 XMGA = $_xmga
8352 XMMS_PLUGINS = $_xmms
8353 XV = $_xv
8354 XVID4 = $_xvid
8355 XVIDIX = $xvidix
8356 XVMC = $_xvmc
8357 YUV4MPEG = $_yuv4mpeg
8358 ZR = $_zr
8360 # FFmpeg
8361 LIBAVUTIL = $_libavutil
8362 LIBAVUTIL_A = $_libavutil_a
8363 LIBAVUTIL_SO = $_libavutil_so
8364 LIBAVCODEC = $_libavcodec
8365 LIBAVCODEC_A = $_libavcodec_a
8366 LIBAVCODEC_SO = $_libavcodec_so
8367 LIBAVFORMAT = $_libavformat
8368 LIBAVFORMAT_A = $_libavformat_a
8369 LIBAVFORMAT_SO = $_libavformat_so
8370 LIBPOSTPROC = $_libpostproc
8371 LIBPOSTPROC_A = $_libpostproc_a
8372 LIBPOSTPROC_SO = $_libpostproc_so
8373 LIBSWSCALE = $_libswscale
8374 LIBSWSCALE_A = $_libswscale_a
8375 LIBSWSCALE_SO = $_libswscale_so
8377 BUILD_STATIC=yes
8378 SRC_PATH=..
8379 BUILD_ROOT=..
8380 LIBPREF=lib
8381 LIBSUF=.a
8382 LIBNAME=\$(LIBPREF)\$(NAME)\$(LIBSUF)
8384 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8385 CONFIG_AANDCT=yes
8386 CONFIG_FFT=yes
8387 CONFIG_FFT_MMX=$fft_mmx
8388 CONFIG_GOLOMB=yes
8389 CONFIG_MDCT=yes
8390 CONFIG_RDFT=yes
8392 CONFIG_BZLIB=$bzlib
8393 CONFIG_ENCODERS=yes
8394 CONFIG_GPL=yes
8395 CONFIG_LIBAMR=$_libamr
8396 CONFIG_LIBAMR_NB=$_libamr_nb
8397 CONFIG_LIBAMR_WB=$_libamr_wb
8398 CONFIG_LIBDIRAC=$_libdirac_lavc
8399 CONFIG_LIBFAAC=$_faac_lavc
8400 CONFIG_LIBMP3LAME=$_mp3lame_lavc
8401 CONFIG_LIBSCHROEDINGER=$_libschroedinger_lavc
8402 CONFIG_LIBVORBIS=$_libvorbis
8403 CONFIG_LIBX264=$_x264_lavc
8404 CONFIG_LIBXVID=$_xvid_lavc
8405 CONFIG_MLIB = $_mlib
8406 CONFIG_MUXERS=$_mencoder
8407 CONFIG_POSTPROC = yes
8408 # Prevent building libavcodec/imgresample.c with conflicting symbols
8409 CONFIG_SWSCALE=yes
8410 CONFIG_VDPAU=$_vdpau
8411 CONFIG_XVMC=$_xvmc
8412 CONFIG_ZLIB=$_zlib
8414 HAVE_PTHREADS = $_pthreads
8415 HAVE_W32THREADS = $_w32threads
8416 HAVE_YASM = $_have_yasm
8418 $(echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8419 $(echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8420 $(echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8421 $(echo $_libavdemuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8422 $(echo $_libavmuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8423 $(echo $_libavbsfs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8426 #############################################################################
8428 ff_config_enable () {
8429 _nprefix=$3;
8430 test -z "$_nprefix" && _nprefix='CONFIG'
8431 for part in $1; do
8432 if $(echo $2 | grep -q -E "(^| )$part($| )"); then
8433 echo "#define ${_nprefix}_$part 1"
8434 else
8435 echo "#define ${_nprefix}_$part 0"
8437 done
8440 echo "Creating config.h"
8441 cat > $TMPH << EOF
8442 /*----------------------------------------------------------------------------
8443 ** This file has been automatically generated by configure any changes in it
8444 ** will be lost when you run configure again.
8445 ** Instead of modifying definitions here, use the --enable/--disable options
8446 ** of the configure script! See ./configure --help for details.
8447 *---------------------------------------------------------------------------*/
8449 #ifndef MPLAYER_CONFIG_H
8450 #define MPLAYER_CONFIG_H
8452 /* Undefine this if you do not want to select mono audio (left or right)
8453 with a stereo MPEG layer 2/3 audio stream. The command line option
8454 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8455 right-only), with 0 being the default.
8457 #define CONFIG_FAKE_MONO 1
8459 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8460 #define MAX_OUTBURST 65536
8462 /* set up audio OUTBURST. Do not change this! */
8463 #define OUTBURST 512
8465 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8466 #undef FAST_OSD
8467 #undef FAST_OSD_TABLE
8469 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8470 #define MPEG12_POSTPROC 1
8471 #define ATTRIBUTE_ALIGNED_MAX 16
8475 #define CONFIGURATION "$_configuration"
8477 #define MPLAYER_DATADIR "$_datadir"
8478 #define MPLAYER_CONFDIR "$_confdir"
8479 #define MPLAYER_LIBDIR "$_libdir"
8481 /* definitions needed by included libraries */
8482 #define HAVE_INTTYPES_H 1
8483 /* libmpeg2 + FFmpeg */
8484 $def_fast_inttypes
8485 /* libdvdcss */
8486 #define HAVE_ERRNO_H 1
8487 /* libdvdcss + libdvdread */
8488 #define HAVE_LIMITS_H 1
8489 /* libdvdcss + libfaad2 */
8490 #define HAVE_UNISTD_H 1
8491 /* libfaad2 + libdvdread */
8492 #define STDC_HEADERS 1
8493 #define HAVE_MEMCPY 1
8494 /* libfaad2 */
8495 #define HAVE_STRING_H 1
8496 #define HAVE_STRINGS_H 1
8497 #define HAVE_SYS_STAT_H 1
8498 #define HAVE_SYS_TYPES_H 1
8499 /* libdvdnav */
8500 #define READ_CACHE_TRACE 0
8501 /* libdvdread */
8502 #define HAVE_DLFCN_H 1
8503 $def_dvdcss
8506 /* system headers */
8507 $def_alloca_h
8508 $def_alsa_asoundlib_h
8509 $def_altivec_h
8510 $def_malloc_h
8511 $def_mman_h
8512 $def_mman_has_map_failed
8513 $def_soundcard_h
8514 $def_sys_asoundlib_h
8515 $def_sys_soundcard_h
8516 $def_sys_sysinfo_h
8517 $def_termios_h
8518 $def_termios_sys_h
8519 $def_winsock2_h
8522 /* system functions */
8523 $def_gethostbyname2
8524 $def_gettimeofday
8525 $def_glob
8526 $def_langinfo
8527 $def_llrint
8528 $def_lrint
8529 $def_lrintf
8530 $def_map_memalign
8531 $def_memalign
8532 $def_nanosleep
8533 $def_posix_select
8534 $def_round
8535 $def_roundf
8536 $def_select
8537 $def_setenv
8538 $def_shm
8539 $def_strsep
8540 $def_swab
8541 $def_sysi86
8542 $def_sysi86_iv
8543 $def_termcap
8544 $def_termios
8545 $def_truncf
8546 $def_vsscanf
8549 /* system-specific features */
8550 $def_asmalign_pot
8551 $def_builtin_expect
8552 $def_dl
8553 $def_extern_prefix
8554 $def_iconv
8555 $def_kstat
8556 $def_macosx_bundle
8557 $def_macosx_finder
8558 $def_maemo
8559 $def_named_asm_args
8560 $def_priority
8561 $def_quicktime
8562 $def_restrict_keyword
8563 $def_rtc
8564 $def_unrar_exec
8567 /* configurable options */
8568 $def_charset
8569 $def_crash_debug
8570 $def_debug
8571 $def_dynamic_plugins
8572 $def_fastmemcpy
8573 $def_menu
8574 $def_runtime_cpudetection
8575 $def_sighandler
8576 $def_sortsub
8577 $def_stream_cache
8578 $def_pthread_cache
8581 /* CPU stuff */
8582 #define __CPU__ $iproc
8583 $def_words_endian
8584 $(ff_config_enable "$_arch_all" "$_arch" "ARCH")
8585 $(ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE")
8588 /* DVD/VCD/CD */
8589 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8590 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8591 $def_bsdi_dvd
8592 $def_cddb
8593 $def_cdio
8594 $def_cdparanoia
8595 $def_cdrom
8596 $def_dvd
8597 $def_dvd_bsd
8598 $def_dvd_darwin
8599 $def_dvd_linux
8600 $def_dvd_openbsd
8601 $def_dvdio
8602 $def_dvdnav
8603 $def_dvdread
8604 $def_hpux_scsi_h
8605 $def_libcdio
8606 $def_sol_scsi_h
8607 $def_vcd
8610 /* codec libraries */
8611 $def_faac
8612 $def_faad
8613 $def_faad_internal
8614 $def_liba52
8615 $def_liba52_internal
8616 $def_libdca
8617 $def_libdv
8618 $def_liblzo
8619 $def_libmpeg2
8620 $def_mad
8621 $def_mp3lame
8622 $def_mp3lame_preset
8623 $def_mp3lame_preset_medium
8624 $def_mp3lib
8625 $def_musepack
8626 $def_speex
8627 $def_theora
8628 $def_toolame
8629 $def_tremor
8630 $def_twolame
8631 $def_vorbis
8632 $def_x264
8633 $def_xvid
8634 $def_zlib
8636 $def_libnut
8639 /* binary codecs */
8640 $def_qtx
8641 $def_qtx_win32
8642 $def_real
8643 $def_real_path
8644 $def_win32_loader
8645 $def_win32dll
8646 #define WIN32_PATH "$_win32codecsdir"
8647 $def_xanim
8648 $def_xanim_path
8649 $def_xmms
8650 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8653 /* GUI */
8654 $def_gtk2
8655 $def_gui
8656 $def_xshape
8659 /* Audio output drivers */
8660 $def_alsa
8661 $def_alsa1x
8662 $def_alsa5
8663 $def_alsa9
8664 $def_arts
8665 $def_coreaudio
8666 $def_dart
8667 $def_esd
8668 $def_esd_latency
8669 $def_jack
8670 $def_nas
8671 $def_openal
8672 $def_openal_h
8673 $def_ossaudio
8674 $def_ossaudio_devdsp
8675 $def_ossaudio_devmixer
8676 $def_pulse
8677 $def_sgiaudio
8678 $def_sunaudio
8679 $def_win32waveout
8681 $def_ladspa
8682 $def_libbs2b
8685 /* input */
8686 $def_apple_ir
8687 $def_apple_remote
8688 $def_ioctl_bt848_h_name
8689 $def_ioctl_meteor_h_name
8690 $def_joystick
8691 $def_lirc
8692 $def_lircc
8693 $def_pvr
8694 $def_radio
8695 $def_radio_bsdbt848
8696 $def_radio_capture
8697 $def_radio_v4l
8698 $def_radio_v4l2
8699 $def_tv
8700 $def_tv_bsdbt848
8701 $def_tv_dshow
8702 $def_tv_teletext
8703 $def_tv_v4l
8704 $def_tv_v4l1
8705 $def_tv_v4l2
8708 /* font stuff */
8709 $def_ass
8710 $def_bitmap_font
8711 $def_enca
8712 $def_fontconfig
8713 $def_freetype
8714 $def_fribidi
8717 /* networking */
8718 $def_closesocket
8719 $def_ftp
8720 $def_inet6
8721 $def_inet_aton
8722 $def_inet_pton
8723 $def_live
8724 $def_nemesi
8725 $def_network
8726 $def_smb
8727 $def_socklen_t
8728 $def_vstream
8731 /* libvo options */
8732 $def_3dfx
8733 $def_aa
8734 $def_bl
8735 $def_caca
8736 $def_corevideo
8737 $def_dfbmga
8738 $def_dga
8739 $def_dga1
8740 $def_dga2
8741 $def_direct3d
8742 $def_directfb
8743 $def_directfb_version
8744 $def_directx
8745 $def_dvb
8746 $def_dvb_head
8747 $def_dvbin
8748 $def_dxr2
8749 $def_dxr3
8750 $def_fbdev
8751 $def_ggi
8752 $def_ggiwmh
8753 $def_gif
8754 $def_gif_4
8755 $def_gif_tvt_hack
8756 $def_gl
8757 $def_gl_win32
8758 $def_ivtv
8759 $def_jpeg
8760 $def_kva
8761 $def_md5sum
8762 $def_mga
8763 $def_mng
8764 $def_png
8765 $def_pnm
8766 $def_quartz
8767 $def_s3fb
8768 $def_sdl
8769 $def_sdlbuggy
8770 $def_svga
8771 $def_tdfxfb
8772 $def_tdfxvid
8773 $def_tga
8774 $def_v4l2
8775 $def_vdpau
8776 $def_vesa
8777 $def_vidix
8778 $def_vidix_drv_cyberblade
8779 $def_vidix_drv_ivtv
8780 $def_vidix_drv_mach64
8781 $def_vidix_drv_mga
8782 $def_vidix_drv_mga_crtc2
8783 $def_vidix_drv_nvidia
8784 $def_vidix_drv_pm3
8785 $def_vidix_drv_radeon
8786 $def_vidix_drv_rage128
8787 $def_vidix_drv_s3
8788 $def_vidix_drv_sh_veu
8789 $def_vidix_drv_sis
8790 $def_vidix_drv_unichrome
8791 $def_vidix_pfx
8792 $def_vm
8793 $def_wii
8794 $def_x11
8795 $def_xdpms
8796 $def_xf86keysym
8797 $def_xinerama
8798 $def_xmga
8799 $def_xss
8800 $def_xv
8801 $def_xvmc
8802 $def_xvr100
8803 $def_yuv4mpeg
8804 $def_zr
8807 /* FFmpeg */
8808 $def_libavcodec
8809 $def_libavcodec_a
8810 $def_libavcodec_so
8811 $def_libavformat
8812 $def_libavformat_a
8813 $def_libavformat_so
8814 $def_libavutil
8815 $def_libavutil_a
8816 $def_libavutil_so
8817 $def_libpostproc
8818 $def_libpostproc_a
8819 $def_libpostproc_so
8820 $def_libswscale
8821 $def_libswscale_a
8822 $def_libswscale_so
8824 #define CONFIG_DECODERS 1
8825 #define CONFIG_ENCODERS 1
8826 #define CONFIG_DEMUXERS 1
8827 $def_muxers
8829 $def_arpa_inet_h
8830 $def_bswap
8831 $def_bzlib
8832 $def_dcbzl
8833 $def_dos_paths
8834 $def_fast_64bit
8835 $def_fast_unaligned
8836 $def_libavcodec_mpegaudio_hp
8837 $def_memalign_hack
8838 $def_mlib
8839 $def_mkstemp
8840 $def_posix_memalign
8841 $def_pthreads
8842 $def_ten_operands
8843 $def_threads
8844 $def_xform_asm
8845 $def_yasm
8847 #define CONFIG_FASTDIV 0
8848 #define CONFIG_FFSERVER 0
8849 #define CONFIG_GPL 1
8850 #define CONFIG_GRAY 0
8851 #define CONFIG_HARDCODED_TABLES 0
8852 #define CONFIG_LIBAMR_NB_FIXED 0
8853 #define CONFIG_LIBVORBIS 0
8854 #define CONFIG_POWERPC_PERF 0
8855 #define CONFIG_SMALL 0
8856 #define CONFIG_SWSCALE 1
8857 #define CONFIG_SWSCALE_ALPHA 1
8859 #define HAVE_GETHRTIME 0
8860 #define HAVE_INLINE_ASM 0
8861 #define HAVE_LDBRX 0
8862 #define HAVE_POLL_H 1
8863 #define HAVE_PPC4XX 0
8864 #define HAVE_VIRTUALALLOC 0
8866 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8867 #define CONFIG_AANDCT 1
8868 #define CONFIG_FFT 1
8869 #define CONFIG_GOLOMB 1
8870 #define CONFIG_MDCT 1
8871 #define CONFIG_RDFT 1
8873 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8874 #define HAVE_EBX_AVAILABLE 1
8875 #ifndef MP_DEBUG
8876 #define HAVE_EBP_AVAILABLE 1
8877 #else
8878 #define HAVE_EBP_AVAILABLE 0
8879 #endif
8881 /* External libraries used through libavcodec. */
8882 $def_faac_lavc
8883 $def_libamr
8884 $def_libamr_nb
8885 $def_libamr_wb
8886 $def_libdirac_lavc
8887 $def_libschroedinger_lavc
8888 $def_mp3lame_lavc
8889 $def_x264_lavc
8890 $def_xvid_lavc
8892 $(ff_config_enable "$_libavdecoders_all" "$_libavdecoders")
8893 $(ff_config_enable "$_libavencoders_all" "$_libavencoders")
8894 $(ff_config_enable "$_libavparsers_all" "$_libavparsers")
8895 $(ff_config_enable "$_libavdemuxers_all" "$_libavdemuxers")
8896 $(ff_config_enable "$_libavmuxers_all" "$_libavmuxers")
8897 $(ff_config_enable "$_libavprotocols_all" "$_libavprotocols")
8898 $(ff_config_enable "$_libavbsfs_all" "$_libavbsfs")
8900 #define CONFIG_H263_VAAPI_HWACCEL 0
8901 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8902 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8903 #define CONFIG_H264_VAAPI_HWACCEL 0
8904 #define CONFIG_VC1_VAAPI_HWACCEL 0
8905 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8907 #endif /* MPLAYER_CONFIG_H */
8910 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8911 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8913 cp -p config.h ffmpeg/config.h
8914 sed -e 's/OPTFLAGS/MPLAYER_OPTFLAGS/' -e 's/FFMPEG_OFLAGS/OPTFLAGS/' config.mak >ffmpeg/config.mak
8916 #############################################################################
8918 cat << EOF
8920 Config files successfully generated by ./configure $_configuration !
8922 Install prefix: $_prefix
8923 Data directory: $_datadir
8924 Config direct.: $_confdir
8926 Byte order: $_byte_order
8927 Optimizing for: $_optimizing
8929 Languages:
8930 Messages/GUI: $msg_lang
8931 Manual pages: $man_langs
8933 Enabled optional drivers:
8934 Input: $_inputmodules
8935 Codecs: $_codecmodules
8936 Audio output: $_aomodules
8937 Video output: $_vomodules
8939 Disabled optional drivers:
8940 Input: $_noinputmodules
8941 Codecs: $_nocodecmodules
8942 Audio output: $_noaomodules
8943 Video output: $_novomodules
8945 'config.h' and 'config.mak' contain your configuration options.
8946 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8947 compile *** DO NOT REPORT BUGS if you tweak these files ***
8949 'make' will now compile MPlayer and 'make install' will install it.
8950 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8955 if test "$_mtrr" = yes ; then
8956 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8957 echo
8960 if ! x86_32; then
8961 cat <<EOF
8962 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8963 operating system ($system_name). You may encounter a few files that cannot
8964 be played due to missing open source video/audio codec support.
8970 cat <<EOF
8971 Check $TMPLOG if you wonder why an autodetection failed (make sure
8972 development headers/packages are installed).
8974 NOTE: The --enable-* parameters unconditionally force options on, completely
8975 skipping autodetection. This behavior is unlike what you may be used to from
8976 autoconf-based configure scripts that can decide to override you. This greater
8977 level of control comes at a price. You may have to provide the correct compiler
8978 and linker flags yourself.
8979 If you used one of these options (except --enable-gui and similar ones that
8980 turn on internal features) and experience a compilation or linking failure,
8981 make sure you have passed the necessary compiler/linker flags to configure.
8983 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8987 if test "$_warn_CFLAGS" = yes; then
8988 cat <<EOF
8990 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8991 but:
8993 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8995 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8996 To do so, execute 'CFLAGS= ./configure <options>'
9001 # Last move:
9002 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"