Use double instead of float for pts.
[mplayer/glamo.git] / configure
blob3dab6bab0c2ef83847e891fb20b769fa2e2d62a9
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-pvr disable Video4Linux2 MPEG PVR [autodetect]
252 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
253 --disable-network disable networking [enable]
254 --enable-winsock2_h enable winsock2_h [autodetect]
255 --enable-smb enable Samba (SMB) input [autodetect]
256 --enable-live enable LIVE555 Streaming Media [autodetect]
257 --enable-nemesi enable Nemesi Streaming Media [autodetect]
258 --disable-vcd disable VCD support [autodetect]
259 --disable-dvdnav disable libdvdnav [autodetect]
260 --disable-dvdread disable libdvdread [autodetect]
261 --disable-dvdread-internal disable internal libdvdread [autodetect]
262 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
263 --disable-cdparanoia disable cdparanoia [autodetect]
264 --disable-cddb disable cddb [autodetect]
265 --disable-bitmap-font disable bitmap font support [enable]
266 --disable-freetype disable FreeType 2 font rendering [autodetect]
267 --disable-fontconfig disable fontconfig font lookup [autodetect]
268 --disable-unrarexec disable using of UnRAR executable [enabled]
269 --enable-menu enable OSD menu (not DVD menu) [disabled]
270 --disable-sortsub disable subtitle sorting [enabled]
271 --enable-fribidi enable the FriBiDi libs [autodetect]
272 --disable-enca disable ENCA charset oracle library [autodetect]
273 --disable-maemo disable maemo specific features [autodetect]
274 --enable-macosx-finder enable Mac OS X Finder invocation parameter
275 parsing [disabled]
276 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
277 --disable-inet6 disable IPv6 support [autodetect]
278 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
279 --disable-ftp disable FTP support [enabled]
280 --disable-vstream disable TiVo vstream client support [autodetect]
281 --disable-pthreads disable Posix threads support [autodetect]
282 --disable-w32threads disable Win32 threads support [autodetect]
283 --disable-ass-internal disable internal SSA/ASS subtitle support [autodetect]
284 --disable-ass disable 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 --enable-liba52-internal enable builtin liba52 [disabled]
342 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
343 --disable-musepack disable musepack support [autodetect]
344 --disable-libopencore_amrnb disable libopencore_amr narrowband [autodetect]
345 --disable-libopencore_amrwb disable libopencore_amr wideband [autodetect]
346 --disable-libopenjpeg disable OpenJPEG (JPEG2000) input/output support [autodetect]
347 --disable-decoder=DECODER disable specified FFmpeg decoder
348 --enable-decoder=DECODER enable specified FFmpeg decoder
349 --disable-encoder=ENCODER disable specified FFmpeg encoder
350 --enable-encoder=ENCODER enable specified FFmpeg encoder
351 --disable-parser=PARSER disable specified FFmpeg parser
352 --enable-parser=PARSER enable specified FFmpeg parser
353 --disable-protocol=PROTO disable specified FFmpeg protocol
354 --enable-protocol=PROTO enable specified FFmpeg protocol
355 --disable-demuxer=DEMUXER disable specified FFmpeg demuxer
356 --enable-demuxer=DEMUXER enable specified FFmpeg demuxer
357 --disable-muxer=MUXER disable specified FFmpeg muxer
358 --enable-muxer=MUXER enable specified FFmpeg muxer
360 Video output:
361 --disable-vidix disable VIDIX [for x86 *nix]
362 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
363 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
364 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
365 --disable-vidix-pcidb disable VIDIX PCI device name database
366 --enable-dhahelper enable VIDIX dhahelper support
367 --enable-svgalib_helper enable VIDIX svgalib_helper support
368 --enable-gl enable OpenGL video output [autodetect]
369 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
370 --enable-dga2 enable DGA 2 support [autodetect]
371 --enable-dga1 enable DGA 1 support [autodetect]
372 --enable-vesa enable VESA video output [autodetect]
373 --enable-svga enable SVGAlib video output [autodetect]
374 --enable-sdl enable SDL video output [autodetect]
375 --enable-kva enable KVA video output [autodetect]
376 --enable-aa enable AAlib video output [autodetect]
377 --enable-caca enable CACA video output [autodetect]
378 --enable-ggi enable GGI video output [autodetect]
379 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
380 --enable-direct3d enable Direct3D video output [autodetect]
381 --enable-directx enable DirectX video output [autodetect]
382 --enable-dxr2 enable DXR2 video output [autodetect]
383 --enable-dxr3 enable DXR3/H+ video output [autodetect]
384 --enable-ivtv enable IVTV TV-Out video output [autodetect]
385 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
386 --enable-dvb enable DVB video output [autodetect]
387 --enable-dvbhead enable DVB video output (HEAD version) [autodetect]
388 --enable-mga enable mga_vid video output [autodetect]
389 --enable-xmga enable mga_vid X11 video output [autodetect]
390 --enable-xv enable Xv video output [autodetect]
391 --enable-xvmc enable XvMC acceleration [disable]
392 --enable-vdpau enable VDPAU acceleration [autodetect]
393 --enable-vm enable XF86VidMode support [autodetect]
394 --enable-xinerama enable Xinerama support [autodetect]
395 --enable-x11 enable X11 video output [autodetect]
396 --enable-xshape enable XShape support [autodetect]
397 --disable-xss disable screensaver support via xss [autodetect]
398 --enable-fbdev enable FBDev video output [autodetect]
399 --enable-mlib enable mediaLib video output (Solaris) [disable]
400 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
401 --enable-tdfxfb enable tdfxfb video output [disable]
402 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
403 --enable-wii enable Nintendo Wii/GameCube video output [disable]
404 --enable-directfb enable DirectFB video output [autodetect]
405 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
406 --enable-bl enable Blinkenlights video output [disable]
407 --enable-tdfxvid enable tdfx_vid video output [disable]
408 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
409 --disable-tga disable Targa video output [enable]
410 --disable-pnm disable PNM video output [enable]
411 --disable-md5sum disable md5sum video output [enable]
412 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
413 --disable-corevideo disable CoreVideo video output [autodetect]
414 --disable-quartz disable Quartz video output [autodetect]
416 Audio output:
417 --disable-alsa disable ALSA audio output [autodetect]
418 --disable-ossaudio disable OSS audio output [autodetect]
419 --disable-arts disable aRts audio output [autodetect]
420 --disable-esd disable esd audio output [autodetect]
421 --disable-pulse disable Pulseaudio audio output [autodetect]
422 --disable-jack disable JACK audio output [autodetect]
423 --disable-openal disable OpenAL audio output [autodetect]
424 --disable-nas disable NAS audio output [autodetect]
425 --disable-sgiaudio disable SGI audio output [autodetect]
426 --disable-sunaudio disable Sun audio output [autodetect]
427 --disable-dart disable DART audio output [autodetect]
428 --disable-win32waveout disable Windows waveout audio output [autodetect]
429 --disable-coreaudio disable CoreAudio audio output [autodetect]
430 --disable-select disable using select() on the audio device [enable]
432 Language options:
433 --charset=charset convert the console messages to this character set
434 --language-doc=lang language to use for the documentation [en]
435 --language-man=lang language to use for the man pages [en]
436 --language-msg=lang language to use for the messages and the GUI [en]
437 --language=lang default language to use [en]
438 Specific options override --language. You can pass a list of languages separated
439 by whitespace or commas instead of a single language. Nonexisting translations
440 will be dropped from each list. All documentation and man page translations
441 available in the list will be installed, for the messages the first available
442 translation will be used. The value "all" will activate all translations. The
443 LINGUAS environment variable is honored. In all cases the fallback is English.
444 Available values are: all $msg_lang_all
446 Miscellaneous options:
447 --enable-runtime-cpudetection enable runtime CPU detection [disable]
448 --enable-cross-compile enable cross-compilation [autodetect]
449 --cc=COMPILER C compiler to build MPlayer [gcc]
450 --host-cc=COMPILER C compiler for tools needed while building [gcc]
451 --as=ASSEMBLER assembler to build MPlayer [as]
452 --nm=NM nm tool to build MPlayer [nm]
453 --yasm=YASM Yasm assembler to build MPlayer [yasm]
454 --ar=AR librarian to build MPlayer [ar]
455 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
456 --windres=WINDRES windres to build MPlayer [windres]
457 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
458 --enable-static build a statically linked binary
459 --with-install=PATH path to a custom install program
461 Advanced options:
462 --enable-mmx enable MMX [autodetect]
463 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
464 --enable-3dnow enable 3DNow! [autodetect]
465 --enable-3dnowext enable extended 3DNow! [autodetect]
466 --enable-sse enable SSE [autodetect]
467 --enable-sse2 enable SSE2 [autodetect]
468 --enable-ssse3 enable SSSE3 [autodetect]
469 --enable-shm enable shm [autodetect]
470 --enable-altivec enable AltiVec (PowerPC) [autodetect]
471 --enable-armv5te enable DSP extensions (ARM) [autodetect]
472 --enable-armv6 enable ARMv6 (ARM) [autodetect]
473 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
474 --enable-armvfp enable ARM VFP (ARM) [autodetect]
475 --enable-neon enable NEON (ARM) [autodetect]
476 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
477 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
478 --enable-hardcoded-tables put tables in binary instead of calculating them at startup [disable]
479 --enable-big-endian force byte order to big-endian [autodetect]
480 --enable-debug[=1-3] compile-in debugging information [disable]
481 --enable-profile compile-in profiling information [disable]
482 --disable-sighandler disable sighandler for crashes [enable]
483 --enable-crash-debug enable automatic gdb attach on crash [disable]
484 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
486 Use these options if autodetection fails:
487 --extra-cflags=FLAGS extra CFLAGS
488 --extra-ldflags=FLAGS extra LDFLAGS
489 --extra-libs=FLAGS extra linker flags
490 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
491 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
492 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
494 --with-freetype-config=PATH path to freetype-config
495 --with-fribidi-config=PATH path to fribidi-config
496 --with-glib-config=PATH path to glib*-config
497 --with-gtk-config=PATH path to gtk*-config
498 --with-sdl-config=PATH path to sdl*-config
499 --with-dvdnav-config=PATH path to dvdnav-config
500 --with-dvdread-config=PATH path to dvdread-config
502 This configure script is NOT autoconf-based, even though its output is similar.
503 It will try to autodetect all configuration options. If you --enable an option
504 it will be forcefully turned on, skipping autodetection. This can break
505 compilation, so you need to know what you are doing.
507 exit 0
508 } #show_help()
510 # GOTCHA: the variables below defines the default behavior for autodetection
511 # and have - unless stated otherwise - at least 2 states : yes no
512 # If autodetection is available then the third state is: auto
513 _mmx=auto
514 _3dnow=auto
515 _3dnowext=auto
516 _mmxext=auto
517 _sse=auto
518 _sse2=auto
519 _ssse3=auto
520 _cmov=auto
521 _fast_cmov=auto
522 _armv5te=auto
523 _armv6=auto
524 _armv6t2=auto
525 _armvfp=auto
526 neon=auto
527 _iwmmxt=auto
528 _mtrr=auto
529 _altivec=auto
530 _install=install
531 _ranlib=ranlib
532 _windres=windres
533 _cc=cc
534 _ar=ar
535 test "$CC" && _cc="$CC"
536 _as=auto
537 _nm=auto
538 _yasm=yasm
539 _runtime_cpudetection=no
540 _cross_compile=auto
541 _prefix="/usr/local"
542 _libavutil_a=auto
543 _libavutil_so=auto
544 _libavcodec_a=auto
545 _libopencore_amrnb=auto
546 _libopencore_amrwb=auto
547 libopenjpeg=auto
548 _libavdecoders_all=$(sed -n 's/^[^#]*DEC.*(.*, *\(.*\)).*/\1_decoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
549 _libavdecoders=$(echo $_libavdecoders_all | sed -e 's/ LIB[A-Z0-9_]*_DECODER//g' -e s/MPEG4AAC_DECODER//)
550 _libavencoders_all=$(sed -n 's/^[^#]*ENC.*(.*, *\(.*\)).*/\1_encoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
551 _libavencoders=$(echo $_libavencoders_all | sed -e 's/ LIB[A-Z0-9_]*_ENCODER//g' -e s/AAC_ENCODER//)
552 _libavparsers_all=$(sed -n 's/^[^#]*PARSER.*(.*, *\(.*\)).*/\1_parser/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
553 _libavparsers=$_libavparsers_all
554 _libavbsfs_all=$(sed -n 's/^[^#]*BSF.*(.*, *\(.*\)).*/\1_bsf/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
555 _libavbsfs=$_libavbsfs_all
556 _libavdemuxers_all=$(sed -n 's/^[^#]*DEMUX.*(.*, *\(.*\)).*/\1_demuxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
557 _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//)
558 _libavmuxers_all=$(sed -n 's/^[^#]*_MUX.*(.*, *\(.*\)).*/\1_muxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
559 _libavmuxers=$(echo $_libavmuxers_all | sed -e 's/ LIB[A-Z0-9_]*_MUXER//g' -e s/RTP_MUXER//)
560 _libavprotocols_all=$(sed -n 's/^[^#]*PROTOCOL.*(.*, *\(.*\)).*/\1_protocol/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
561 _libavprotocols=$_libavprotocols_all
562 _libavcodec_so=auto
563 _libavformat_a=auto
564 _libavformat_so=auto
565 _libpostproc_a=auto
566 _libpostproc_so=auto
567 _libswscale_a=auto
568 _libswscale_so=auto
569 _libavcodec_mpegaudio_hp=yes
570 _mencoder=yes
571 _mplayer=yes
572 _x11=auto
573 _xshape=auto
574 _xss=auto
575 _dga1=auto
576 _dga2=auto
577 _xv=auto
578 _xvmc=no #auto when complete
579 _vdpau=auto
580 _sdl=auto
581 _kva=auto
582 _direct3d=auto
583 _directx=auto
584 _win32waveout=auto
585 _nas=auto
586 _png=auto
587 _mng=auto
588 _jpeg=auto
589 _pnm=yes
590 _md5sum=yes
591 _yuv4mpeg=yes
592 _gif=auto
593 _gl=auto
594 matrixview=yes
595 _ggi=auto
596 _ggiwmh=auto
597 _aa=auto
598 _caca=auto
599 _svga=auto
600 _vesa=auto
601 _fbdev=auto
602 _dvb=auto
603 _dvbhead=auto
604 _dxr2=auto
605 _dxr3=auto
606 _ivtv=auto
607 _v4l2=auto
608 _iconv=auto
609 _langinfo=auto
610 _rtc=auto
611 _ossaudio=auto
612 _arts=auto
613 _esd=auto
614 _pulse=auto
615 _jack=auto
616 _dart=auto
617 _openal=auto
618 _libcdio=auto
619 _liblzo=auto
620 _mad=auto
621 _mp3lame=auto
622 _mp3lame_lavc=auto
623 _toolame=auto
624 _twolame=auto
625 _tremor=auto
626 _tremor_internal=yes
627 _tremor_low=no
628 _libvorbis=auto
629 _speex=auto
630 _theora=auto
631 _mp3lib=auto
632 _liba52=auto
633 _liba52_internal=no
634 _libdca=auto
635 _libmpeg2=auto
636 _faad=auto
637 _faad_internal=auto
638 _faad_fixed=no
639 _faac=auto
640 _faac_lavc=auto
641 _ladspa=auto
642 _libbs2b=auto
643 _xmms=no
644 _vcd=auto
645 _dvdnav=auto
646 _dvdnavconfig=dvdnav-config
647 _dvdreadconfig=dvdread-config
648 _dvdread=auto
649 _dvdread_internal=auto
650 _libdvdcss_internal=auto
651 _xanim=auto
652 _real=auto
653 _live=auto
654 _nemesi=auto
655 _native_rtsp=yes
656 _xinerama=auto
657 _mga=auto
658 _xmga=auto
659 _vm=auto
660 _xf86keysym=auto
661 _mlib=no #broken, thus disabled
662 _sgiaudio=auto
663 _sunaudio=auto
664 _alsa=auto
665 _fastmemcpy=yes
666 hardcoded_tables=no
667 _unrar_exec=auto
668 _win32dll=auto
669 _select=yes
670 _radio=no
671 _radio_capture=no
672 _radio_v4l=auto
673 _radio_v4l2=auto
674 _radio_bsdbt848=auto
675 _tv=yes
676 _tv_v4l1=auto
677 _tv_v4l2=auto
678 _tv_bsdbt848=auto
679 _tv_dshow=auto
680 _pvr=auto
681 _network=yes
682 _winsock2_h=auto
683 _smb=auto
684 _vidix=auto
685 _vidix_pcidb=yes
686 _dhahelper=no
687 _svgalib_helper=no
688 _joystick=no
689 _xvid=auto
690 _xvid_lavc=auto
691 _x264=auto
692 _x264_lavc=auto
693 _libdirac_lavc=auto
694 _libschroedinger_lavc=auto
695 _libnut=auto
696 _lirc=auto
697 _lircc=auto
698 _apple_remote=auto
699 _apple_ir=auto
700 _gui=no
701 _gtk1=no
702 _termcap=auto
703 _termios=auto
704 _3dfx=no
705 _s3fb=no
706 _wii=no
707 _tdfxfb=no
708 _tdfxvid=no
709 _xvr100=auto
710 _tga=yes
711 _directfb=auto
712 _zr=auto
713 _bl=no
714 _largefiles=yes
715 #language=en
716 _shm=auto
717 _linux_devfs=no
718 _charset="UTF-8"
719 _dynamic_plugins=no
720 _crash_debug=no
721 _sighandler=yes
722 _libdv=auto
723 _cdparanoia=auto
724 _cddb=auto
725 _big_endian=auto
726 _bitmap_font=yes
727 _freetype=auto
728 _fontconfig=auto
729 _menu=no
730 _qtx=auto
731 _maemo=auto
732 _coreaudio=auto
733 _corevideo=auto
734 _quartz=auto
735 quicktime=auto
736 _macosx_finder=no
737 _macosx_bundle=auto
738 _sortsub=yes
739 _freetypeconfig='freetype-config'
740 _fribidi=auto
741 _fribidiconfig='fribidi-config'
742 _enca=auto
743 _inet6=auto
744 _gethostbyname2=auto
745 _ftp=yes
746 _musepack=auto
747 _vstream=auto
748 _pthreads=auto
749 _w32threads=auto
750 _ass=auto
751 ass_internal=yes
752 _rpath=no
753 _asmalign_pot=auto
754 _stream_cache=yes
755 _priority=no
756 def_dos_paths="#define HAVE_DOS_PATHS 0"
757 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
758 def_priority="#undef CONFIG_PRIORITY"
759 def_pthread_cache="#undef PTHREAD_CACHE"
760 _need_shmem=yes
761 for ac_option do
762 case "$ac_option" in
763 --help|-help|-h)
764 show_help
766 --prefix=*)
767 _prefix=$(echo $ac_option | cut -d '=' -f 2)
769 --bindir=*)
770 _bindir=$(echo $ac_option | cut -d '=' -f 2)
772 --datadir=*)
773 _datadir=$(echo $ac_option | cut -d '=' -f 2)
775 --mandir=*)
776 _mandir=$(echo $ac_option | cut -d '=' -f 2)
778 --confdir=*)
779 _confdir=$(echo $ac_option | cut -d '=' -f 2)
781 --libdir=*)
782 _libdir=$(echo $ac_option | cut -d '=' -f 2)
784 --codecsdir=*)
785 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
787 --win32codecsdir=*)
788 _win32codecsdir=$(echo $ac_option | cut -d '=' -f 2)
790 --xanimcodecsdir=*)
791 _xanimcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
793 --realcodecsdir=*)
794 _realcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
797 --with-install=*)
798 _install=$(echo $ac_option | cut -d '=' -f 2 )
800 --with-xvmclib=*)
801 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
804 --with-sdl-config=*)
805 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
807 --with-freetype-config=*)
808 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
810 --with-fribidi-config=*)
811 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
813 --with-gtk-config=*)
814 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
816 --with-glib-config=*)
817 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
819 --with-dvdnav-config=*)
820 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
822 --with-dvdread-config=*)
823 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
826 --extra-cflags=*)
827 extra_cflags=$(echo $ac_option | cut -d '=' -f 2-)
829 --extra-ldflags=*)
830 extra_ldflags=$(echo $ac_option | cut -d '=' -f 2-)
832 --extra-libs=*)
833 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
835 --extra-libs-mplayer=*)
836 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
838 --extra-libs-mencoder=*)
839 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
842 --target=*)
843 _target=$(echo $ac_option | cut -d '=' -f 2)
845 --cc=*)
846 _cc=$(echo $ac_option | cut -d '=' -f 2)
848 --host-cc=*)
849 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
851 --as=*)
852 _as=$(echo $ac_option | cut -d '=' -f 2)
854 --nm=*)
855 _nm=$(echo $ac_option | cut -d '=' -f 2)
857 --yasm=*)
858 _yasm=$(echo $ac_option | cut -d '=' -f 2)
860 --ar=*)
861 _ar=$(echo $ac_option | cut -d '=' -f 2)
863 --ranlib=*)
864 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
866 --windres=*)
867 _windres=$(echo $ac_option | cut -d '=' -f 2)
869 --charset=*)
870 _charset=$(echo $ac_option | cut -d '=' -f 2)
872 --language-doc=*)
873 language_doc=$(echo $ac_option | cut -d '=' -f 2)
875 --language-man=*)
876 language_man=$(echo $ac_option | cut -d '=' -f 2)
878 --language-msg=*)
879 language_msg=$(echo $ac_option | cut -d '=' -f 2)
881 --language=*)
882 language=$(echo $ac_option | cut -d '=' -f 2)
885 --enable-static)
886 _ld_static='-static'
888 --disable-static)
889 _ld_static=''
891 --enable-profile)
892 _profile='-p'
894 --disable-profile)
895 _profile=
897 --enable-debug)
898 _debug='-g'
900 --enable-debug=*)
901 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
903 --disable-debug)
904 _debug=
906 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
907 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
908 --enable-cross-compile) _cross_compile=yes ;;
909 --disable-cross-compile) _cross_compile=no ;;
910 --enable-mencoder) _mencoder=yes ;;
911 --disable-mencoder) _mencoder=no ;;
912 --enable-mplayer) _mplayer=yes ;;
913 --disable-mplayer) _mplayer=no ;;
914 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
915 --disable-dynamic-plugins) _dynamic_plugins=no ;;
916 --enable-x11) _x11=yes ;;
917 --disable-x11) _x11=no ;;
918 --enable-xshape) _xshape=yes ;;
919 --disable-xshape) _xshape=no ;;
920 --enable-xss) _xss=yes ;;
921 --disable-xss) _xss=no ;;
922 --enable-xv) _xv=yes ;;
923 --disable-xv) _xv=no ;;
924 --enable-xvmc) _xvmc=yes ;;
925 --disable-xvmc) _xvmc=no ;;
926 --enable-vdpau) _vdpau=yes ;;
927 --disable-vdpau) _vdpau=no ;;
928 --enable-sdl) _sdl=yes ;;
929 --disable-sdl) _sdl=no ;;
930 --enable-kva) _kva=yes ;;
931 --disable-kva) _kva=no ;;
932 --enable-direct3d) _direct3d=yes ;;
933 --disable-direct3d) _direct3d=no ;;
934 --enable-directx) _directx=yes ;;
935 --disable-directx) _directx=no ;;
936 --enable-win32waveout) _win32waveout=yes ;;
937 --disable-win32waveout) _win32waveout=no ;;
938 --enable-nas) _nas=yes ;;
939 --disable-nas) _nas=no ;;
940 --enable-png) _png=yes ;;
941 --disable-png) _png=no ;;
942 --enable-mng) _mng=yes ;;
943 --disable-mng) _mng=no ;;
944 --enable-jpeg) _jpeg=yes ;;
945 --disable-jpeg) _jpeg=no ;;
946 --enable-libopenjpeg) libopenjpeg=yes ;;
947 --disable-libopenjpeg)libopenjpeg=no ;;
948 --enable-pnm) _pnm=yes ;;
949 --disable-pnm) _pnm=no ;;
950 --enable-md5sum) _md5sum=yes ;;
951 --disable-md5sum) _md5sum=no ;;
952 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
953 --disable-yuv4mpeg) _yuv4mpeg=no ;;
954 --enable-gif) _gif=yes ;;
955 --disable-gif) _gif=no ;;
956 --enable-gl) _gl=yes ;;
957 --disable-gl) _gl=no ;;
958 --enable-matrixview) matrixview=yes ;;
959 --disable-matrixview) matrixview=no ;;
960 --enable-ggi) _ggi=yes ;;
961 --disable-ggi) _ggi=no ;;
962 --enable-ggiwmh) _ggiwmh=yes ;;
963 --disable-ggiwmh) _ggiwmh=no ;;
964 --enable-aa) _aa=yes ;;
965 --disable-aa) _aa=no ;;
966 --enable-caca) _caca=yes ;;
967 --disable-caca) _caca=no ;;
968 --enable-svga) _svga=yes ;;
969 --disable-svga) _svga=no ;;
970 --enable-vesa) _vesa=yes ;;
971 --disable-vesa) _vesa=no ;;
972 --enable-fbdev) _fbdev=yes ;;
973 --disable-fbdev) _fbdev=no ;;
974 --enable-dvb) _dvb=yes ;;
975 --disable-dvb) _dvb=no ;;
976 --enable-dvbhead) _dvbhead=yes ;;
977 --disable-dvbhead) _dvbhead=no ;;
978 --enable-dxr2) _dxr2=yes ;;
979 --disable-dxr2) _dxr2=no ;;
980 --enable-dxr3) _dxr3=yes ;;
981 --disable-dxr3) _dxr3=no ;;
982 --enable-ivtv) _ivtv=yes ;;
983 --disable-ivtv) _ivtv=no ;;
984 --enable-v4l2) _v4l2=yes ;;
985 --disable-v4l2) _v4l2=no ;;
986 --enable-iconv) _iconv=yes ;;
987 --disable-iconv) _iconv=no ;;
988 --enable-langinfo) _langinfo=yes ;;
989 --disable-langinfo) _langinfo=no ;;
990 --enable-rtc) _rtc=yes ;;
991 --disable-rtc) _rtc=no ;;
992 --enable-libdv) _libdv=yes ;;
993 --disable-libdv) _libdv=no ;;
994 --enable-ossaudio) _ossaudio=yes ;;
995 --disable-ossaudio) _ossaudio=no ;;
996 --enable-arts) _arts=yes ;;
997 --disable-arts) _arts=no ;;
998 --enable-esd) _esd=yes ;;
999 --disable-esd) _esd=no ;;
1000 --enable-pulse) _pulse=yes ;;
1001 --disable-pulse) _pulse=no ;;
1002 --enable-jack) _jack=yes ;;
1003 --disable-jack) _jack=no ;;
1004 --enable-openal) _openal=yes ;;
1005 --disable-openal) _openal=no ;;
1006 --enable-dart) _dart=yes ;;
1007 --disable-dart) _dart=no ;;
1008 --enable-mad) _mad=yes ;;
1009 --disable-mad) _mad=no ;;
1010 --enable-mp3lame) _mp3lame=yes ;;
1011 --disable-mp3lame) _mp3lame=no ;;
1012 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;;
1013 --disable-mp3lame-lavc) _mp3lame_lavc=no ;;
1014 --enable-toolame) _toolame=yes ;;
1015 --disable-toolame) _toolame=no ;;
1016 --enable-twolame) _twolame=yes ;;
1017 --disable-twolame) _twolame=no ;;
1018 --enable-libcdio) _libcdio=yes ;;
1019 --disable-libcdio) _libcdio=no ;;
1020 --enable-liblzo) _liblzo=yes ;;
1021 --disable-liblzo) _liblzo=no ;;
1022 --enable-libvorbis) _libvorbis=yes ;;
1023 --disable-libvorbis) _libvorbis=no ;;
1024 --enable-speex) _speex=yes ;;
1025 --disable-speex) _speex=no ;;
1026 --enable-tremor) _tremor=yes ;;
1027 --disable-tremor) _tremor=no ;;
1028 --enable-tremor-internal) _tremor_internal=yes ;;
1029 --disable-tremor-internal) _tremor_internal=no ;;
1030 --enable-tremor-low) _tremor_low=yes ;;
1031 --disable-tremor-low) _tremor_low=no ;;
1032 --enable-theora) _theora=yes ;;
1033 --disable-theora) _theora=no ;;
1034 --enable-mp3lib) _mp3lib=yes ;;
1035 --disable-mp3lib) _mp3lib=no ;;
1036 --enable-liba52-internal) _liba52_internal=yes ;;
1037 --disable-liba52-internal) _liba52_internal=no ;;
1038 --enable-liba52) _liba52=yes ;;
1039 --disable-liba52) _liba52=no ;;
1040 --enable-libdca) _libdca=yes ;;
1041 --disable-libdca) _libdca=no ;;
1042 --enable-libmpeg2) _libmpeg2=yes ;;
1043 --disable-libmpeg2) _libmpeg2=no ;;
1044 --enable-musepack) _musepack=yes ;;
1045 --disable-musepack) _musepack=no ;;
1046 --enable-faad) _faad=yes ;;
1047 --disable-faad) _faad=no ;;
1048 --enable-faad-internal) _faad_internal=yes ;;
1049 --disable-faad-internal) _faad_internal=no ;;
1050 --enable-faad-fixed) _faad_fixed=yes ;;
1051 --disable-faad-fixed) _faad_fixed=no ;;
1052 --enable-faac) _faac=yes ;;
1053 --disable-faac) _faac=no ;;
1054 --enable-faac-lavc) _faac_lavc=yes ;;
1055 --disable-faac-lavc) _faac_lavc=no ;;
1056 --enable-ladspa) _ladspa=yes ;;
1057 --disable-ladspa) _ladspa=no ;;
1058 --enable-libbs2b) _libbs2b=yes ;;
1059 --disable-libbs2b) _libbs2b=no ;;
1060 --enable-xmms) _xmms=yes ;;
1061 --disable-xmms) _xmms=no ;;
1062 --enable-vcd) _vcd=yes ;;
1063 --disable-vcd) _vcd=no ;;
1064 --enable-dvdread) _dvdread=yes ;;
1065 --disable-dvdread) _dvdread=no ;;
1066 --enable-dvdread-internal) _dvdread_internal=yes ;;
1067 --disable-dvdread-internal) _dvdread_internal=no ;;
1068 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1069 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1070 --enable-dvdnav) _dvdnav=yes ;;
1071 --disable-dvdnav) _dvdnav=no ;;
1072 --enable-xanim) _xanim=yes ;;
1073 --disable-xanim) _xanim=no ;;
1074 --enable-real) _real=yes ;;
1075 --disable-real) _real=no ;;
1076 --enable-live) _live=yes ;;
1077 --disable-live) _live=no ;;
1078 --enable-nemesi) _nemesi=yes ;;
1079 --disable-nemesi) _nemesi=no ;;
1080 --enable-xinerama) _xinerama=yes ;;
1081 --disable-xinerama) _xinerama=no ;;
1082 --enable-mga) _mga=yes ;;
1083 --disable-mga) _mga=no ;;
1084 --enable-xmga) _xmga=yes ;;
1085 --disable-xmga) _xmga=no ;;
1086 --enable-vm) _vm=yes ;;
1087 --disable-vm) _vm=no ;;
1088 --enable-xf86keysym) _xf86keysym=yes ;;
1089 --disable-xf86keysym) _xf86keysym=no ;;
1090 --enable-mlib) _mlib=yes ;;
1091 --disable-mlib) _mlib=no ;;
1092 --enable-sunaudio) _sunaudio=yes ;;
1093 --disable-sunaudio) _sunaudio=no ;;
1094 --enable-sgiaudio) _sgiaudio=yes ;;
1095 --disable-sgiaudio) _sgiaudio=no ;;
1096 --enable-alsa) _alsa=yes ;;
1097 --disable-alsa) _alsa=no ;;
1098 --enable-tv) _tv=yes ;;
1099 --disable-tv) _tv=no ;;
1100 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1101 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1102 --enable-tv-v4l1) _tv_v4l1=yes ;;
1103 --disable-tv-v4l1) _tv_v4l1=no ;;
1104 --enable-tv-v4l2) _tv_v4l2=yes ;;
1105 --disable-tv-v4l2) _tv_v4l2=no ;;
1106 --enable-tv-dshow) _tv_dshow=yes ;;
1107 --disable-tv-dshow) _tv_dshow=no ;;
1108 --enable-radio) _radio=yes ;;
1109 --enable-radio-capture) _radio_capture=yes ;;
1110 --disable-radio-capture) _radio_capture=no ;;
1111 --disable-radio) _radio=no ;;
1112 --enable-radio-v4l) _radio_v4l=yes ;;
1113 --disable-radio-v4l) _radio_v4l=no ;;
1114 --enable-radio-v4l2) _radio_v4l2=yes ;;
1115 --disable-radio-v4l2) _radio_v4l2=no ;;
1116 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1117 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1118 --enable-pvr) _pvr=yes ;;
1119 --disable-pvr) _pvr=no ;;
1120 --enable-fastmemcpy) _fastmemcpy=yes ;;
1121 --disable-fastmemcpy) _fastmemcpy=no ;;
1122 --enable-hardcoded-tables) hardcoded_tables=yes ;;
1123 --disable-hardcoded-tables) hardcoded_tables=no ;;
1124 --enable-network) _network=yes ;;
1125 --disable-network) _network=no ;;
1126 --enable-winsock2_h) _winsock2_h=yes ;;
1127 --disable-winsock2_h) _winsock2_h=no ;;
1128 --enable-smb) _smb=yes ;;
1129 --disable-smb) _smb=no ;;
1130 --enable-vidix) _vidix=yes ;;
1131 --disable-vidix) _vidix=no ;;
1132 --with-vidix-drivers=*)
1133 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1135 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1136 --enable-dhahelper) _dhahelper=yes ;;
1137 --disable-dhahelper) _dhahelper=no ;;
1138 --enable-svgalib_helper) _svgalib_helper=yes ;;
1139 --disable-svgalib_helper) _svgalib_helper=no ;;
1140 --enable-joystick) _joystick=yes ;;
1141 --disable-joystick) _joystick=no ;;
1142 --enable-xvid) _xvid=yes ;;
1143 --disable-xvid) _xvid=no ;;
1144 --enable-xvid-lavc) _xvid_lavc=yes ;;
1145 --disable-xvid-lavc) _xvid_lavc=no ;;
1146 --enable-x264) _x264=yes ;;
1147 --disable-x264) _x264=no ;;
1148 --enable-x264-lavc) _x264_lavc=yes ;;
1149 --disable-x264-lavc) _x264_lavc=no ;;
1150 --enable-libdirac-lavc) _libdirac_lavc=yes ;;
1151 --disable-libdirac-lavc) _libdirac_lavc=no ;;
1152 --enable-libschroedinger-lavc) _libschroedinger_lavc=yes ;;
1153 --disable-libschroedinger-lavc) _libschroedinger_lavc=no ;;
1154 --enable-libnut) _libnut=yes ;;
1155 --disable-libnut) _libnut=no ;;
1156 --enable-libavutil_a) _libavutil_a=yes ;;
1157 --disable-libavutil_a) _libavutil_a=no ;;
1158 --enable-libavutil_so) _libavutil_so=yes ;;
1159 --disable-libavutil_so) _libavutil_so=no ;;
1160 --enable-libavcodec_a) _libavcodec_a=yes ;;
1161 --disable-libavcodec_a) _libavcodec_a=no ;;
1162 --enable-libavcodec_so) _libavcodec_so=yes ;;
1163 --disable-libavcodec_so) _libavcodec_so=no ;;
1164 --enable-libopencore_amrnb) _libopencore_amrnb=yes ;;
1165 --disable-libopencore_amrnb) _libopencore_amrnb=no ;;
1166 --enable-libopencore_amrwb) _libopencore_amrwb=yes ;;
1167 --disable-libopencore_amrwb) _libopencore_amrwb=no ;;
1168 --enable-decoder=*) _libavdecoders="$_libavdecoders $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1169 --disable-decoder=*) _libavdecoders=$(echo $_libavdecoders | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1170 --enable-encoder=*) _libavencoders="$_libavencoders $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1171 --disable-encoder=*) _libavencoders=$(echo $_libavencoders | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1172 --enable-parser=*) _libavparsers="$_libavparsers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1173 --disable-parser=*) _libavparsers=$(echo $_libavparsers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1174 --enable-protocol=*) _libavprotocols="$_libavprotocols $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1175 --disable-protocol=*) _libavprotocols=$(echo $_libavprotocols | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1176 --enable-demuxer=*) _libavdemuxers="$_libavdemuxers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1177 --disable-demuxer=*) _libavdemuxers=$(echo $_libavdemuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1178 --enable-muxer=*) _libavmuxers="$_libavmuxers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1179 --disable-muxer=*) _libavmuxers=$(echo $_libavmuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1180 --enable-libavformat_a) _libavformat_a=yes ;;
1181 --disable-libavformat_a) _libavformat_a=no ;;
1182 --enable-libavformat_so) _libavformat_so=yes ;;
1183 --disable-libavformat_so) _libavformat_so=no ;;
1184 --enable-libpostproc_a) _libpostproc_a=yes ;;
1185 --disable-libpostproc_a) _libpostproc_a=no ;;
1186 --enable-libpostproc_so) _libpostproc_so=yes ;;
1187 --disable-libpostproc_so) _libpostproc_so=no ;;
1188 --enable-libswscale_a) _libswscale_a=yes ;;
1189 --disable-libswscale_a) _libswscale_a=no ;;
1190 --enable-libswscale_so) _libswscale_so=yes ;;
1191 --disable-libswscale_so) _libswscale_so=no ;;
1192 --enable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=yes ;;
1193 --disable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=no ;;
1195 --enable-lirc) _lirc=yes ;;
1196 --disable-lirc) _lirc=no ;;
1197 --enable-lircc) _lircc=yes ;;
1198 --disable-lircc) _lircc=no ;;
1199 --enable-apple-remote) _apple_remote=yes ;;
1200 --disable-apple-remote) _apple_remote=no ;;
1201 --enable-apple-ir) _apple_ir=yes ;;
1202 --disable-apple-ir) _apple_ir=no ;;
1203 --enable-gui) _gui=yes ;;
1204 --disable-gui) _gui=no ;;
1205 --enable-gtk1) _gtk1=yes ;;
1206 --disable-gtk1) _gtk1=no ;;
1207 --enable-termcap) _termcap=yes ;;
1208 --disable-termcap) _termcap=no ;;
1209 --enable-termios) _termios=yes ;;
1210 --disable-termios) _termios=no ;;
1211 --enable-3dfx) _3dfx=yes ;;
1212 --disable-3dfx) _3dfx=no ;;
1213 --enable-s3fb) _s3fb=yes ;;
1214 --disable-s3fb) _s3fb=no ;;
1215 --enable-wii) _wii=yes ;;
1216 --disable-wii) _wii=no ;;
1217 --enable-tdfxfb) _tdfxfb=yes ;;
1218 --disable-tdfxfb) _tdfxfb=no ;;
1219 --disable-tdfxvid) _tdfxvid=no ;;
1220 --enable-tdfxvid) _tdfxvid=yes ;;
1221 --disable-xvr100) _xvr100=no ;;
1222 --enable-xvr100) _xvr100=yes ;;
1223 --disable-tga) _tga=no ;;
1224 --enable-tga) _tga=yes ;;
1225 --enable-directfb) _directfb=yes ;;
1226 --disable-directfb) _directfb=no ;;
1227 --enable-zr) _zr=yes ;;
1228 --disable-zr) _zr=no ;;
1229 --enable-bl) _bl=yes ;;
1230 --disable-bl) _bl=no ;;
1231 --enable-mtrr) _mtrr=yes ;;
1232 --disable-mtrr) _mtrr=no ;;
1233 --enable-largefiles) _largefiles=yes ;;
1234 --disable-largefiles) _largefiles=no ;;
1235 --enable-shm) _shm=yes ;;
1236 --disable-shm) _shm=no ;;
1237 --enable-select) _select=yes ;;
1238 --disable-select) _select=no ;;
1239 --enable-linux-devfs) _linux_devfs=yes ;;
1240 --disable-linux-devfs) _linux_devfs=no ;;
1241 --enable-cdparanoia) _cdparanoia=yes ;;
1242 --disable-cdparanoia) _cdparanoia=no ;;
1243 --enable-cddb) _cddb=yes ;;
1244 --disable-cddb) _cddb=no ;;
1245 --enable-big-endian) _big_endian=yes ;;
1246 --disable-big-endian) _big_endian=no ;;
1247 --enable-bitmap-font) _bitmap_font=yes ;;
1248 --disable-bitmap-font) _bitmap_font=no ;;
1249 --enable-freetype) _freetype=yes ;;
1250 --disable-freetype) _freetype=no ;;
1251 --enable-fontconfig) _fontconfig=yes ;;
1252 --disable-fontconfig) _fontconfig=no ;;
1253 --enable-unrarexec) _unrar_exec=yes ;;
1254 --disable-unrarexec) _unrar_exec=no ;;
1255 --enable-ftp) _ftp=yes ;;
1256 --disable-ftp) _ftp=no ;;
1257 --enable-vstream) _vstream=yes ;;
1258 --disable-vstream) _vstream=no ;;
1259 --enable-pthreads) _pthreads=yes ;;
1260 --disable-pthreads) _pthreads=no ;;
1261 --enable-w32threads) _w32threads=yes ;;
1262 --disable-w32threads) _w32threads=no ;;
1263 --enable-ass) _ass=yes ;;
1264 --disable-ass) _ass=no ;;
1265 --enable-ass-internal) ass_internal=yes ;;
1266 --disable-ass-internal) ass_internal=no ;;
1267 --enable-rpath) _rpath=yes ;;
1268 --disable-rpath) _rpath=no ;;
1270 --enable-fribidi) _fribidi=yes ;;
1271 --disable-fribidi) _fribidi=no ;;
1273 --enable-enca) _enca=yes ;;
1274 --disable-enca) _enca=no ;;
1276 --enable-inet6) _inet6=yes ;;
1277 --disable-inet6) _inet6=no ;;
1279 --enable-gethostbyname2) _gethostbyname2=yes ;;
1280 --disable-gethostbyname2) _gethostbyname2=no ;;
1282 --enable-dga1) _dga1=yes ;;
1283 --disable-dga1) _dga1=no ;;
1284 --enable-dga2) _dga2=yes ;;
1285 --disable-dga2) _dga2=no ;;
1287 --enable-menu) _menu=yes ;;
1288 --disable-menu) _menu=no ;;
1290 --enable-qtx) _qtx=yes ;;
1291 --disable-qtx) _qtx=no ;;
1293 --enable-coreaudio) _coreaudio=yes ;;
1294 --disable-coreaudio) _coreaudio=no ;;
1295 --enable-corevideo) _corevideo=yes ;;
1296 --disable-corevideo) _corevideo=no ;;
1297 --enable-quartz) _quartz=yes ;;
1298 --disable-quartz) _quartz=no ;;
1299 --enable-macosx-finder) _macosx_finder=yes ;;
1300 --disable-macosx-finder) _macosx_finder=no ;;
1301 --enable-macosx-bundle) _macosx_bundle=yes ;;
1302 --disable-macosx-bundle) _macosx_bundle=no ;;
1304 --enable-maemo) _maemo=yes ;;
1305 --disable-maemo) _maemo=no ;;
1307 --enable-sortsub) _sortsub=yes ;;
1308 --disable-sortsub) _sortsub=no ;;
1310 --enable-crash-debug) _crash_debug=yes ;;
1311 --disable-crash-debug) _crash_debug=no ;;
1312 --enable-sighandler) _sighandler=yes ;;
1313 --disable-sighandler) _sighandler=no ;;
1314 --enable-win32dll) _win32dll=yes ;;
1315 --disable-win32dll) _win32dll=no ;;
1317 --enable-sse) _sse=yes ;;
1318 --disable-sse) _sse=no ;;
1319 --enable-sse2) _sse2=yes ;;
1320 --disable-sse2) _sse2=no ;;
1321 --enable-ssse3) _ssse3=yes ;;
1322 --disable-ssse3) _ssse3=no ;;
1323 --enable-mmxext) _mmxext=yes ;;
1324 --disable-mmxext) _mmxext=no ;;
1325 --enable-3dnow) _3dnow=yes ;;
1326 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1327 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1328 --disable-3dnowext) _3dnowext=no ;;
1329 --enable-cmov) _cmov=yes ;;
1330 --disable-cmov) _cmov=no ;;
1331 --enable-fast-cmov) _fast_cmov=yes ;;
1332 --disable-fast-cmov) _fast_cmov=no ;;
1333 --enable-altivec) _altivec=yes ;;
1334 --disable-altivec) _altivec=no ;;
1335 --enable-armv5te) _armv5te=yes ;;
1336 --disable-armv5te) _armv5te=no ;;
1337 --enable-armv6) _armv6=yes ;;
1338 --disable-armv6) _armv6=no ;;
1339 --enable-armv6t2) _armv6t2=yes ;;
1340 --disable-armv6t2) _armv6t2=no ;;
1341 --enable-armvfp) _armvfp=yes ;;
1342 --disable-armvfp) _armvfp=no ;;
1343 --enable-neon) neon=yes ;;
1344 --disable-neon) neon=no ;;
1345 --enable-iwmmxt) _iwmmxt=yes ;;
1346 --disable-iwmmxt) _iwmmxt=no ;;
1347 --enable-mmx) _mmx=yes ;;
1348 --disable-mmx) # 3Dnow! and MMX2 require MMX
1349 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1352 echo "Unknown parameter: $ac_option"
1353 exit 1
1356 esac
1357 done
1359 # Atmos: moved this here, to be correct, if --prefix is specified
1360 test -z "$_bindir" && _bindir="$_prefix/bin"
1361 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1362 test -z "$_mandir" && _mandir="$_prefix/share/man"
1363 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1364 test -z "$_libdir" && _libdir="$_prefix/lib"
1366 # Determine our OS name and CPU architecture
1367 if test -z "$_target" ; then
1368 # OS name
1369 system_name=$(uname -s 2>&1)
1370 case "$system_name" in
1371 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1373 Haiku)
1374 system_name=BeOS
1376 IRIX*)
1377 system_name=IRIX
1379 GNU/kFreeBSD)
1380 system_name=FreeBSD
1382 HP-UX*)
1383 system_name=HP-UX
1385 [cC][yY][gG][wW][iI][nN]*)
1386 system_name=CYGWIN
1388 MINGW32*)
1389 system_name=MINGW32
1391 OS/2*)
1392 system_name=OS/2
1395 system_name="$system_name-UNKNOWN"
1397 esac
1400 # host's CPU/instruction set
1401 host_arch=$(uname -p 2>&1)
1402 case "$host_arch" in
1403 i386|sparc|ppc|alpha|arm|mips|vax)
1405 powerpc) # Darwin returns 'powerpc'
1406 host_arch=ppc
1408 *) # uname -p on Linux returns 'unknown' for the processor type,
1409 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1411 # Maybe uname -m (machine hardware name) returns something we
1412 # recognize.
1414 # x86/x86pc is used by QNX
1415 case "$(uname -m 2>&1)" in
1416 x86_64|amd64|i[3-9]86*|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686|BePC) host_arch=i386 ;;
1417 ia64) host_arch=ia64 ;;
1418 macppc|ppc) host_arch=ppc ;;
1419 ppc64) host_arch=ppc64 ;;
1420 alpha) host_arch=alpha ;;
1421 sparc) host_arch=sparc ;;
1422 sparc64) host_arch=sparc64 ;;
1423 parisc*|hppa*|9000*) host_arch=hppa ;;
1424 arm*|zaurus|cats) host_arch=arm ;;
1425 sh3|sh4|sh4a) host_arch=sh ;;
1426 s390) host_arch=s390 ;;
1427 s390x) host_arch=s390x ;;
1428 *mips*) host_arch=mips ;;
1429 vax) host_arch=vax ;;
1430 xtensa*) host_arch=xtensa ;;
1431 *) host_arch=UNKNOWN ;;
1432 esac
1434 esac
1435 else # if test -z "$_target"
1436 system_name=$(echo $_target | cut -d '-' -f 2)
1437 case "$(echo $system_name | tr A-Z a-z)" in
1438 linux) system_name=Linux ;;
1439 freebsd) system_name=FreeBSD ;;
1440 gnu/kfreebsd) system_name=FreeBSD ;;
1441 netbsd) system_name=NetBSD ;;
1442 bsd/os) system_name=BSD/OS ;;
1443 openbsd) system_name=OpenBSD ;;
1444 dragonfly) system_name=DragonFly ;;
1445 sunos) system_name=SunOS ;;
1446 qnx) system_name=QNX ;;
1447 morphos) system_name=MorphOS ;;
1448 amigaos) system_name=AmigaOS ;;
1449 mingw32*) system_name=MINGW32 ;;
1450 esac
1451 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1452 host_arch=$(echo $_target | cut -d '-' -f 1)
1453 if test $(echo $host_arch) != "x86_64" ; then
1454 host_arch=$(echo $host_arch | tr '_' '-')
1458 extra_cflags="-I. $extra_cflags"
1459 _timer=timer-linux.c
1460 _getch=getch2.c
1461 if freebsd ; then
1462 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1463 extra_cflags="$extra_cflags -I/usr/local/include"
1466 if netbsd || dragonfly ; then
1467 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1468 extra_cflags="$extra_cflags -I/usr/pkg/include"
1471 if darwin; then
1472 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1473 _timer=timer-darwin.c
1476 if aix ; then
1477 extra_ldflags="$extra_ldflags -lC"
1480 if irix ; then
1481 _ranlib='ar -r'
1482 elif linux ; then
1483 _ranlib='true'
1486 if win32 ; then
1487 _exesuf=".exe"
1488 # -lwinmm is always needed for osdep/timer-win2.c
1489 extra_ldflags="$extra_ldflags -lwinmm"
1490 _pe_executable=yes
1491 _timer=timer-win2.c
1492 _priority=yes
1493 def_dos_paths="#define HAVE_DOS_PATHS 1"
1494 def_priority="#define CONFIG_PRIORITY 1"
1497 if mingw32 ; then
1498 _getch=getch2-win.c
1499 _need_shmem=no
1502 if amigaos ; then
1503 _select=no
1504 _sighandler=no
1505 _stream_cache=no
1506 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1507 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1510 if qnx ; then
1511 extra_ldflags="$extra_ldflags -lph"
1514 if os2 ; then
1515 _exesuf=".exe"
1516 _getch=getch2-os2.c
1517 _need_shmem=no
1518 _priority=yes
1519 def_dos_paths="#define HAVE_DOS_PATHS 1"
1520 def_priority="#define CONFIG_PRIORITY 1"
1523 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1524 test "$I" && break
1525 done
1528 TMPLOG="configure.log"
1529 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1530 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1531 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1532 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1533 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1535 rm -f "$TMPLOG"
1536 echo configuration: $_configuration > "$TMPLOG"
1537 echo >> "$TMPLOG"
1540 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1541 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1545 # Checking CC version...
1546 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1547 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1548 echocheck "$_cc version"
1549 cc_vendor=intel
1550 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1551 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1552 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1553 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1554 # TODO verify older icc/ecc compatibility
1555 case $cc_version in
1557 cc_version="v. ?.??, bad"
1558 cc_fail=yes
1560 10.1|11.0|11.1)
1561 cc_version="$cc_version, ok"
1564 cc_version="$cc_version, bad"
1565 cc_fail=yes
1567 esac
1568 echores "$cc_version"
1569 else
1570 for _cc in "$_cc" gcc cc ; do
1571 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1572 if test "$cc_name_tmp" = "gcc"; then
1573 cc_name=$cc_name_tmp
1574 echocheck "$_cc version"
1575 cc_vendor=gnu
1576 cc_version=$($_cc -dumpversion 2>&1)
1577 case $cc_version in
1578 2.96*)
1579 cc_fail=yes
1582 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1583 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1584 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1586 esac
1587 echores "$cc_version"
1588 break
1590 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1591 if test "$cc_name_tmp" = "Sun C"; then
1592 echocheck "$_cc version"
1593 cc_vendor=sun
1594 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1595 _res_comment="experimental support only"
1596 echores "Sun C $cc_version"
1597 break
1599 done
1600 fi # icc
1601 test "$cc_fail" = yes && die "unsupported compiler version"
1603 if test -z "$_target" && x86 ; then
1604 cat > $TMPC << EOF
1605 int main(void) {
1606 int test[(int)sizeof(char *)-7];
1607 return 0;
1610 cc_check && host_arch=x86_64 || host_arch=i386
1613 echo "Detected operating system: $system_name"
1614 echo "Detected host architecture: $host_arch"
1616 echocheck "host cc"
1617 test "$_host_cc" || _host_cc=$_cc
1618 echores $_host_cc
1620 echocheck "cross compilation"
1621 if test $_cross_compile = auto ; then
1622 cat > $TMPC << EOF
1623 int main(void) { return 0; }
1625 _cross_compile=yes
1626 cc_check && "$TMPEXE" && _cross_compile=no
1628 echores $_cross_compile
1630 if test $_cross_compile = yes; then
1631 tmp_run() {
1632 return 0
1636 # ---
1638 # now that we know what compiler should be used for compilation, try to find
1639 # out which assembler is used by the $_cc compiler
1640 if test "$_as" = auto ; then
1641 _as=$($_cc -print-prog-name=as)
1642 test -z "$_as" && _as=as
1645 if test "$_nm" = auto ; then
1646 _nm=$($_cc -print-prog-name=nm)
1647 test -z "$_nm" && _nm=nm
1650 # XXX: this should be ok..
1651 _cpuinfo="echo"
1653 if test "$_runtime_cpudetection" = no ; then
1655 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1656 # FIXME: Remove the cygwin check once AMD CPUs are supported
1657 if test -r /proc/cpuinfo && ! cygwin; then
1658 # Linux with /proc mounted, extract CPU information from it
1659 _cpuinfo="cat /proc/cpuinfo"
1660 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1661 # FreeBSD with Linux emulation /proc mounted,
1662 # extract CPU information from it
1663 # Don't use it on x86 though, it never reports 3Dnow
1664 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1665 elif darwin && ! x86 ; then
1666 # use hostinfo on Darwin
1667 _cpuinfo="hostinfo"
1668 elif aix; then
1669 # use 'lsattr' on AIX
1670 _cpuinfo="lsattr -E -l proc0 -a type"
1671 elif x86; then
1672 # all other OSes try to extract CPU information from a small helper
1673 # program cpuinfo instead
1674 $_cc -o cpuinfo$_exesuf cpuinfo.c
1675 _cpuinfo="./cpuinfo$_exesuf"
1678 if x86 ; then
1679 # gather more CPU information
1680 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1681 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1682 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1683 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1684 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1686 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1688 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1689 -e s/xmm/sse/ -e s/kni/sse/)
1691 for ext in $pparam ; do
1692 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1693 done
1695 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1696 test $_sse = kernel_check && _mmxext=kernel_check
1698 echocheck "CPU vendor"
1699 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1701 echocheck "CPU type"
1702 echores "$pname"
1705 fi # test "$_runtime_cpudetection" = no
1707 if x86 && test "$_runtime_cpudetection" = no ; then
1708 extcheck() {
1709 if test "$1" = kernel_check ; then
1710 echocheck "kernel support of $2"
1711 cat > $TMPC <<EOF
1712 #include <stdlib.h>
1713 #include <signal.h>
1714 void catch() { exit(1); }
1715 int main(void) {
1716 signal(SIGILL, catch);
1717 __asm__ volatile ("$3":::"memory"); return 0;
1721 if cc_check && tmp_run ; then
1722 eval _$2=yes
1723 echores "yes"
1724 _optimizing="$_optimizing $2"
1725 return 0
1726 else
1727 eval _$2=no
1728 echores "failed"
1729 echo "It seems that your kernel does not correctly support $2."
1730 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1731 return 1
1734 return 0
1737 extcheck $_mmx "mmx" "emms"
1738 extcheck $_mmxext "mmxext" "sfence"
1739 extcheck $_3dnow "3dnow" "femms"
1740 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1741 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1742 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1743 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1744 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1746 echocheck "mtrr support"
1747 if test "$_mtrr" = kernel_check ; then
1748 _mtrr="yes"
1749 _optimizing="$_optimizing mtrr"
1751 echores "$_mtrr"
1753 if test "$_gcc3_ext" != ""; then
1754 # if we had to disable sse/sse2 because the active kernel does not
1755 # support this instruction set extension, we also have to tell
1756 # gcc3 to not generate sse/sse2 instructions for normal C code
1757 cat > $TMPC << EOF
1758 int main(void) { return 0; }
1760 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1766 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1767 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1768 _arch_all='X86 X86_32 X86_64 IA64 SPARC ARM AVR32 SH4 PPC PPC64 ALPHA MIPS SGI_MIPS PA_RISC S390 S390X VAX BFIN XTENSA GENERIC'
1769 case "$host_arch" in
1770 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1771 _arch='X86 X86_32'
1772 _target_arch="ARCH_X86 = yes"
1773 _target_subarch="ARCH_X86_32 = yes"
1774 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1775 iproc=486
1776 proc=i486
1779 if test "$_runtime_cpudetection" = no ; then
1780 case "$pvendor" in
1781 AuthenticAMD)
1782 case "$pfamily" in
1783 3) proc=i386 iproc=386 ;;
1784 4) proc=i486 iproc=486 ;;
1785 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1786 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1787 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1788 proc=k6-3
1789 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1790 proc=geode
1791 elif test "$pmodel" -ge 8; then
1792 proc=k6-2
1793 elif test "$pmodel" -ge 6; then
1794 proc=k6
1795 else
1796 proc=i586
1799 6) iproc=686
1800 # It's a bit difficult to determine the correct type of Family 6
1801 # AMD CPUs just from their signature. Instead, we check directly
1802 # whether it supports SSE.
1803 if test "$_sse" = yes; then
1804 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1805 proc=athlon-xp
1806 else
1807 # Again, gcc treats athlon and athlon-tbird similarly.
1808 proc=athlon
1811 15) iproc=686
1812 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1813 # caught and remedied in the optimization tests below.
1814 proc=k8
1817 *) proc=k8 iproc=686 ;;
1818 esac
1820 GenuineIntel)
1821 case "$pfamily" in
1822 3) proc=i386 iproc=386 ;;
1823 4) proc=i486 iproc=486 ;;
1824 5) iproc=586
1825 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1826 proc=pentium-mmx # 4 is desktop, 8 is mobile
1827 else
1828 proc=i586
1831 6) iproc=686
1832 if test "$pmodel" -ge 15; then
1833 proc=core2
1834 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1835 proc=pentium-m
1836 elif test "$pmodel" -ge 7; then
1837 proc=pentium3
1838 elif test "$pmodel" -ge 3; then
1839 proc=pentium2
1840 else
1841 proc=i686
1844 15) iproc=686
1845 # A nocona in 32-bit mode has no more capabilities than a prescott.
1846 if test "$pmodel" -ge 3; then
1847 proc=prescott
1848 else
1849 proc=pentium4
1851 test $_fast_cmov = "auto" && _fast_cmov=no
1853 *) proc=prescott iproc=686 ;;
1854 esac
1856 CentaurHauls)
1857 case "$pfamily" in
1858 5) iproc=586
1859 if test "$pmodel" -ge 8; then
1860 proc=winchip2
1861 elif test "$pmodel" -ge 4; then
1862 proc=winchip-c6
1863 else
1864 proc=i586
1867 6) iproc=686
1868 if test "$pmodel" -ge 9; then
1869 proc=c3-2
1870 else
1871 proc=c3
1872 iproc=586
1875 *) proc=i686 iproc=i686 ;;
1876 esac
1878 unknown)
1879 case "$pfamily" in
1880 3) proc=i386 iproc=386 ;;
1881 4) proc=i486 iproc=486 ;;
1882 *) proc=i586 iproc=586 ;;
1883 esac
1886 proc=i586 iproc=586 ;;
1887 esac
1888 fi # test "$_runtime_cpudetection" = no
1891 # check that gcc supports our CPU, if not, fall back to earlier ones
1892 # LGB: check -mcpu and -march swithing step by step with enabling
1893 # to fall back till 386.
1895 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1897 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1898 cpuopt=-mtune
1899 else
1900 cpuopt=-mcpu
1903 echocheck "GCC & CPU optimization abilities"
1904 cat > $TMPC << EOF
1905 int main(void) { return 0; }
1907 if test "$_runtime_cpudetection" = no ; then
1908 cc_check -march=native && proc=native
1909 if test "$proc" = "k8"; then
1910 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1912 if test "$proc" = "athlon-xp"; then
1913 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1915 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1916 cc_check -march=$proc $cpuopt=$proc || proc=k6
1918 if test "$proc" = "k6" || test "$proc" = "c3"; then
1919 if ! cc_check -march=$proc $cpuopt=$proc; then
1920 if cc_check -march=i586 $cpuopt=i686; then
1921 proc=i586-i686
1922 else
1923 proc=i586
1927 if test "$proc" = "prescott" ; then
1928 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1930 if test "$proc" = "core2" ; then
1931 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1933 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
1934 cc_check -march=$proc $cpuopt=$proc || proc=i686
1936 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1937 cc_check -march=$proc $cpuopt=$proc || proc=i586
1939 if test "$proc" = "i586"; then
1940 cc_check -march=$proc $cpuopt=$proc || proc=i486
1942 if test "$proc" = "i486" ; then
1943 cc_check -march=$proc $cpuopt=$proc || proc=i386
1945 if test "$proc" = "i386" ; then
1946 cc_check -march=$proc $cpuopt=$proc || proc=error
1948 if test "$proc" = "error" ; then
1949 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1950 _mcpu=""
1951 _march=""
1952 _optimizing=""
1953 elif test "$proc" = "i586-i686"; then
1954 _march="-march=i586"
1955 _mcpu="$cpuopt=i686"
1956 _optimizing="$proc"
1957 else
1958 _march="-march=$proc"
1959 _mcpu="$cpuopt=$proc"
1960 _optimizing="$proc"
1962 else # if test "$_runtime_cpudetection" = no
1963 _mcpu="$cpuopt=generic"
1964 # at least i486 required, for bswap instruction
1965 _march="-march=i486"
1966 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1967 cc_check $_mcpu || _mcpu=""
1968 cc_check $_march $_mcpu || _march=""
1971 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1972 ## autodetected mcpu/march parameters
1973 if test "$_target" ; then
1974 # TODO: it may be a good idea to check GCC and fall back in all cases
1975 if test "$host_arch" = "i586-i686"; then
1976 _march="-march=i586"
1977 _mcpu="$cpuopt=i686"
1978 else
1979 _march="-march=$host_arch"
1980 _mcpu="$cpuopt=$host_arch"
1983 proc="$host_arch"
1985 case "$proc" in
1986 i386) iproc=386 ;;
1987 i486) iproc=486 ;;
1988 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1989 i686|athlon*|pentium*) iproc=686 ;;
1990 *) iproc=586 ;;
1991 esac
1994 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1995 _fast_cmov="yes"
1996 else
1997 _fast_cmov="no"
2000 echores "$proc"
2003 ia64)
2004 _arch='IA64'
2005 _target_arch='ARCH_IA64 = yes'
2006 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2007 iproc='ia64'
2010 x86_64|amd64)
2011 _arch='X86 X86_64'
2012 _target_subarch='ARCH_X86_64 = yes'
2013 _target_arch="ARCH_X86 = yes"
2014 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2015 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2016 iproc='x86_64'
2018 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
2019 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
2020 cpuopt=-mtune
2021 else
2022 cpuopt=-mcpu
2024 test $_fast_cmov = "auto" && _fast_cmov=yes
2025 if test "$_runtime_cpudetection" = no ; then
2026 case "$pvendor" in
2027 AuthenticAMD)
2028 proc=k8;;
2029 GenuineIntel)
2030 case "$pfamily" in
2031 6) proc=core2;;
2033 # 64-bit prescotts exist, but as far as GCC is concerned they
2034 # have the same capabilities as a nocona.
2035 proc=nocona
2037 esac
2040 proc=error;;
2041 esac
2042 fi # test "$_runtime_cpudetection" = no
2044 echocheck "GCC & CPU optimization abilities"
2045 cat > $TMPC << EOF
2046 int main(void) { return 0; }
2048 # This is a stripped-down version of the i386 fallback.
2049 if test "$_runtime_cpudetection" = no ; then
2050 cc_check -march=native && proc=native
2051 # --- AMD processors ---
2052 if test "$proc" = "k8"; then
2053 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2055 # This will fail if gcc version < 3.3, which is ok because earlier
2056 # versions don't really support 64-bit on amd64.
2057 # Is this a valid assumption? -Corey
2058 if test "$proc" = "athlon-xp"; then
2059 cc_check -march=$proc $cpuopt=$proc || proc=error
2061 # --- Intel processors ---
2062 if test "$proc" = "core2"; then
2063 cc_check -march=$proc $cpuopt=$proc || proc=nocona
2065 if test "$proc" = "nocona"; then
2066 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
2068 if test "$proc" = "pentium4"; then
2069 cc_check -march=$proc $cpuopt=$proc || proc=error
2072 _march="-march=$proc"
2073 _mcpu="$cpuopt=$proc"
2074 if test "$proc" = "error" ; then
2075 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2076 _mcpu=""
2077 _march=""
2079 else # if test "$_runtime_cpudetection" = no
2080 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2081 _march="-march=x86-64"
2082 _mcpu="$cpuopt=generic"
2083 cc_check $_mcpu || _mcpu="x86-64"
2084 cc_check $_mcpu || _mcpu=""
2085 cc_check $_march $_mcpu || _march=""
2088 _optimizing=""
2090 echores "$proc"
2093 sparc|sparc64)
2094 _arch='SPARC'
2095 _target_arch='ARCH_SPARC = yes'
2096 iproc='sparc'
2097 if test "$host_arch" = "sparc64" ; then
2098 _vis='yes'
2099 proc='ultrasparc'
2100 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2101 elif sunos ; then
2102 echocheck "CPU type"
2103 karch=$(uname -m)
2104 case "$(echo $karch)" in
2105 sun4) proc=v7 ;;
2106 sun4c) proc=v7 ;;
2107 sun4d) proc=v8 ;;
2108 sun4m) proc=v8 ;;
2109 sun4u) proc=ultrasparc _vis='yes' ;;
2110 sun4v) proc=v9 ;;
2111 *) proc=v8 ;;
2112 esac
2113 echores "$proc"
2114 else
2115 proc=v8
2117 _mcpu="-mcpu=$proc"
2118 _optimizing="$proc"
2121 arm|armv4l|armv5tel)
2122 _arch='ARM'
2123 _target_arch='ARCH_ARM = yes'
2124 iproc='arm'
2127 avr32)
2128 _arch='AVR32'
2129 _target_arch='ARCH_AVR32 = yes'
2130 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2131 iproc='avr32'
2134 sh|sh4)
2135 _arch='SH4'
2136 _target_arch='ARCH_SH4 = yes'
2137 iproc='sh4'
2140 ppc|ppc64|powerpc|powerpc64)
2141 _arch='PPC'
2142 def_dcbzl='#define HAVE_DCBZL 0'
2143 _target_arch='ARCH_PPC = yes'
2144 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2145 iproc='ppc'
2147 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2148 _arch='PPC PPC64'
2149 _target_subarch='ARCH_PPC64 = yes'
2150 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2152 echocheck "CPU type"
2153 case $system_name in
2154 Linux)
2155 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2156 if test -n "$($_cpuinfo | grep altivec)"; then
2157 test $_altivec = auto && _altivec=yes
2160 Darwin)
2161 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2162 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2163 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2164 test $_altivec = auto && _altivec=yes
2167 NetBSD)
2168 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2169 case $cc_version in
2170 2*|3.0*|3.1*|3.2*|3.3*)
2173 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2174 test $_altivec = auto && _altivec=yes
2177 esac
2179 AIX)
2180 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2182 esac
2183 if test "$_altivec" = yes; then
2184 echores "$proc altivec"
2185 else
2186 _altivec=no
2187 echores "$proc"
2190 echocheck "GCC & CPU optimization abilities"
2192 if test -n "$proc"; then
2193 case "$proc" in
2194 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2195 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2196 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2197 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2198 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2199 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2200 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2201 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2202 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2203 *) ;;
2204 esac
2205 # gcc 3.1(.1) and up supports 7400 and 7450
2206 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2207 case "$proc" in
2208 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2209 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2210 *) ;;
2211 esac
2213 # gcc 3.2 and up supports 970
2214 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2215 case "$proc" in
2216 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2217 def_dcbzl='#define HAVE_DCBZL 1' ;;
2218 *) ;;
2219 esac
2221 # gcc 3.3 and up supports POWER4
2222 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2223 case "$proc" in
2224 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2225 *) ;;
2226 esac
2228 # gcc 3.4 and up supports 440*
2229 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2230 case "$proc" in
2231 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2232 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2233 *) ;;
2234 esac
2236 # gcc 4.0 and up supports POWER5
2237 if test "$_cc_major" -ge "4"; then
2238 case "$proc" in
2239 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2240 *) ;;
2241 esac
2245 if test -n "$_mcpu"; then
2246 _optimizing=$(echo $_mcpu | cut -c 8-)
2247 echores "$_optimizing"
2248 else
2249 echores "none"
2254 alpha*)
2255 _arch='ALPHA'
2256 _target_arch='ARCH_ALPHA = yes'
2257 iproc='alpha'
2259 echocheck "CPU type"
2260 cat > $TMPC << EOF
2261 int main(void) {
2262 unsigned long ver, mask;
2263 __asm__ ("implver %0" : "=r" (ver));
2264 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2265 printf("%ld-%x\n", ver, ~mask);
2266 return 0;
2269 $_cc -o "$TMPEXE" "$TMPC"
2270 case $("$TMPEXE") in
2272 0-0) proc="ev4"; _mvi="0";;
2273 1-0) proc="ev5"; _mvi="0";;
2274 1-1) proc="ev56"; _mvi="0";;
2275 1-101) proc="pca56"; _mvi="1";;
2276 2-303) proc="ev6"; _mvi="1";;
2277 2-307) proc="ev67"; _mvi="1";;
2278 2-1307) proc="ev68"; _mvi="1";;
2279 esac
2280 echores "$proc"
2282 echocheck "GCC & CPU optimization abilities"
2283 if test "$proc" = "ev68" ; then
2284 cc_check -mcpu=$proc || proc=ev67
2286 if test "$proc" = "ev67" ; then
2287 cc_check -mcpu=$proc || proc=ev6
2289 _mcpu="-mcpu=$proc"
2290 echores "$proc"
2292 _optimizing="$proc"
2295 mips)
2296 _arch='SGI_MIPS'
2297 _target_arch='ARCH_SGI_MIPS = yes'
2298 iproc='sgi-mips'
2300 if irix ; then
2301 echocheck "CPU type"
2302 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2303 case "$(echo $proc)" in
2304 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2305 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2306 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2307 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2308 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2309 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2310 esac
2311 # gcc < 3.x does not support -mtune.
2312 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2313 _mcpu=''
2315 echores "$proc"
2320 hppa)
2321 _arch='PA_RISC'
2322 _target_arch='ARCH_PA_RISC = yes'
2323 iproc='PA-RISC'
2326 s390)
2327 _arch='S390'
2328 _target_arch='ARCH_S390 = yes'
2329 iproc='390'
2332 s390x)
2333 _arch='S390X'
2334 _target_arch='ARCH_S390X = yes'
2335 iproc='390x'
2338 vax)
2339 _arch='VAX'
2340 _target_arch='ARCH_VAX = yes'
2341 iproc='vax'
2344 xtensa)
2345 _arch='XTENSA'
2346 _target_arch='ARCH_XTENSA = yes'
2347 iproc='xtensa'
2350 generic)
2351 _arch='GENERIC'
2352 _target_arch='ARCH_GENERIC = yes'
2356 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2357 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2358 die "unsupported architecture $host_arch"
2360 esac # case "$host_arch" in
2362 if test "$_runtime_cpudetection" = yes ; then
2363 if x86 ; then
2364 test "$_cmov" != no && _cmov=yes
2365 x86_32 && _cmov=no
2366 test "$_mmx" != no && _mmx=yes
2367 test "$_3dnow" != no && _3dnow=yes
2368 test "$_3dnowext" != no && _3dnowext=yes
2369 test "$_mmxext" != no && _mmxext=yes
2370 test "$_sse" != no && _sse=yes
2371 test "$_sse2" != no && _sse2=yes
2372 test "$_ssse3" != no && _ssse3=yes
2373 test "$_mtrr" != no && _mtrr=yes
2375 if ppc; then
2376 _altivec=yes
2381 # endian testing
2382 echocheck "byte order"
2383 if test "$_big_endian" = auto ; then
2384 cat > $TMPC <<EOF
2385 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2386 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2387 int main(void) { return (int)ascii_name; }
2389 if cc_check ; then
2390 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2391 _big_endian=yes
2392 else
2393 _big_endian=no
2395 else
2396 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2399 if test "$_big_endian" = yes ; then
2400 _byte_order='big-endian'
2401 def_words_endian='#define WORDS_BIGENDIAN 1'
2402 def_bigendian='#define HAVE_BIGENDIAN 1'
2403 else
2404 _byte_order='little-endian'
2405 def_words_endian='#undef WORDS_BIGENDIAN'
2406 def_bigendian='#define HAVE_BIGENDIAN 0'
2408 echores "$_byte_order"
2411 echocheck "extern symbol prefix"
2412 cat > $TMPC << EOF
2413 int ff_extern;
2415 cc_check -c || die "Symbol mangling check failed."
2416 sym=$($_nm -P -g $TMPEXE)
2417 extern_prefix=${sym%%ff_extern*}
2418 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2419 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2420 echores $extern_prefix
2423 echocheck "assembler support of -pipe option"
2424 cat > $TMPC << EOF
2425 int main(void) { return 0; }
2427 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2428 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2431 echocheck "compiler support of named assembler arguments"
2432 _named_asm_args=yes
2433 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2434 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2435 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2436 _named_asm_args=no
2437 def_named_asm_args="#undef NAMED_ASM_ARGS"
2439 echores $_named_asm_args
2442 if darwin && test "$cc_vendor" = "gnu" ; then
2443 echocheck "GCC support of -mstackrealign"
2444 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2445 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2446 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2447 # wrong code with this flag, but this can be worked around by adding
2448 # -fno-unit-at-a-time as described in the blog post at
2449 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2450 cat > $TMPC << EOF
2451 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2452 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2454 cc_check -O4 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2455 test -z "$cflags_stackrealign" && cc_check -O4 -mstackrealign -fno-unit-at-a-time \
2456 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2457 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2458 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2461 # Checking for CFLAGS
2462 _install_strip="-s"
2463 if test "$_profile" != "" || test "$_debug" != "" ; then
2464 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2465 _install_strip=
2466 elif test -z "$CFLAGS" ; then
2467 if test "$cc_vendor" = "intel" ; then
2468 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2469 elif test "$cc_vendor" = "sun" ; then
2470 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2471 elif test "$cc_vendor" != "gnu" ; then
2472 CFLAGS="-O2 $_march $_mcpu $_pipe"
2473 else
2474 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2475 extra_ldflags="$extra_ldflags -ffast-math"
2477 else
2478 _warn_CFLAGS=yes
2481 cat > $TMPC << EOF
2482 int main(void) { return 0; }
2484 if test "$cc_vendor" = "gnu" ; then
2485 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2486 cc_check -Wdeclaration-after-statement && CFLAGS="-Wdeclaration-after-statement $CFLAGS"
2487 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2488 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2489 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2490 else
2491 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2494 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2497 if test -n "$LDFLAGS" ; then
2498 extra_ldflags="$extra_ldflags $LDFLAGS"
2499 _warn_CFLAGS=yes
2500 elif test "$cc_vendor" = "intel" ; then
2501 extra_ldflags="$extra_ldflags -i-static"
2503 if test -n "$CPPFLAGS" ; then
2504 extra_cflags="$extra_cflags $CPPFLAGS"
2505 _warn_CFLAGS=yes
2510 if x86_32 ; then
2511 # Checking assembler (_as) compatibility...
2512 # Added workaround for older as that reads from stdin by default - atmos
2513 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2514 echocheck "assembler ($_as $as_version)"
2516 _pref_as_version='2.9.1'
2517 echo 'nop' > $TMPS
2518 if test "$_mmx" = yes ; then
2519 echo 'emms' >> $TMPS
2521 if test "$_3dnow" = yes ; then
2522 _pref_as_version='2.10.1'
2523 echo 'femms' >> $TMPS
2525 if test "$_3dnowext" = yes ; then
2526 _pref_as_version='2.10.1'
2527 echo 'pswapd %mm0, %mm0' >> $TMPS
2529 if test "$_mmxext" = yes ; then
2530 _pref_as_version='2.10.1'
2531 echo 'movntq %mm0, (%eax)' >> $TMPS
2533 if test "$_sse" = yes ; then
2534 _pref_as_version='2.10.1'
2535 echo 'xorps %xmm0, %xmm0' >> $TMPS
2537 #if test "$_sse2" = yes ; then
2538 # _pref_as_version='2.11'
2539 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2541 if test "$_cmov" = yes ; then
2542 _pref_as_version='2.10.1'
2543 echo 'cmovb %eax, %ebx' >> $TMPS
2545 if test "$_ssse3" = yes ; then
2546 _pref_as_version='2.16.92'
2547 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2549 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2551 if test "$as_verc_fail" != yes ; then
2552 echores "ok"
2553 else
2554 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2555 echores "failed"
2556 die "obsolete binutils version"
2559 fi #if x86_32
2561 echocheck ".align is a power of two"
2562 if test "$_asmalign_pot" = auto ; then
2563 _asmalign_pot=no
2564 cat > $TMPC << EOF
2565 int main(void) { __asm__ (".align 3"); return 0; }
2567 cc_check && _asmalign_pot=yes
2569 if test "$_asmalign_pot" = "yes" ; then
2570 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2571 else
2572 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2574 echores $_asmalign_pot
2576 if x86 ; then
2577 echocheck "10 assembler operands"
2578 ten_operands=no
2579 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2580 cat > $TMPC << EOF
2581 int main(void) {
2582 int x=0;
2583 __asm__ volatile(
2585 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2587 return 0;
2590 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2591 echores $ten_operands
2593 echocheck "ebx availability"
2594 ebx_available=no
2595 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2596 cat > $TMPC << EOF
2597 int main(void) {
2598 int x;
2599 __asm__ volatile(
2600 "xor %0, %0"
2601 :"=b"(x)
2602 // just adding ebx to clobber list seems unreliable with some
2603 // compilers, e.g. Haiku's gcc 2.95
2605 // and the above check does not work for OSX 64 bit...
2606 __asm__ volatile("":::"%ebx");
2607 return 0;
2610 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2611 echores $ebx_available
2613 echocheck "PIC"
2614 pic=no
2615 cat > $TMPC << EOF
2616 int main(void) {
2617 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2618 #error PIC not enabled
2619 #endif
2620 return 0;
2623 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2624 echores $pic
2626 echocheck "yasm"
2627 if test -z "$YASMFLAGS" ; then
2628 if darwin ; then
2629 x86_64 && objformat="macho64" || objformat="macho"
2630 elif win32 ; then
2631 objformat="win32"
2632 else
2633 objformat="elf"
2635 # currently tested for Linux x86, x86_64
2636 YASMFLAGS="-f $objformat"
2637 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2638 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2639 case "$objformat" in
2640 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2641 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2642 esac
2643 else
2644 _warn_CFLAGS=yes
2647 echo "pabsw xmm0, xmm0" > $TMPS
2648 yasm_check || _yasm=""
2649 if test $_yasm ; then
2650 test "$_mmx" = "yes" && fft_mmx="yes"
2651 def_yasm='#define HAVE_YASM 1'
2652 _have_yasm="yes"
2653 echores "$_yasm"
2654 else
2655 def_yasm='#define HAVE_YASM 0'
2656 fft_mmx="no"
2657 _have_yasm="no"
2658 echores "no"
2661 echocheck "bswap"
2662 def_bswap='#define HAVE_BSWAP 0'
2663 echo 'bswap %eax' > $TMPS
2664 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2665 echores "$bswap"
2666 fi #if x86
2669 #FIXME: This should happen before the check for CFLAGS..
2670 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2671 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2673 # check if AltiVec is supported by the compiler, and how to enable it
2674 echocheck "GCC AltiVec flags"
2675 cat > $TMPC << EOF
2676 int main(void) { return 0; }
2678 if $(cc_check -maltivec -mabi=altivec) ; then
2679 _altivec_gcc_flags="-maltivec -mabi=altivec"
2680 # check if <altivec.h> should be included
2681 cat > $TMPC << EOF
2682 #include <altivec.h>
2683 int main(void) { return 0; }
2685 if $(cc_check $_altivec_gcc_flags) ; then
2686 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2687 inc_altivec_h='#include <altivec.h>'
2688 else
2689 cat > $TMPC << EOF
2690 int main(void) { return 0; }
2692 if $(cc_check -faltivec) ; then
2693 _altivec_gcc_flags="-faltivec"
2694 else
2695 _altivec=no
2696 _altivec_gcc_flags="none, AltiVec disabled"
2700 echores "$_altivec_gcc_flags"
2702 # check if the compiler supports braces for vector declarations
2703 cat > $TMPC << EOF
2704 $inc_altivec_h
2705 int main(void) { (vector int) {1}; return 0; }
2707 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2709 # Disable runtime cpudetection if we cannot generate AltiVec code or
2710 # AltiVec is disabled by the user.
2711 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2712 && _runtime_cpudetection=no
2714 # Show that we are optimizing for AltiVec (if enabled and supported).
2715 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2716 && _optimizing="$_optimizing altivec"
2718 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2719 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2722 if ppc ; then
2723 def_xform_asm='#define HAVE_XFORM_ASM 0'
2724 xform_asm=no
2725 echocheck "XFORM ASM support"
2726 cat > $TMPC << EOF
2727 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2729 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2730 echores "$xform_asm"
2733 if arm ; then
2734 echocheck "ARM pld instruction"
2735 cat > $TMPC << EOF
2736 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2738 pld=no
2739 cc_check && pld=yes
2740 echores "$pld"
2742 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2743 if test $_armv5te = "auto" ; then
2744 cat > $TMPC << EOF
2745 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2747 _armv5te=no
2748 cc_check && _armv5te=yes
2750 echores "$_armv5te"
2752 echocheck "ARMv6 (SIMD instructions)"
2753 if test $_armv6 = "auto" ; then
2754 cat > $TMPC << EOF
2755 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2757 _armv6=no
2758 cc_check && _armv6=yes
2760 echores "$_armv6"
2762 echocheck "ARMv6t2 (SIMD instructions)"
2763 if test $_armv6t2 = "auto" ; then
2764 cat > $TMPC << EOF
2765 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2767 _armv6t2=no
2768 cc_check && _armv6t2=yes
2770 echores "$_armv6"
2772 echocheck "ARM VFP"
2773 if test $_armvfp = "auto" ; then
2774 cat > $TMPC << EOF
2775 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2777 _armvfp=no
2778 cc_check && _armvfp=yes
2780 echores "$_armvfp"
2782 echocheck "ARM NEON"
2783 if test $neon = "auto" ; then
2784 cat > $TMPC << EOF
2785 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2787 neon=no
2788 cc_check && neon=yes
2790 echores "$neon"
2792 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2793 if test $_iwmmxt = "auto" ; then
2794 cat > $TMPC << EOF
2795 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2797 _iwmmxt=no
2798 cc_check && _iwmmxt=yes
2800 echores "$_iwmmxt"
2803 _cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2804 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2805 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2806 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2807 test "$_3dnow" = yes && _cpuexts="AMD3DNOW $_cpuexts"
2808 test "$_3dnowext" = yes && _cpuexts="AMD3DNOWEXT $_cpuexts"
2809 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2810 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2811 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2812 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2813 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2814 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2815 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2816 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2817 test "$_armv6t2" = yes && _cpuexts="ARMV6T2 $_cpuexts"
2818 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2819 test "$neon" = yes && _cpuexts="NEON $_cpuexts"
2820 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2821 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2822 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2824 # Checking kernel version...
2825 if x86_32 && linux ; then
2826 _k_verc_problem=no
2827 kernel_version=$(uname -r 2>&1)
2828 echocheck "$system_name kernel version"
2829 case "$kernel_version" in
2830 '') kernel_version="?.??"; _k_verc_fail=yes;;
2831 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2832 _k_verc_problem=yes;;
2833 esac
2834 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2835 _k_verc_fail=yes
2837 if test "$_k_verc_fail" ; then
2838 echores "$kernel_version, fail"
2839 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2840 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2841 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2842 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2843 echo "2.2.x you must upgrade it to get SSE support!"
2844 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2845 else
2846 echores "$kernel_version, ok"
2850 ######################
2851 # MAIN TESTS GO HERE #
2852 ######################
2855 echocheck "-lposix"
2856 cat > $TMPC <<EOF
2857 int main(void) { return 0; }
2859 if cc_check -lposix ; then
2860 extra_ldflags="$extra_ldflags -lposix"
2861 echores "yes"
2862 else
2863 echores "no"
2866 echocheck "-lm"
2867 cat > $TMPC <<EOF
2868 int main(void) { return 0; }
2870 if cc_check -lm ; then
2871 _ld_lm="-lm"
2872 echores "yes"
2873 else
2874 _ld_lm=""
2875 echores "no"
2879 echocheck "langinfo"
2880 if test "$_langinfo" = auto ; then
2881 cat > $TMPC <<EOF
2882 #include <langinfo.h>
2883 int main(void) { nl_langinfo(CODESET); return 0; }
2885 _langinfo=no
2886 cc_check && _langinfo=yes
2888 if test "$_langinfo" = yes ; then
2889 def_langinfo='#define HAVE_LANGINFO 1'
2890 else
2891 def_langinfo='#undef HAVE_LANGINFO'
2893 echores "$_langinfo"
2896 echocheck "language"
2897 # Set preferred languages, "all" uses English as main language.
2898 test -z "$language" && language=$LINGUAS
2899 test -z "$language_doc" && language_doc=$language
2900 test -z "$language_man" && language_man=$language
2901 test -z "$language_msg" && language_msg=$language
2902 language_doc=$(echo $language_doc | tr , " ")
2903 language_man=$(echo $language_man | tr , " ")
2904 language_msg=$(echo $language_msg | tr , " ")
2906 test "$language_doc" = "all" && language_doc=$doc_lang_all
2907 test "$language_man" = "all" && language_man=$man_lang_all
2908 test "$language_msg" = "all" && language_msg=en
2910 # Prune non-existing translations from language lists.
2911 # Set message translation to the first available language.
2912 # Fall back on English.
2913 for lang in $language_doc ; do
2914 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2915 done
2916 language_doc=$tmp_language_doc
2917 test -z "$language_doc" && language_doc=en
2919 for lang in $language_man ; do
2920 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2921 done
2922 language_man=$tmp_language_man
2923 test -z "$language_man" && language_man=en
2925 for lang in $language_msg ; do
2926 test -f "help/help_mp-${lang}.h" && tmp_language_msg=$lang && break
2927 done
2928 language_msg=$tmp_language_msg
2929 test -z "$language_msg" && language_msg=en
2930 _mp_help="help/help_mp-${language_msg}.h"
2931 echores "messages: $language_msg - man pages: $language_man - documentation: $language_doc"
2934 echocheck "enable sighandler"
2935 if test "$_sighandler" = yes ; then
2936 def_sighandler='#define CONFIG_SIGHANDLER 1'
2937 else
2938 def_sighandler='#undef CONFIG_SIGHANDLER'
2940 echores "$_sighandler"
2942 echocheck "runtime cpudetection"
2943 if test "$_runtime_cpudetection" = yes ; then
2944 _optimizing="Runtime CPU-Detection enabled"
2945 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2946 else
2947 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2949 echores "$_runtime_cpudetection"
2952 echocheck "restrict keyword"
2953 for restrict_keyword in restrict __restrict __restrict__ ; do
2954 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2955 if cc_check; then
2956 def_restrict_keyword=$restrict_keyword
2957 break;
2959 done
2960 if [ -n "$def_restrict_keyword" ]; then
2961 echores "$def_restrict_keyword"
2962 else
2963 echores "none"
2965 # Avoid infinite recursion loop ("#define restrict restrict")
2966 if [ "$def_restrict_keyword" != "restrict" ]; then
2967 def_restrict_keyword="#define restrict $def_restrict_keyword"
2968 else
2969 def_restrict_keyword=""
2973 echocheck "__builtin_expect"
2974 # GCC branch prediction hint
2975 cat > $TMPC << EOF
2976 int foo(int a) {
2977 a = __builtin_expect(a, 10);
2978 return a == 10 ? 0 : 1;
2980 int main(void) { return foo(10) && foo(0); }
2982 _builtin_expect=no
2983 cc_check && _builtin_expect=yes
2984 if test "$_builtin_expect" = yes ; then
2985 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2986 else
2987 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2989 echores "$_builtin_expect"
2992 echocheck "kstat"
2993 cat > $TMPC << EOF
2994 #include <kstat.h>
2995 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2997 _kstat=no
2998 cc_check -lkstat && _kstat=yes
2999 if test "$_kstat" = yes ; then
3000 def_kstat="#define HAVE_LIBKSTAT 1"
3001 extra_ldflags="$extra_ldflags -lkstat"
3002 else
3003 def_kstat="#undef HAVE_LIBKSTAT"
3005 echores "$_kstat"
3008 echocheck "posix4"
3009 # required for nanosleep on some systems
3010 cat > $TMPC << EOF
3011 #include <time.h>
3012 int main(void) { (void) nanosleep(0, 0); return 0; }
3014 _posix4=no
3015 cc_check -lposix4 && _posix4=yes
3016 if test "$_posix4" = yes ; then
3017 extra_ldflags="$extra_ldflags -lposix4"
3019 echores "$_posix4"
3021 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
3022 echocheck $func
3023 cat > $TMPC << EOF
3024 #include <math.h>
3025 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
3027 eval _$func=no
3028 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
3029 if eval test "x\$_$func" = "xyes"; then
3030 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
3031 echores yes
3032 else
3033 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
3034 echores no
3036 done
3039 echocheck "mkstemp"
3040 cat > $TMPC << EOF
3041 #include <stdlib.h>
3042 int main(void) { char a; mkstemp(&a); return 0; }
3044 _mkstemp=no
3045 cc_check && _mkstemp=yes
3046 if test "$_mkstemp" = yes ; then
3047 def_mkstemp='#define HAVE_MKSTEMP 1'
3048 else
3049 def_mkstemp='#undef HAVE_MKSTEMP'
3051 echores "$_mkstemp"
3054 echocheck "nanosleep"
3055 # also check for nanosleep
3056 cat > $TMPC << EOF
3057 #include <time.h>
3058 int main(void) { (void) nanosleep(0, 0); return 0; }
3060 _nanosleep=no
3061 cc_check && _nanosleep=yes
3062 if test "$_nanosleep" = yes ; then
3063 def_nanosleep='#define HAVE_NANOSLEEP 1'
3064 else
3065 def_nanosleep='#undef HAVE_NANOSLEEP'
3067 echores "$_nanosleep"
3070 echocheck "socklib"
3071 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3072 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3073 cat > $TMPC << EOF
3074 #include <netdb.h>
3075 #include <sys/socket.h>
3076 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3078 _socklib=no
3079 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3080 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3081 done
3082 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3083 if test $_winsock2_h = auto ; then
3084 _winsock2_h=no
3085 cat > $TMPC << EOF
3086 #include <winsock2.h>
3087 int main(void) { (void) gethostbyname(0); return 0; }
3089 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3091 test "$_ld_sock" && _res_comment="using $_ld_sock"
3092 echores "$_socklib"
3095 if test $_winsock2_h = yes ; then
3096 _ld_sock="-lws2_32"
3097 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3098 else
3099 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3103 echocheck "arpa/inet.h"
3104 arpa_inet_h=no
3105 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3106 cat > $TMPC << EOF
3107 #include <arpa/inet.h>
3108 int main(void) { return 0; }
3110 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3111 echores "$arpa_inet_h"
3114 echocheck "inet_pton()"
3115 def_inet_pton='#define HAVE_INET_PTON 0'
3116 inet_pton=no
3117 cat > $TMPC << EOF
3118 #include <sys/types.h>
3119 #include <sys/socket.h>
3120 #include <arpa/inet.h>
3121 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3123 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3124 cc_check $_ld_tmp && inet_pton=yes && break
3125 done
3126 if test $inet_pton = yes ; then
3127 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3128 def_inet_pton='#define HAVE_INET_PTON 1'
3130 echores "$inet_pton"
3133 echocheck "inet_aton()"
3134 def_inet_aton='#define HAVE_INET_ATON 0'
3135 inet_aton=no
3136 cat > $TMPC << EOF
3137 #include <sys/types.h>
3138 #include <sys/socket.h>
3139 #include <arpa/inet.h>
3140 int main(void) { (void) inet_aton(0, 0); return 0; }
3142 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3143 cc_check $_ld_tmp && inet_aton=yes && break
3144 done
3145 if test $inet_aton = yes ; then
3146 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3147 def_inet_aton='#define HAVE_INET_ATON 1'
3149 echores "$inet_aton"
3152 echocheck "socklen_t"
3153 _socklen_t=no
3154 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3155 cat > $TMPC << EOF
3156 #include <$header>
3157 int main(void) { socklen_t v = 0; return v; }
3159 cc_check && _socklen_t=yes && break
3160 done
3161 if test "$_socklen_t" = yes ; then
3162 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3163 else
3164 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3166 echores "$_socklen_t"
3169 echocheck "closesocket()"
3170 _closesocket=no
3171 cat > $TMPC << EOF
3172 #include <winsock2.h>
3173 int main(void) { closesocket(~0); return 0; }
3175 cc_check $_ld_sock && _closesocket=yes
3176 if test "$_closesocket" = yes ; then
3177 def_closesocket='#define HAVE_CLOSESOCKET 1'
3178 else
3179 def_closesocket='#define HAVE_CLOSESOCKET 0'
3181 echores "$_closesocket"
3184 echocheck "network"
3185 test $_winsock2_h = no && test $inet_pton = no &&
3186 test $inet_aton = no && _network=no
3187 if test "$_network" = yes ; then
3188 def_network='#define CONFIG_NETWORK 1'
3189 extra_ldflags="$extra_ldflags $_ld_sock"
3190 _inputmodules="network $_inputmodules"
3191 else
3192 _noinputmodules="network $_noinputmodules"
3193 def_network='#undef CONFIG_NETWORK'
3194 _ftp=no
3196 echores "$_network"
3199 echocheck "inet6"
3200 if test "$_inet6" = auto ; then
3201 cat > $TMPC << EOF
3202 #include <sys/types.h>
3203 #if !defined(_WIN32) || defined(__CYGWIN__)
3204 #include <sys/socket.h>
3205 #include <netinet/in.h>
3206 #else
3207 #include <ws2tcpip.h>
3208 #endif
3209 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3211 _inet6=no
3212 if cc_check $_ld_sock ; then
3213 _inet6=yes
3216 if test "$_inet6" = yes ; then
3217 def_inet6='#define HAVE_AF_INET6 1'
3218 else
3219 def_inet6='#undef HAVE_AF_INET6'
3221 echores "$_inet6"
3224 echocheck "gethostbyname2"
3225 if test "$_gethostbyname2" = auto ; then
3226 cat > $TMPC << EOF
3227 #include <sys/types.h>
3228 #include <sys/socket.h>
3229 #include <netdb.h>
3230 int main(void) { gethostbyname2("", AF_INET); return 0; }
3232 _gethostbyname2=no
3233 if cc_check ; then
3234 _gethostbyname2=yes
3237 if test "$_gethostbyname2" = yes ; then
3238 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3239 else
3240 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3242 echores "$_gethostbyname2"
3245 echocheck "inttypes.h (required)"
3246 cat > $TMPC << EOF
3247 #include <inttypes.h>
3248 int main(void) { return 0; }
3250 _inttypes=no
3251 cc_check && _inttypes=yes
3252 echores "$_inttypes"
3254 if test "$_inttypes" = no ; then
3255 echocheck "bitypes.h (inttypes.h predecessor)"
3256 cat > $TMPC << EOF
3257 #include <sys/bitypes.h>
3258 int main(void) { return 0; }
3260 cc_check && _inttypes=yes
3261 if test "$_inttypes" = yes ; then
3262 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."
3263 else
3264 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3269 echocheck "int_fastXY_t in inttypes.h"
3270 cat > $TMPC << EOF
3271 #include <inttypes.h>
3272 int main(void) {
3273 volatile int_fast16_t v= 0;
3274 return v; }
3276 _fast_inttypes=no
3277 cc_check && _fast_inttypes=yes
3278 if test "$_fast_inttypes" = no ; then
3279 def_fast_inttypes='
3280 typedef signed char int_fast8_t;
3281 typedef signed int int_fast16_t;
3282 typedef signed int int_fast32_t;
3283 typedef signed long long int_fast64_t;
3284 typedef unsigned char uint_fast8_t;
3285 typedef unsigned int uint_fast16_t;
3286 typedef unsigned int uint_fast32_t;
3287 typedef unsigned long long uint_fast64_t;'
3289 echores "$_fast_inttypes"
3292 echocheck "malloc.h"
3293 cat > $TMPC << EOF
3294 #include <malloc.h>
3295 int main(void) { (void) malloc(0); return 0; }
3297 _malloc=no
3298 cc_check && _malloc=yes
3299 if test "$_malloc" = yes ; then
3300 def_malloc_h='#define HAVE_MALLOC_H 1'
3301 else
3302 def_malloc_h='#define HAVE_MALLOC_H 0'
3304 # malloc.h emits a warning in FreeBSD and OpenBSD
3305 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3306 echores "$_malloc"
3309 echocheck "memalign()"
3310 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3311 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3312 cat > $TMPC << EOF
3313 #include <malloc.h>
3314 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3316 _memalign=no
3317 cc_check && _memalign=yes
3318 if test "$_memalign" = yes ; then
3319 def_memalign='#define HAVE_MEMALIGN 1'
3320 else
3321 def_memalign='#define HAVE_MEMALIGN 0'
3322 def_map_memalign='#define memalign(a,b) malloc(b)'
3323 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3325 echores "$_memalign"
3328 echocheck "posix_memalign()"
3329 posix_memalign=no
3330 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3331 cat > $TMPC << EOF
3332 #define _XOPEN_SOURCE 600
3333 #include <stdlib.h>
3334 int main(void) { posix_memalign(NULL, 0, 0); }
3336 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3337 echores "$posix_memalign"
3340 echocheck "alloca.h"
3341 cat > $TMPC << EOF
3342 #include <alloca.h>
3343 int main(void) { (void) alloca(0); return 0; }
3345 _alloca=no
3346 cc_check && _alloca=yes
3347 if cc_check ; then
3348 def_alloca_h='#define HAVE_ALLOCA_H 1'
3349 else
3350 def_alloca_h='#undef HAVE_ALLOCA_H'
3352 echores "$_alloca"
3355 echocheck "fastmemcpy"
3356 if test "$_fastmemcpy" = yes ; then
3357 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3358 else
3359 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3361 echores "$_fastmemcpy"
3364 echocheck "hard-coded tables"
3365 if test "$hardcoded_tables" = yes ; then
3366 def_hardcoded_tables='#define CONFIG_HARDCODED_TABLES 1'
3367 mak_hardcoded_tables='CONFIG_HARDCODED_TABLES = yes'
3368 else
3369 def_hardcoded_tables='#define CONFIG_HARDCODED_TABLES 0'
3371 echores "$hardcoded_tables"
3374 echocheck "mman.h"
3375 cat > $TMPC << EOF
3376 #include <sys/types.h>
3377 #include <sys/mman.h>
3378 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3380 _mman=no
3381 cc_check && _mman=yes
3382 if test "$_mman" = yes ; then
3383 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3384 else
3385 def_mman_h='#undef HAVE_SYS_MMAN_H'
3386 os2 && _need_mmap=yes
3388 echores "$_mman"
3390 cat > $TMPC << EOF
3391 #include <sys/types.h>
3392 #include <sys/mman.h>
3393 int main(void) { void *p = MAP_FAILED; return 0; }
3395 _mman_has_map_failed=no
3396 cc_check && _mman_has_map_failed=yes
3397 if test "$_mman_has_map_failed" = yes ; then
3398 def_mman_has_map_failed=''
3399 else
3400 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3403 echocheck "dynamic loader"
3404 cat > $TMPC << EOF
3405 #include <stddef.h>
3406 #include <dlfcn.h>
3407 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3409 _dl=no
3410 for _ld_tmp in "" "-ldl" ; do
3411 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3412 done
3413 if test "$_dl" = yes ; then
3414 def_dl='#define HAVE_LIBDL 1'
3415 else
3416 def_dl='#undef HAVE_LIBDL'
3418 echores "$_dl"
3421 echocheck "dynamic a/v plugins support"
3422 if test "$_dl" = no ; then
3423 _dynamic_plugins=no
3425 if test "$_dynamic_plugins" = yes ; then
3426 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3427 else
3428 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3430 echores "$_dynamic_plugins"
3433 def_threads='#define HAVE_THREADS 0'
3435 echocheck "pthread"
3436 if linux ; then
3437 THREAD_CFLAGS=-D_REENTRANT
3438 elif freebsd || netbsd || openbsd || bsdos ; then
3439 THREAD_CFLAGS=-D_THREAD_SAFE
3441 if test "$_pthreads" = auto ; then
3442 cat > $TMPC << EOF
3443 #include <pthread.h>
3444 void* func(void *arg) { return arg; }
3445 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3447 _pthreads=no
3448 if ! hpux ; then
3449 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3450 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3451 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3452 done
3455 if test "$_pthreads" = yes ; then
3456 test $_ld_pthread && _res_comment="using $_ld_pthread"
3457 def_pthreads='#define HAVE_PTHREADS 1'
3458 def_threads='#define HAVE_THREADS 1'
3459 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3460 else
3461 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3462 def_pthreads='#undef HAVE_PTHREADS'
3463 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3464 mingw32 || _win32dll=no
3466 echores "$_pthreads"
3468 if cygwin ; then
3469 if test "$_pthreads" = yes ; then
3470 def_pthread_cache="#define PTHREAD_CACHE 1"
3471 else
3472 _stream_cache=no
3473 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3477 echocheck "w32threads"
3478 if test "$_pthreads" = yes ; then
3479 _res_comment="using pthread instead"
3480 _w32threads=no
3482 if test "$_w32threads" = auto ; then
3483 _w32threads=no
3484 mingw32 && _w32threads=yes
3486 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3487 echores "$_w32threads"
3489 echocheck "rpath"
3490 netbsd &&_rpath=yes
3491 if test "$_rpath" = yes ; then
3492 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3493 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3494 done
3495 extra_ldflags=$tmp
3497 echores "$_rpath"
3499 echocheck "iconv"
3500 if test "$_iconv" = auto ; then
3501 cat > $TMPC << EOF
3502 #include <stdio.h>
3503 #include <unistd.h>
3504 #include <iconv.h>
3505 #define INBUFSIZE 1024
3506 #define OUTBUFSIZE 4096
3508 char inbuffer[INBUFSIZE];
3509 char outbuffer[OUTBUFSIZE];
3511 int main(void) {
3512 size_t numread;
3513 iconv_t icdsc;
3514 char *tocode="UTF-8";
3515 char *fromcode="cp1250";
3516 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3517 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3518 char *iptr=inbuffer;
3519 char *optr=outbuffer;
3520 size_t inleft=numread;
3521 size_t outleft=OUTBUFSIZE;
3522 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3523 != (size_t)(-1)) {
3524 write(1, outbuffer, OUTBUFSIZE - outleft);
3527 if (iconv_close(icdsc) == -1)
3530 return 0;
3533 _iconv=no
3534 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3535 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3536 _iconv=yes && break
3537 done
3539 if test "$_iconv" = yes ; then
3540 def_iconv='#define CONFIG_ICONV 1'
3541 else
3542 def_iconv='#undef CONFIG_ICONV'
3544 echores "$_iconv"
3547 echocheck "soundcard.h"
3548 _soundcard_h=no
3549 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3550 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3551 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3552 cat > $TMPC << EOF
3553 #include <$_soundcard_header>
3554 int main(void) { return 0; }
3556 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3557 done
3559 if test "$_soundcard_h" = yes ; then
3560 if test $_soundcard_header = "sys/soundcard.h"; then
3561 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3562 else
3563 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3566 echores "$_soundcard_h"
3569 echocheck "sys/dvdio.h"
3570 cat > $TMPC << EOF
3571 #include <unistd.h>
3572 #include <sys/dvdio.h>
3573 int main(void) { return 0; }
3575 _dvdio=no
3576 cc_check && _dvdio=yes
3577 if test "$_dvdio" = yes ; then
3578 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3579 else
3580 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3582 echores "$_dvdio"
3585 echocheck "sys/cdio.h"
3586 cat > $TMPC << EOF
3587 #include <unistd.h>
3588 #include <sys/cdio.h>
3589 int main(void) { return 0; }
3591 _cdio=no
3592 cc_check && _cdio=yes
3593 if test "$_cdio" = yes ; then
3594 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3595 else
3596 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3598 echores "$_cdio"
3601 echocheck "linux/cdrom.h"
3602 cat > $TMPC << EOF
3603 #include <sys/types.h>
3604 #include <linux/cdrom.h>
3605 int main(void) { return 0; }
3607 _cdrom=no
3608 cc_check && _cdrom=yes
3609 if test "$_cdrom" = yes ; then
3610 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3611 else
3612 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3614 echores "$_cdrom"
3617 echocheck "dvd.h"
3618 cat > $TMPC << EOF
3619 #include <dvd.h>
3620 int main(void) { return 0; }
3622 _dvd=no
3623 cc_check && _dvd=yes
3624 if test "$_dvd" = yes ; then
3625 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3626 else
3627 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3629 echores "$_dvd"
3632 if bsdos; then
3633 echocheck "BSDI dvd.h"
3634 cat > $TMPC << EOF
3635 #include <dvd.h>
3636 int main(void) { return 0; }
3638 _bsdi_dvd=no
3639 cc_check && _bsdi_dvd=yes
3640 if test "$_bsdi_dvd" = yes ; then
3641 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3642 else
3643 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3645 echores "$_bsdi_dvd"
3646 fi #if bsdos
3649 if hpux; then
3650 # also used by AIX, but AIX does not support VCD and/or libdvdread
3651 echocheck "HP-UX SCSI header"
3652 cat > $TMPC << EOF
3653 #include <sys/scsi.h>
3654 int main(void) { return 0; }
3656 _hpux_scsi_h=no
3657 cc_check && _hpux_scsi_h=yes
3658 if test "$_hpux_scsi_h" = yes ; then
3659 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3660 else
3661 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3663 echores "$_hpux_scsi_h"
3664 fi #if hpux
3667 if sunos; then
3668 echocheck "userspace SCSI headers (Solaris)"
3669 cat > $TMPC << EOF
3670 #include <unistd.h>
3671 #include <stropts.h>
3672 #include <sys/scsi/scsi_types.h>
3673 #include <sys/scsi/impl/uscsi.h>
3674 int main(void) { return 0; }
3676 _sol_scsi_h=no
3677 cc_check && _sol_scsi_h=yes
3678 if test "$_sol_scsi_h" = yes ; then
3679 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3680 else
3681 def_sol_scsi_h='#undef SOLARIS_USCSI'
3683 echores "$_sol_scsi_h"
3684 fi #if sunos
3687 echocheck "termcap"
3688 if test "$_termcap" = auto ; then
3689 cat > $TMPC <<EOF
3690 #include <stddef.h>
3691 #include <term.h>
3692 int main(void) { tgetent(NULL, NULL); return 0; }
3694 _termcap=no
3695 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3696 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3697 && _termcap=yes && break
3698 done
3700 if test "$_termcap" = yes ; then
3701 def_termcap='#define HAVE_TERMCAP 1'
3702 test $_ld_tmp && _res_comment="using $_ld_tmp"
3703 else
3704 def_termcap='#undef HAVE_TERMCAP'
3706 echores "$_termcap"
3709 echocheck "termios"
3710 def_termios='#undef HAVE_TERMIOS'
3711 def_termios_h='#undef HAVE_TERMIOS_H'
3712 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3713 if test "$_termios" = auto ; then
3714 _termios=no
3715 for _termios_header in "sys/termios.h" "termios.h"; do
3716 cat > $TMPC <<EOF
3717 #include <$_termios_header>
3718 int main(void) { return 0; }
3720 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3721 done
3724 if test "$_termios" = yes ; then
3725 def_termios='#define HAVE_TERMIOS 1'
3726 if test "$_termios_header" = "termios.h" ; then
3727 def_termios_h='#define HAVE_TERMIOS_H 1'
3728 else
3729 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3732 echores "$_termios"
3735 echocheck "shm"
3736 if test "$_shm" = auto ; then
3737 cat > $TMPC << EOF
3738 #include <sys/types.h>
3739 #include <sys/shm.h>
3740 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3742 _shm=no
3743 cc_check && _shm=yes
3745 if test "$_shm" = yes ; then
3746 def_shm='#define HAVE_SHM 1'
3747 else
3748 def_shm='#undef HAVE_SHM'
3750 echores "$_shm"
3753 echocheck "strsep()"
3754 cat > $TMPC << EOF
3755 #include <string.h>
3756 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3758 _strsep=no
3759 cc_check && _strsep=yes
3760 if test "$_strsep" = yes ; then
3761 def_strsep='#define HAVE_STRSEP 1'
3762 _need_strsep=no
3763 else
3764 def_strsep='#undef HAVE_STRSEP'
3765 _need_strsep=yes
3767 echores "$_strsep"
3770 echocheck "vsscanf()"
3771 cat > $TMPC << EOF
3772 #define _ISOC99_SOURCE
3773 #include <stdarg.h>
3774 #include <stdio.h>
3775 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3777 _vsscanf=no
3778 cc_check && _vsscanf=yes
3779 if test "$_vsscanf" = yes ; then
3780 def_vsscanf='#define HAVE_VSSCANF 1'
3781 _need_vsscanf=no
3782 else
3783 def_vsscanf='#undef HAVE_VSSCANF'
3784 _need_vsscanf=yes
3786 echores "$_vsscanf"
3789 echocheck "swab()"
3790 cat > $TMPC << EOF
3791 #define _XOPEN_SOURCE 600
3792 #include <unistd.h>
3793 int main(void) { swab(0, 0, 0); return 0; }
3795 _swab=no
3796 cc_check && _swab=yes
3797 if test "$_swab" = yes ; then
3798 def_swab='#define HAVE_SWAB 1'
3799 _need_swab=no
3800 else
3801 def_swab='#undef HAVE_SWAB'
3802 _need_swab=yes
3804 echores "$_swab"
3806 echocheck "POSIX select()"
3807 cat > $TMPC << EOF
3808 #include <stdio.h>
3809 #include <stdlib.h>
3810 #include <sys/types.h>
3811 #include <string.h>
3812 #include <sys/time.h>
3813 #include <unistd.h>
3814 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3816 _posix_select=no
3817 def_posix_select='#undef HAVE_POSIX_SELECT'
3818 #select() of kLIBC (OS/2) supports socket only
3819 ! os2 && cc_check && _posix_select=yes \
3820 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3821 echores "$_posix_select"
3824 echocheck "audio select()"
3825 if test "$_select" = no ; then
3826 def_select='#undef HAVE_AUDIO_SELECT'
3827 elif test "$_select" = yes ; then
3828 def_select='#define HAVE_AUDIO_SELECT 1'
3830 echores "$_select"
3833 echocheck "gettimeofday()"
3834 cat > $TMPC << EOF
3835 #include <stdio.h>
3836 #include <sys/time.h>
3837 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3839 _gettimeofday=no
3840 cc_check && _gettimeofday=yes
3841 if test "$_gettimeofday" = yes ; then
3842 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3843 _need_gettimeofday=no
3844 else
3845 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3846 _need_gettimeofday=yes
3848 echores "$_gettimeofday"
3851 echocheck "glob()"
3852 cat > $TMPC << EOF
3853 #include <stdio.h>
3854 #include <glob.h>
3855 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3857 _glob=no
3858 cc_check && _glob=yes
3859 if test "$_glob" = yes ; then
3860 def_glob='#define HAVE_GLOB 1'
3861 _need_glob=no
3862 else
3863 def_glob='#undef HAVE_GLOB'
3864 _need_glob=yes
3866 echores "$_glob"
3869 echocheck "setenv()"
3870 cat > $TMPC << EOF
3871 #include <stdlib.h>
3872 int main(void) { setenv("","",0); return 0; }
3874 _setenv=no
3875 cc_check && _setenv=yes
3876 if test "$_setenv" = yes ; then
3877 def_setenv='#define HAVE_SETENV 1'
3878 _need_setenv=no
3879 else
3880 def_setenv='#undef HAVE_SETENV'
3881 _need_setenv=yes
3883 echores "$_setenv"
3886 if sunos; then
3887 echocheck "sysi86()"
3888 cat > $TMPC << EOF
3889 #include <sys/sysi86.h>
3890 int main(void) { sysi86(0); return 0; }
3892 _sysi86=no
3893 cc_check && _sysi86=yes
3894 if test "$_sysi86" = yes ; then
3895 def_sysi86='#define HAVE_SYSI86 1'
3896 cat > $TMPC << EOF
3897 #include <sys/sysi86.h>
3898 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3900 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3901 else
3902 def_sysi86='#undef HAVE_SYSI86'
3904 echores "$_sysi86"
3905 fi #if sunos
3908 echocheck "sys/sysinfo.h"
3909 cat > $TMPC << EOF
3910 #include <sys/sysinfo.h>
3911 int main(void) {
3912 struct sysinfo s_info;
3913 sysinfo(&s_info);
3914 return 0;
3917 _sys_sysinfo=no
3918 cc_check && _sys_sysinfo=yes
3919 if test "$_sys_sysinfo" = yes ; then
3920 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3921 else
3922 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3924 echores "$_sys_sysinfo"
3927 if darwin; then
3929 echocheck "Mac OS X Finder Support"
3930 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3931 if test "$_macosx_finder" = yes ; then
3932 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3933 extra_ldflags="$extra_ldflags -framework Carbon"
3935 echores "$_macosx_finder"
3937 echocheck "Mac OS X Bundle file locations"
3938 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3939 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3940 if test "$_macosx_bundle" = yes ; then
3941 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3942 extra_ldflags="$extra_ldflags -framework Carbon"
3944 echores "$_macosx_bundle"
3946 echocheck "Apple Remote"
3947 if test "$_apple_remote" = auto ; then
3948 _apple_remote=no
3949 cat > $TMPC <<EOF
3950 #include <stdio.h>
3951 #include <IOKit/IOCFPlugIn.h>
3952 int main(void) {
3953 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3954 CFMutableDictionaryRef hidMatchDictionary;
3955 IOReturn ioReturnValue;
3957 // Set up a matching dictionary to search the I/O Registry by class.
3958 // name for all HID class devices
3959 hidMatchDictionary = IOServiceMatching("AppleIRController");
3961 // Now search I/O Registry for matching devices.
3962 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3963 hidMatchDictionary, &hidObjectIterator);
3965 // If search is unsuccessful, return nonzero.
3966 if (ioReturnValue != kIOReturnSuccess ||
3967 !IOIteratorIsValid(hidObjectIterator)) {
3968 return 1;
3970 return 0;
3973 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3975 if test "$_apple_remote" = yes ; then
3976 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3977 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3978 else
3979 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3981 echores "$_apple_remote"
3983 fi #if darwin
3985 if linux; then
3987 echocheck "Apple IR"
3988 if test "$_apple_ir" = auto ; then
3989 _apple_ir=no
3990 cat > $TMPC <<EOF
3991 #include <linux/types.h>
3992 #include <linux/input.h>
3993 int main(void) {
3994 struct input_event ev;
3995 struct input_id id;
3996 return 0;
3999 cc_check && _apple_ir=yes
4001 if test "$_apple_ir" = yes ; then
4002 def_apple_ir='#define CONFIG_APPLE_IR 1'
4003 else
4004 def_apple_ir='#undef CONFIG_APPLE_IR'
4006 echores "$_apple_ir"
4007 fi #if linux
4009 echocheck "pkg-config"
4010 _pkg_config=pkg-config
4011 if $($_pkg_config --version > /dev/null 2>&1); then
4012 if test "$_ld_static"; then
4013 _pkg_config="$_pkg_config --static"
4015 echores "yes"
4016 else
4017 _pkg_config=false
4018 echores "no"
4022 echocheck "Samba support (libsmbclient)"
4023 if test "$_smb" = yes; then
4024 extra_ldflags="$extra_ldflags -lsmbclient"
4026 if test "$_smb" = auto; then
4027 _smb=no
4028 cat > $TMPC << EOF
4029 #include <libsmbclient.h>
4030 int main(void) { smbc_opendir("smb://"); return 0; }
4032 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
4033 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
4034 _smb=yes && break
4035 done
4038 if test "$_smb" = yes; then
4039 def_smb="#define CONFIG_LIBSMBCLIENT 1"
4040 _inputmodules="smb $_inputmodules"
4041 else
4042 def_smb="#undef CONFIG_LIBSMBCLIENT"
4043 _noinputmodules="smb $_noinputmodules"
4045 echores "$_smb"
4048 #########
4049 # VIDEO #
4050 #########
4053 echocheck "tdfxfb"
4054 if test "$_tdfxfb" = yes ; then
4055 def_tdfxfb='#define CONFIG_TDFXFB 1'
4056 _vomodules="tdfxfb $_vomodules"
4057 else
4058 def_tdfxfb='#undef CONFIG_TDFXFB'
4059 _novomodules="tdfxfb $_novomodules"
4061 echores "$_tdfxfb"
4063 echocheck "s3fb"
4064 if test "$_s3fb" = yes ; then
4065 def_s3fb='#define CONFIG_S3FB 1'
4066 _vomodules="s3fb $_vomodules"
4067 else
4068 def_s3fb='#undef CONFIG_S3FB'
4069 _novomodules="s3fb $_novomodules"
4071 echores "$_s3fb"
4073 echocheck "wii"
4074 if test "$_wii" = yes ; then
4075 def_wii='#define CONFIG_WII 1'
4076 _vomodules="wii $_vomodules"
4077 else
4078 def_wii='#undef CONFIG_WII'
4079 _novomodules="wii $_novomodules"
4081 echores "$_wii"
4083 echocheck "tdfxvid"
4084 if test "$_tdfxvid" = yes ; then
4085 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4086 _vomodules="tdfx_vid $_vomodules"
4087 else
4088 def_tdfxvid='#undef CONFIG_TDFX_VID'
4089 _novomodules="tdfx_vid $_novomodules"
4091 echores "$_tdfxvid"
4093 echocheck "xvr100"
4094 if test "$_xvr100" = auto ; then
4095 cat > $TMPC << EOF
4096 #include <unistd.h>
4097 #include <sys/fbio.h>
4098 #include <sys/visual_io.h>
4099 int main(void) {
4100 struct vis_identifier ident;
4101 struct fbgattr attr;
4102 ioctl(0, VIS_GETIDENTIFIER, &ident);
4103 ioctl(0, FBIOGATTR, &attr);
4104 return 0;
4107 _xvr100=no
4108 cc_check && _xvr100=yes
4110 if test "$_xvr100" = yes ; then
4111 def_xvr100='#define CONFIG_XVR100 1'
4112 _vomodules="xvr100 $_vomodules"
4113 else
4114 def_tdfxvid='#undef CONFIG_XVR100'
4115 _novomodules="xvr100 $_novomodules"
4117 echores "$_xvr100"
4119 echocheck "tga"
4120 if test "$_tga" = yes ; then
4121 def_tga='#define CONFIG_TGA 1'
4122 _vomodules="tga $_vomodules"
4123 else
4124 def_tga='#undef CONFIG_TGA'
4125 _novomodules="tga $_novomodules"
4127 echores "$_tga"
4130 echocheck "md5sum support"
4131 if test "$_md5sum" = yes; then
4132 def_md5sum="#define CONFIG_MD5SUM 1"
4133 _vomodules="md5sum $_vomodules"
4134 else
4135 def_md5sum="#undef CONFIG_MD5SUM"
4136 _novomodules="md5sum $_novomodules"
4138 echores "$_md5sum"
4141 echocheck "yuv4mpeg support"
4142 if test "$_yuv4mpeg" = yes; then
4143 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4144 _vomodules="yuv4mpeg $_vomodules"
4145 else
4146 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4147 _novomodules="yuv4mpeg $_novomodules"
4149 echores "$_yuv4mpeg"
4152 echocheck "bl"
4153 if test "$_bl" = yes ; then
4154 def_bl='#define CONFIG_BL 1'
4155 _vomodules="bl $_vomodules"
4156 else
4157 def_bl='#undef CONFIG_BL'
4158 _novomodules="bl $_novomodules"
4160 echores "$_bl"
4163 echocheck "DirectFB"
4164 if test "$_directfb" = auto ; then
4165 _directfb=no
4166 cat > $TMPC <<EOF
4167 #include <directfb.h>
4168 int main(void) { DirectFBInit(0, 0); return 0; }
4170 for _inc_tmp in "" -I/usr/local/include/directfb \
4171 -I/usr/include/directfb -I/usr/local/include; do
4172 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4173 extra_cflags="$extra_cflags $_inc_tmp" && break
4174 done
4177 dfb_version() {
4178 expr $1 \* 65536 + $2 \* 256 + $3
4181 if test "$_directfb" = yes; then
4182 cat > $TMPC << EOF
4183 #include <directfb_version.h>
4185 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4188 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4189 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4190 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4191 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4192 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4193 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4194 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4195 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4196 _res_comment="$_directfb_version"
4197 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4198 else
4199 def_directfb_version='#undef DIRECTFBVERSION'
4200 _directfb=no
4201 _res_comment="version >=0.9.13 required"
4203 else
4204 _directfb=no
4205 _res_comment="failed to get version"
4208 echores "$_directfb"
4210 if test "$_directfb" = yes ; then
4211 def_directfb='#define CONFIG_DIRECTFB 1'
4212 _vomodules="directfb $_vomodules"
4213 libs_mplayer="$libs_mplayer -ldirectfb"
4214 else
4215 def_directfb='#undef CONFIG_DIRECTFB'
4216 _novomodules="directfb $_novomodules"
4218 if test "$_dfbmga" = yes; then
4219 _vomodules="dfbmga $_vomodules"
4220 def_dfbmga='#define CONFIG_DFBMGA 1'
4221 else
4222 _novomodules="dfbmga $_novomodules"
4223 def_dfbmga='#undef CONFIG_DFBMGA'
4227 echocheck "X11 headers presence"
4228 _x11_headers="no"
4229 _res_comment="check if the dev(el) packages are installed"
4230 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4231 if test -f "$I/X11/Xlib.h" ; then
4232 _x11_headers="yes"
4233 _res_comment=""
4234 break
4236 done
4237 if test $_cross_compile = no; then
4238 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4239 /usr/include/X11R6 /usr/openwin/include ; do
4240 if test -f "$I/X11/Xlib.h" ; then
4241 extra_cflags="$extra_cflags -I$I"
4242 _x11_headers="yes"
4243 _res_comment="using $I"
4244 break
4246 done
4248 echores "$_x11_headers"
4251 echocheck "X11"
4252 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4253 cat > $TMPC <<EOF
4254 #include <X11/Xlib.h>
4255 #include <X11/Xutil.h>
4256 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4258 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4259 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4260 -L/usr/lib ; do
4261 if netbsd; then
4262 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4263 else
4264 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4266 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4267 && _x11=yes && break
4268 done
4270 if test "$_x11" = yes ; then
4271 def_x11='#define CONFIG_X11 1'
4272 _vomodules="x11 xover $_vomodules"
4273 else
4274 _x11=no
4275 def_x11='#undef CONFIG_X11'
4276 _novomodules="x11 $_novomodules"
4277 _res_comment="check if the dev(el) packages are installed"
4278 # disable stuff that depends on X
4279 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4281 echores "$_x11"
4283 echocheck "Xss screensaver extensions"
4284 if test "$_xss" = auto ; then
4285 cat > $TMPC << EOF
4286 #include <X11/Xlib.h>
4287 #include <X11/extensions/scrnsaver.h>
4288 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4290 _xss=no
4291 cc_check -lXss && _xss=yes
4293 if test "$_xss" = yes ; then
4294 def_xss='#define CONFIG_XSS 1'
4295 libs_mplayer="$libs_mplayer -lXss"
4296 else
4297 def_xss='#undef CONFIG_XSS'
4299 echores "$_xss"
4301 echocheck "DPMS"
4302 _xdpms3=no
4303 _xdpms4=no
4304 if test "$_x11" = yes ; then
4305 cat > $TMPC <<EOF
4306 #include <X11/Xmd.h>
4307 #include <X11/Xlib.h>
4308 #include <X11/Xutil.h>
4309 #include <X11/Xatom.h>
4310 #include <X11/extensions/dpms.h>
4311 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4313 cc_check -lXdpms && _xdpms3=yes
4314 cat > $TMPC <<EOF
4315 #include <X11/Xlib.h>
4316 #include <X11/extensions/dpms.h>
4317 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4319 cc_check -lXext && _xdpms4=yes
4321 if test "$_xdpms4" = yes ; then
4322 def_xdpms='#define CONFIG_XDPMS 1'
4323 _res_comment="using Xdpms 4"
4324 echores "yes"
4325 elif test "$_xdpms3" = yes ; then
4326 def_xdpms='#define CONFIG_XDPMS 1'
4327 libs_mplayer="$libs_mplayer -lXdpms"
4328 _res_comment="using Xdpms 3"
4329 echores "yes"
4330 else
4331 def_xdpms='#undef CONFIG_XDPMS'
4332 echores "no"
4336 echocheck "Xv"
4337 if test "$_xv" = auto ; then
4338 cat > $TMPC <<EOF
4339 #include <X11/Xlib.h>
4340 #include <X11/extensions/Xvlib.h>
4341 int main(void) {
4342 (void) XvGetPortAttribute(0, 0, 0, 0);
4343 (void) XvQueryPortAttributes(0, 0, 0);
4344 return 0; }
4346 _xv=no
4347 cc_check -lXv && _xv=yes
4350 if test "$_xv" = yes ; then
4351 def_xv='#define CONFIG_XV 1'
4352 libs_mplayer="$libs_mplayer -lXv"
4353 _vomodules="xv $_vomodules"
4354 else
4355 def_xv='#undef CONFIG_XV'
4356 _novomodules="xv $_novomodules"
4358 echores "$_xv"
4361 echocheck "XvMC"
4362 if test "$_xv" = yes && test "$_xvmc" != no ; then
4363 _xvmc=no
4364 cat > $TMPC <<EOF
4365 #include <X11/Xlib.h>
4366 #include <X11/extensions/Xvlib.h>
4367 #include <X11/extensions/XvMClib.h>
4368 int main(void) {
4369 (void) XvMCQueryExtension(0,0,0);
4370 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4371 return 0; }
4373 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4374 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4375 done
4377 if test "$_xvmc" = yes ; then
4378 def_xvmc='#define CONFIG_XVMC 1'
4379 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4380 _vomodules="xvmc $_vomodules"
4381 _res_comment="using $_xvmclib"
4382 else
4383 def_xvmc='#define CONFIG_XVMC 0'
4384 _novomodules="xvmc $_novomodules"
4385 _libavdecoders=$(echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER//)
4387 echores "$_xvmc"
4390 echocheck "VDPAU"
4391 if test "$_vdpau" = auto ; then
4392 _vdpau=no
4393 if test "$_dl" = yes ; then
4394 cat > $TMPC <<EOF
4395 #include <vdpau/vdpau_x11.h>
4396 int main(void) {
4397 (void) vdp_device_create_x11(0, 0, 0, 0);
4398 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4400 cc_check -lvdpau && _vdpau=yes
4403 if test "$_vdpau" = yes ; then
4404 def_vdpau='#define CONFIG_VDPAU 1'
4405 libs_mplayer="$libs_mplayer -lvdpau"
4406 _vomodules="vdpau $_vomodules"
4407 else
4408 def_vdpau='#define CONFIG_VDPAU 0'
4409 _novomodules="vdpau $_novomodules"
4410 _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// -e s/MPEG4_VDPAU_DECODER//)
4412 echores "$_vdpau"
4415 echocheck "Xinerama"
4416 if test "$_xinerama" = auto ; then
4417 cat > $TMPC <<EOF
4418 #include <X11/Xlib.h>
4419 #include <X11/extensions/Xinerama.h>
4420 int main(void) { (void) XineramaIsActive(0); return 0; }
4422 _xinerama=no
4423 cc_check -lXinerama && _xinerama=yes
4426 if test "$_xinerama" = yes ; then
4427 def_xinerama='#define CONFIG_XINERAMA 1'
4428 libs_mplayer="$libs_mplayer -lXinerama"
4429 else
4430 def_xinerama='#undef CONFIG_XINERAMA'
4432 echores "$_xinerama"
4435 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4436 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4437 # named 'X extensions' or something similar.
4438 # This check may be useful for future mplayer versions (to change resolution)
4439 # If you run into problems, remove '-lXxf86vm'.
4440 echocheck "Xxf86vm"
4441 if test "$_vm" = auto ; then
4442 cat > $TMPC <<EOF
4443 #include <X11/Xlib.h>
4444 #include <X11/extensions/xf86vmode.h>
4445 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4447 _vm=no
4448 cc_check -lXxf86vm && _vm=yes
4450 if test "$_vm" = yes ; then
4451 def_vm='#define CONFIG_XF86VM 1'
4452 libs_mplayer="$libs_mplayer -lXxf86vm"
4453 else
4454 def_vm='#undef CONFIG_XF86VM'
4456 echores "$_vm"
4458 # Check for the presence of special keycodes, like audio control buttons
4459 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4460 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4461 # have these new keycodes.
4462 echocheck "XF86keysym"
4463 if test "$_xf86keysym" = auto; then
4464 _xf86keysym=no
4465 cat > $TMPC <<EOF
4466 #include <X11/Xlib.h>
4467 #include <X11/XF86keysym.h>
4468 int main(void) { return XF86XK_AudioPause; }
4470 cc_check && _xf86keysym=yes
4472 if test "$_xf86keysym" = yes ; then
4473 def_xf86keysym='#define CONFIG_XF86XK 1'
4474 else
4475 def_xf86keysym='#undef CONFIG_XF86XK'
4477 echores "$_xf86keysym"
4479 echocheck "DGA"
4480 if test "$_dga2" = auto && test "$_x11" = yes ; then
4481 cat > $TMPC << EOF
4482 #include <X11/Xlib.h>
4483 #include <X11/extensions/xf86dga.h>
4484 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4486 _dga2=no
4487 cc_check -lXxf86dga && _dga2=yes
4489 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4490 cat > $TMPC << EOF
4491 #include <X11/Xlib.h>
4492 #include <X11/extensions/xf86dga.h>
4493 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4495 _dga1=no
4496 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4499 _dga=no
4500 def_dga='#undef CONFIG_DGA'
4501 def_dga1='#undef CONFIG_DGA1'
4502 def_dga2='#undef CONFIG_DGA2'
4503 if test "$_dga1" = yes ; then
4504 _dga=yes
4505 def_dga1='#define CONFIG_DGA1 1'
4506 _res_comment="using DGA 1.0"
4507 elif test "$_dga2" = yes ; then
4508 _dga=yes
4509 def_dga2='#define CONFIG_DGA2 1'
4510 _res_comment="using DGA 2.0"
4512 if test "$_dga" = yes ; then
4513 def_dga='#define CONFIG_DGA 1'
4514 libs_mplayer="$libs_mplayer -lXxf86dga"
4515 _vomodules="dga $_vomodules"
4516 else
4517 _novomodules="dga $_novomodules"
4519 echores "$_dga"
4522 echocheck "3dfx"
4523 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4524 def_3dfx='#define CONFIG_3DFX 1'
4525 _vomodules="3dfx $_vomodules"
4526 else
4527 def_3dfx='#undef CONFIG_3DFX'
4528 _novomodules="3dfx $_novomodules"
4530 echores "$_3dfx"
4533 echocheck "VIDIX"
4534 def_vidix='#undef CONFIG_VIDIX'
4535 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4536 _vidix_drv_cyberblade=no
4537 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4538 _vidix_drv_ivtv=no
4539 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4540 _vidix_drv_mach64=no
4541 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4542 _vidix_drv_mga=no
4543 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4544 _vidix_drv_mga_crtc2=no
4545 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4546 _vidix_drv_nvidia=no
4547 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4548 _vidix_drv_pm2=no
4549 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4550 _vidix_drv_pm3=no
4551 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4552 _vidix_drv_radeon=no
4553 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4554 _vidix_drv_rage128=no
4555 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4556 _vidix_drv_s3=no
4557 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4558 _vidix_drv_sh_veu=no
4559 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4560 _vidix_drv_sis=no
4561 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4562 _vidix_drv_unichrome=no
4563 if test "$_vidix" = auto ; then
4564 _vidix=no
4565 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4566 && _vidix=yes
4567 x86_64 && win32 && _vidix=no
4568 (ppc || alpha) && linux && _vidix=yes
4570 echores "$_vidix"
4572 if test "$_vidix" = yes ; then
4573 def_vidix='#define CONFIG_VIDIX 1'
4574 _vomodules="cvidix $_vomodules"
4575 # FIXME: ivtv driver temporarily disabled until we have a proper test
4576 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4577 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4579 # some vidix drivers are architecture and os specific, discard them elsewhere
4580 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4581 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4583 for driver in $_vidix_drivers ; do
4584 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4585 eval _vidix_drv_${driver}=yes
4586 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4587 done
4589 echocheck "VIDIX PCI device name database"
4590 echores "$_vidix_pcidb"
4591 if test "$_vidix_pcidb" = yes ; then
4592 _vidix_pcidb_val=1
4593 else
4594 _vidix_pcidb_val=0
4597 echocheck "VIDIX dhahelper support"
4598 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4599 echores "$_dhahelper"
4601 echocheck "VIDIX svgalib_helper support"
4602 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4603 echores "$_svgalib_helper"
4605 else
4606 _novomodules="cvidix $_novomodules"
4609 if test "$_vidix" = yes && win32; then
4610 winvidix=yes
4611 _vomodules="winvidix $_vomodules"
4612 libs_mplayer="$libs_mplayer -lgdi32"
4613 else
4614 _novomodules="winvidix $_novomodules"
4616 if test "$_vidix" = yes && test "$_x11" = yes; then
4617 xvidix=yes
4618 _vomodules="xvidix $_vomodules"
4619 else
4620 _novomodules="xvidix $_novomodules"
4623 echocheck "/dev/mga_vid"
4624 if test "$_mga" = auto ; then
4625 _mga=no
4626 test -c /dev/mga_vid && _mga=yes
4628 if test "$_mga" = yes ; then
4629 def_mga='#define CONFIG_MGA 1'
4630 _vomodules="mga $_vomodules"
4631 else
4632 def_mga='#undef CONFIG_MGA'
4633 _novomodules="mga $_novomodules"
4635 echores "$_mga"
4637 echocheck "xmga"
4638 if test "$_xmga" = auto ; then
4639 _xmga=no
4640 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
4642 if test "$_xmga" = yes ; then
4643 def_xmga='#define CONFIG_XMGA 1'
4644 _vomodules="xmga $_vomodules"
4645 else
4646 def_xmga='#undef CONFIG_XMGA'
4647 _novomodules="xmga $_novomodules"
4649 echores "$_xmga"
4652 echocheck "GGI"
4653 if test "$_ggi" = auto ; then
4654 cat > $TMPC << EOF
4655 #include <ggi/ggi.h>
4656 int main(void) { ggiInit(); return 0; }
4658 _ggi=no
4659 cc_check -lggi && _ggi=yes
4661 if test "$_ggi" = yes ; then
4662 def_ggi='#define CONFIG_GGI 1'
4663 libs_mplayer="$libs_mplayer -lggi"
4664 _vomodules="ggi $_vomodules"
4665 else
4666 def_ggi='#undef CONFIG_GGI'
4667 _novomodules="ggi $_novomodules"
4669 echores "$_ggi"
4671 echocheck "GGI extension: libggiwmh"
4672 if test "$_ggiwmh" = auto ; then
4673 _ggiwmh=no
4674 cat > $TMPC << EOF
4675 #include <ggi/ggi.h>
4676 #include <ggi/wmh.h>
4677 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4679 cc_check -lggi -lggiwmh && _ggiwmh=yes
4681 # needed to get right output on obscure combination
4682 # like --disable-ggi --enable-ggiwmh
4683 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4684 def_ggiwmh='#define CONFIG_GGIWMH 1'
4685 libs_mplayer="$libs_mplayer -lggiwmh"
4686 else
4687 _ggiwmh=no
4688 def_ggiwmh='#undef CONFIG_GGIWMH'
4690 echores "$_ggiwmh"
4693 echocheck "AA"
4694 if test "$_aa" = auto ; then
4695 cat > $TMPC << EOF
4696 #include <aalib.h>
4697 extern struct aa_hardware_params aa_defparams;
4698 extern struct aa_renderparams aa_defrenderparams;
4699 int main(void) {
4700 aa_context *c;
4701 aa_renderparams *p;
4702 (void) aa_init(0, 0, 0);
4703 c = aa_autoinit(&aa_defparams);
4704 p = aa_getrenderparams();
4705 aa_autoinitkbd(c,0);
4706 return 0; }
4708 _aa=no
4709 for _ld_tmp in "-laa" ; do
4710 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4711 done
4713 if test "$_aa" = yes ; then
4714 def_aa='#define CONFIG_AA 1'
4715 if cygwin ; then
4716 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4718 _vomodules="aa $_vomodules"
4719 else
4720 def_aa='#undef CONFIG_AA'
4721 _novomodules="aa $_novomodules"
4723 echores "$_aa"
4726 echocheck "CACA"
4727 if test "$_caca" = auto ; then
4728 _caca=no
4729 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4730 cat > $TMPC << EOF
4731 #include <caca.h>
4732 #ifdef CACA_API_VERSION_1
4733 #include <caca0.h>
4734 #endif
4735 int main(void) { (void) caca_init(); return 0; }
4737 cc_check $(caca-config --libs) && _caca=yes
4740 if test "$_caca" = yes ; then
4741 def_caca='#define CONFIG_CACA 1'
4742 extra_cflags="$extra_cflags $(caca-config --cflags)"
4743 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4744 _vomodules="caca $_vomodules"
4745 else
4746 def_caca='#undef CONFIG_CACA'
4747 _novomodules="caca $_novomodules"
4749 echores "$_caca"
4752 echocheck "SVGAlib"
4753 if test "$_svga" = auto ; then
4754 cat > $TMPC << EOF
4755 #include <vga.h>
4756 int main(void) { return 0; }
4758 _svga=no
4759 cc_check -lvga $_ld_lm && _svga=yes
4761 if test "$_svga" = yes ; then
4762 def_svga='#define CONFIG_SVGALIB 1'
4763 libs_mplayer="$libs_mplayer -lvga"
4764 _vomodules="svga $_vomodules"
4765 else
4766 def_svga='#undef CONFIG_SVGALIB'
4767 _novomodules="svga $_novomodules"
4769 echores "$_svga"
4772 echocheck "FBDev"
4773 if test "$_fbdev" = auto ; then
4774 _fbdev=no
4775 linux && _fbdev=yes
4777 if test "$_fbdev" = yes ; then
4778 def_fbdev='#define CONFIG_FBDEV 1'
4779 _vomodules="fbdev $_vomodules"
4780 else
4781 def_fbdev='#undef CONFIG_FBDEV'
4782 _novomodules="fbdev $_novomodules"
4784 echores "$_fbdev"
4788 echocheck "DVB"
4789 if test "$_dvb" = auto ; then
4790 _dvb=no
4791 cat >$TMPC << EOF
4792 #include <poll.h>
4793 #include <sys/ioctl.h>
4794 #include <stdio.h>
4795 #include <time.h>
4796 #include <unistd.h>
4797 #include <ost/dmx.h>
4798 #include <ost/frontend.h>
4799 #include <ost/sec.h>
4800 #include <ost/video.h>
4801 #include <ost/audio.h>
4802 int main(void) {return 0;}
4804 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4805 cc_check $_inc_tmp && _dvb=yes && \
4806 extra_cflags="$extra_cflags $_inc_tmp" && break
4807 done
4809 echores "$_dvb"
4810 if test "$_dvb" = yes ; then
4811 def_dvb='#define CONFIG_DVB 1'
4812 def_dvbin='#define CONFIG_DVBIN 1'
4813 _aomodules="mpegpes(dvb) $_aomodules"
4814 _vomodules="mpegpes(dvb) $_vomodules"
4817 echocheck "DVB HEAD"
4818 if test "$_dvbhead" = auto ; then
4819 _dvbhead=no
4821 cat >$TMPC << EOF
4822 #include <poll.h>
4823 #include <sys/ioctl.h>
4824 #include <stdio.h>
4825 #include <time.h>
4826 #include <unistd.h>
4827 #include <linux/dvb/dmx.h>
4828 #include <linux/dvb/frontend.h>
4829 #include <linux/dvb/video.h>
4830 #include <linux/dvb/audio.h>
4831 int main(void) {return 0;}
4833 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4834 cc_check $_inc_tmp && _dvbhead=yes && \
4835 extra_cflags="$extra_cflags $_inc_tmp" && break
4836 done
4838 echores "$_dvbhead"
4839 if test "$_dvbhead" = yes ; then
4840 def_dvb='#define CONFIG_DVB 1'
4841 def_dvb_head='#define CONFIG_DVB_HEAD 1'
4842 def_dvbin='#define CONFIG_DVBIN 1'
4843 _aomodules="mpegpes(dvb) $_aomodules"
4844 _vomodules="mpegpes(dvb) $_vomodules"
4847 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4848 def_dvb='#undef CONFIG_DVB'
4849 def_dvb_head='#undef CONFIG_DVB_HEAD'
4850 def_dvbin='#undef CONFIG_DVBIN '
4851 _aomodules="mpegpes(file) $_aomodules"
4852 _vomodules="mpegpes(file) $_vomodules"
4855 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4856 _dvbin=yes
4857 _inputmodules="dvb $_inputmodules"
4858 else
4859 _dvbin=no
4860 _noinputmodules="dvb $_noinputmodules"
4864 if darwin; then
4866 echocheck "QuickTime"
4867 if test "$quicktime" = auto ; then
4868 cat > $TMPC <<EOF
4869 #include <QuickTime/QuickTime.h>
4870 int main(void) {
4871 ImageDescription *desc;
4872 EnterMovies();
4873 ExitMovies();
4874 return 0;
4877 quicktime=no
4878 cc_check -framework QuickTime && quicktime=yes
4880 if test "$quicktime" = yes ; then
4881 extra_ldflags="$extra_ldflags -framework QuickTime"
4882 def_quicktime='#define CONFIG_QUICKTIME 1'
4883 else
4884 def_quicktime='#undef CONFIG_QUICKTIME'
4885 _quartz=no
4887 echores $quicktime
4889 echocheck "Quartz"
4890 if test "$_quartz" = auto ; then
4891 cat > $TMPC <<EOF
4892 #include <Carbon/Carbon.h>
4893 int main(void) {
4894 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4895 return 0;
4898 _quartz=no
4899 cc_check -framework Carbon && _quartz=yes
4901 if test "$_quartz" = yes ; then
4902 libs_mplayer="$libs_mplayer -framework Carbon"
4903 def_quartz='#define CONFIG_QUARTZ 1'
4904 _vomodules="quartz $_vomodules"
4905 else
4906 def_quartz='#undef CONFIG_QUARTZ'
4907 _novomodules="quartz $_novomodules"
4909 echores $_quartz
4911 echocheck "CoreVideo"
4912 if test "$_corevideo" = auto ; then
4913 cat > $TMPC <<EOF
4914 #include <Carbon/Carbon.h>
4915 #include <CoreServices/CoreServices.h>
4916 #include <OpenGL/OpenGL.h>
4917 #include <QuartzCore/CoreVideo.h>
4918 int main(void) { return 0; }
4920 _corevideo=no
4921 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4923 if test "$_corevideo" = yes ; then
4924 _vomodules="corevideo $_vomodules"
4925 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4926 def_corevideo='#define CONFIG_COREVIDEO 1'
4927 else
4928 _novomodules="corevideo $_novomodules"
4929 def_corevideo='#undef CONFIG_COREVIDEO'
4931 echores "$_corevideo"
4933 fi #if darwin
4936 # make sure this stays below CoreVideo to avoid issues due to namespace
4937 # conflicts between -lGL and -framework OpenGL
4938 echocheck "OpenGL"
4939 #Note: this test is run even with --enable-gl since we autodetect linker flags
4940 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4941 cat > $TMPC << EOF
4942 #ifdef GL_WIN32
4943 #include <windows.h>
4944 #include <GL/gl.h>
4945 #else
4946 #include <GL/gl.h>
4947 #include <X11/Xlib.h>
4948 #include <GL/glx.h>
4949 #endif
4950 int main(void) {
4951 #ifdef GL_WIN32
4952 HDC dc;
4953 wglCreateContext(dc);
4954 #else
4955 glXCreateContext(NULL, NULL, NULL, True);
4956 #endif
4957 glFinish();
4958 return 0;
4961 _gl=no
4962 for _ld_tmp in -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4963 if cc_check $_ld_tmp $_ld_lm ; then
4964 _gl=yes
4965 _gl_x11=yes
4966 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4967 break
4969 done
4970 if cc_check -DGL_WIN32 -lopengl32 ; then
4971 _gl=yes
4972 _gl_win32=yes
4973 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4975 else
4976 _gl=no
4978 if test "$_gl" = yes ; then
4979 def_gl='#define CONFIG_GL 1'
4980 _res_comment="backends:"
4981 if test "$_gl_win32" = yes ; then
4982 def_gl_win32='#define CONFIG_GL_WIN32 1'
4983 _res_comment="$_res_comment win32"
4985 if test "$_gl_x11" = yes ; then
4986 def_gl_x11='#define CONFIG_GL_X11 1'
4987 _res_comment="$_res_comment x11"
4989 _vomodules="opengl $_vomodules"
4990 else
4991 def_gl='#undef CONFIG_GL'
4992 def_gl_win32='#undef CONFIG_GL_WIN32'
4993 def_gl_x11='#undef CONFIG_GL_X11'
4994 _novomodules="opengl $_novomodules"
4996 echores "$_gl"
4999 echocheck "MatrixView"
5000 if test "$_gl" = no ; then
5001 matrixview=no
5003 if test "$matrixview" = yes ; then
5004 _vomodules="matrixview $_vomodules"
5005 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5006 else
5007 _novomodules="matrixview $_novomodules"
5008 def_matrixview='#undef CONFIG_MATRIXVIEW'
5010 echores "$matrixview"
5013 echocheck "PNG support"
5014 if test "$_png" = auto ; then
5015 _png=no
5016 if irix ; then
5017 # Don't check for -lpng on irix since it has its own libpng
5018 # incompatible with the GNU libpng
5019 _res_comment="disabled on irix (not GNU libpng)"
5020 else
5021 cat > $TMPC << EOF
5022 #include <png.h>
5023 #include <string.h>
5024 int main(void) {
5025 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
5026 printf("libpng: %s\n", png_libpng_ver);
5027 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
5030 cc_check -lpng -lz $_ld_lm && _png=yes
5033 echores "$_png"
5034 if test "$_png" = yes ; then
5035 def_png='#define CONFIG_PNG 1'
5036 extra_ldflags="$extra_ldflags -lpng -lz"
5037 else
5038 def_png='#undef CONFIG_PNG'
5041 echocheck "MNG support"
5042 if test "$_mng" = auto ; then
5043 _mng=no
5044 cat > $TMPC << EOF
5045 #include <libmng.h>
5046 int main(void) {
5047 const char * p_ver = mng_version_text();
5048 return !p_ver || p_ver[0] == 0;
5051 if cc_check -lmng -lz $_ld_lm ; then
5052 _mng=yes
5055 echores "$_mng"
5056 if test "$_mng" = yes ; then
5057 def_mng='#define CONFIG_MNG 1'
5058 extra_ldflags="$extra_ldflags -lmng -lz"
5059 else
5060 def_mng='#undef CONFIG_MNG'
5063 echocheck "JPEG support"
5064 if test "$_jpeg" = auto ; then
5065 _jpeg=no
5066 cat > $TMPC << EOF
5067 #include <stdio.h>
5068 #include <stdlib.h>
5069 #include <setjmp.h>
5070 #include <string.h>
5071 #include <jpeglib.h>
5072 int main(void) { return 0; }
5074 cc_check -ljpeg $_ld_lm && _jpeg=yes
5076 echores "$_jpeg"
5078 if test "$_jpeg" = yes ; then
5079 def_jpeg='#define CONFIG_JPEG 1'
5080 _vomodules="jpeg $_vomodules"
5081 extra_ldflags="$extra_ldflags -ljpeg"
5082 else
5083 def_jpeg='#undef CONFIG_JPEG'
5084 _novomodules="jpeg $_novomodules"
5088 echocheck "OpenJPEG (JPEG2000) support"
5089 if test "$libopenjpeg" = auto ; then
5090 libopenjpeg=no
5091 cat > $TMPC << EOF
5092 #define OPJ_STATIC
5093 #include <openjpeg.h>
5094 int main(void) { opj_dparameters_t dec_params; opj_set_default_decoder_parameters(&dec_params); return 0; }
5096 cc_check -lopenjpeg $_ld_lm && libopenjpeg=yes
5098 echores "$libopenjpeg"
5099 if test "$libopenjpeg" = yes ; then
5100 def_libopenjpeg='#define CONFIG_LIBOPENJPEG 1'
5101 extra_ldflags="$extra_ldflags -lopenjpeg"
5102 _libavdecoders="$_libavdecoders LIBOPENJPEG_DECODER"
5103 _libavencoders="$_libavencoders LIBOPENJPEG_ENCODER"
5104 _codecmodules="OpenJPEG $_codecmodules"
5105 else
5106 def_libopenjpeg='#define CONFIG_LIBOPENJPEG 0'
5107 _nocodecmodules="OpenJPEG $_nocodecmodules"
5111 echocheck "PNM support"
5112 if test "$_pnm" = yes; then
5113 def_pnm="#define CONFIG_PNM 1"
5114 _vomodules="pnm $_vomodules"
5115 else
5116 def_pnm="#undef CONFIG_PNM"
5117 _novomodules="pnm $_novomodules"
5119 echores "$_pnm"
5123 echocheck "GIF support"
5124 # This is to appease people who want to force gif support.
5125 # If it is forced to yes, then we still do checks to determine
5126 # which gif library to use.
5127 if test "$_gif" = yes ; then
5128 _force_gif=yes
5129 _gif=auto
5132 if test "$_gif" = auto ; then
5133 _gif=no
5134 cat > $TMPC << EOF
5135 #include <gif_lib.h>
5136 int main(void) { return 0; }
5138 for _ld_gif in "-lungif" "-lgif" ; do
5139 cc_check $_ld_gif && _gif=yes && break
5140 done
5143 # If no library was found, and the user wants support forced,
5144 # then we force it on with libgif, as this is the safest
5145 # assumption IMHO. (libungif & libregif both create symbolic
5146 # links to libgif. We also assume that no x11 support is needed,
5147 # because if you are forcing this, then you _should_ know what
5148 # you are doing. [ Besides, package maintainers should never
5149 # have compiled x11 deps into libungif in the first place. ] )
5150 # </rant>
5151 # --Joey
5152 if test "$_force_gif" = yes && test "$_gif" = no ; then
5153 _gif=yes
5154 _ld_gif="-lgif"
5157 if test "$_gif" = yes ; then
5158 def_gif='#define CONFIG_GIF 1'
5159 _codecmodules="gif $_codecmodules"
5160 _vomodules="gif89a $_vomodules"
5161 _res_comment="old version, some encoding functions disabled"
5162 def_gif_4='#undef CONFIG_GIF_4'
5163 extra_ldflags="$extra_ldflags $_ld_gif"
5165 cat > $TMPC << EOF
5166 #include <signal.h>
5167 #include <gif_lib.h>
5168 void catch() { exit(1); }
5169 int main(void) {
5170 signal(SIGSEGV, catch); // catch segfault
5171 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
5172 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
5173 return 0;
5176 if cc_check "$_ld_gif" ; then
5177 def_gif_4='#define CONFIG_GIF_4 1'
5178 _res_comment=""
5180 else
5181 def_gif='#undef CONFIG_GIF'
5182 def_gif_4='#undef CONFIG_GIF_4'
5183 _novomodules="gif89a $_novomodules"
5184 _nocodecmodules="gif $_nocodecmodules"
5186 echores "$_gif"
5189 case "$_gif" in yes*)
5190 echocheck "broken giflib workaround"
5191 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5193 cat > $TMPC << EOF
5194 #include <gif_lib.h>
5195 int main(void) {
5196 GifFileType gif;
5197 printf("UserData is at address %p\n", gif.UserData);
5198 return 0;
5201 if cc_check "$_ld_gif" ; then
5202 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5203 echores "disabled"
5204 else
5205 echores "enabled"
5208 esac
5211 echocheck "VESA support"
5212 if test "$_vesa" = auto ; then
5213 cat > $TMPC << EOF
5214 #include <vbe.h>
5215 int main(void) { vbeVersion(); return 0; }
5217 _vesa=no
5218 cc_check -lvbe -llrmi && _vesa=yes
5220 if test "$_vesa" = yes ; then
5221 def_vesa='#define CONFIG_VESA 1'
5222 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5223 _vomodules="vesa $_vomodules"
5224 else
5225 def_vesa='#undef CONFIG_VESA'
5226 _novomodules="vesa $_novomodules"
5228 echores "$_vesa"
5230 #################
5231 # VIDEO + AUDIO #
5232 #################
5235 echocheck "SDL"
5236 _inc_tmp=""
5237 _ld_tmp=""
5238 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5239 if test -z "$_sdlconfig" ; then
5240 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5241 _sdlconfig="sdl-config"
5242 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5243 _sdlconfig="sdl11-config"
5244 else
5245 _sdlconfig=false
5248 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5249 cat > $TMPC << EOF
5250 #ifdef CONFIG_SDL_SDL_H
5251 #include <SDL/SDL.h>
5252 #else
5253 #include <SDL.h>
5254 #endif
5255 #ifndef __APPLE__
5256 // we allow SDL hacking our main() only on OSX
5257 #undef main
5258 #endif
5259 int main(int argc, char *argv[]) {
5260 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5261 return 0;
5264 _sdl=no
5265 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" ; do
5266 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5267 _sdl=yes
5268 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5269 break
5271 done
5272 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5273 _res_comment="using $_sdlconfig"
5274 if cygwin ; then
5275 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5276 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5277 elif mingw32 ; then
5278 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5279 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5280 else
5281 _inc_tmp="$($_sdlconfig --cflags)"
5282 _ld_tmp="$($_sdlconfig --libs)"
5284 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5285 _sdlversion=$($_sdlconfig --version | sed 's/[^0-9]//g')
5286 if test "$_sdlversion" -gt 116 ; then
5287 if test "$_sdlversion" -lt 121 ; then
5288 def_sdlbuggy='#define BUGGY_SDL'
5289 else
5290 def_sdlbuggy='#undef BUGGY_SDL'
5292 _sdl=yes
5297 if test "$_sdl" = yes ; then
5298 def_sdl='#define CONFIG_SDL 1'
5299 extra_cflags="$extra_cflags $_inc_tmp"
5300 libs_mplayer="$libs_mplayer $_ld_tmp"
5301 _vomodules="sdl $_vomodules"
5302 _aomodules="sdl $_aomodules"
5303 else
5304 def_sdl='#undef CONFIG_SDL'
5305 _novomodules="sdl $_novomodules"
5306 _noaomodules="sdl $_noaomodules"
5308 echores "$_sdl"
5311 if os2 ; then
5312 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5313 if test "$_kva" = auto; then
5314 cat > $TMPC << EOF
5315 #include <os2.h>
5316 #include <kva.h>
5317 int main( void ) { return 0; }
5319 _kva=no;
5320 cc_check -lkva && _kva=yes
5322 if test "$_kva" = yes ; then
5323 def_kva='#define CONFIG_KVA 1'
5324 libs_mplayer="$libs_mplayer -lkva"
5325 _vomodules="kva $_vomodules"
5326 else
5327 def_kva='#undef CONFIG_KVA'
5328 _novomodules="kva $_novomodules"
5330 echores "$_kva"
5331 fi #if os2
5334 if win32; then
5336 echocheck "Windows waveout"
5337 if test "$_win32waveout" = auto ; then
5338 cat > $TMPC << EOF
5339 #include <windows.h>
5340 #include <mmsystem.h>
5341 int main(void) { return 0; }
5343 _win32waveout=no
5344 cc_check -lwinmm && _win32waveout=yes
5346 if test "$_win32waveout" = yes ; then
5347 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5348 libs_mplayer="$libs_mplayer -lwinmm"
5349 _aomodules="win32 $_aomodules"
5350 else
5351 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5352 _noaomodules="win32 $_noaomodules"
5354 echores "$_win32waveout"
5356 echocheck "Direct3D"
5357 if test "$_direct3d" = auto ; then
5358 cat > $TMPC << EOF
5359 #include <windows.h>
5360 #include <d3d9.h>
5361 int main(void) { return 0; }
5363 _direct3d=no
5364 cc_check && _direct3d=yes
5366 if test "$_direct3d" = yes ; then
5367 def_direct3d='#define CONFIG_DIRECT3D 1'
5368 _vomodules="direct3d $_vomodules"
5369 else
5370 def_direct3d='#undef CONFIG_DIRECT3D'
5371 _novomodules="direct3d $_novomodules"
5373 echores "$_direct3d"
5375 echocheck "Directx"
5376 if test "$_directx" = auto ; then
5377 cat > $TMPC << EOF
5378 #include <windows.h>
5379 #include <ddraw.h>
5380 #include <dsound.h>
5381 int main(void) { return 0; }
5383 _directx=no
5384 cc_check -lgdi32 && _directx=yes
5386 if test "$_directx" = yes ; then
5387 def_directx='#define CONFIG_DIRECTX 1'
5388 libs_mplayer="$libs_mplayer -lgdi32"
5389 _vomodules="directx $_vomodules"
5390 _aomodules="dsound $_aomodules"
5391 else
5392 def_directx='#undef CONFIG_DIRECTX'
5393 _novomodules="directx $_novomodules"
5394 _noaomodules="dsound $_noaomodules"
5396 echores "$_directx"
5398 fi #if win32; then
5401 echocheck "DXR2"
5402 if test "$_dxr2" = auto; then
5403 _dxr2=no
5404 cat > $TMPC << EOF
5405 #include <dxr2ioctl.h>
5406 int main(void) { return 0; }
5408 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5409 cc_check $_inc_tmp && _dxr2=yes && \
5410 extra_cflags="$extra_cflags $_inc_tmp" && break
5411 done
5413 if test "$_dxr2" = yes; then
5414 def_dxr2='#define CONFIG_DXR2 1'
5415 _aomodules="dxr2 $_aomodules"
5416 _vomodules="dxr2 $_vomodules"
5417 else
5418 def_dxr2='#undef CONFIG_DXR2'
5419 _noaomodules="dxr2 $_noaomodules"
5420 _novomodules="dxr2 $_novomodules"
5422 echores "$_dxr2"
5424 echocheck "DXR3/H+"
5425 if test "$_dxr3" = auto ; then
5426 cat > $TMPC << EOF
5427 #include <linux/em8300.h>
5428 int main(void) { return 0; }
5430 _dxr3=no
5431 cc_check && _dxr3=yes
5433 if test "$_dxr3" = yes ; then
5434 def_dxr3='#define CONFIG_DXR3 1'
5435 _vomodules="dxr3 $_vomodules"
5436 else
5437 def_dxr3='#undef CONFIG_DXR3'
5438 _novomodules="dxr3 $_novomodules"
5440 echores "$_dxr3"
5443 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5444 if test "$_ivtv" = auto ; then
5445 cat > $TMPC << EOF
5446 #include <stdlib.h>
5447 #include <inttypes.h>
5448 #include <linux/types.h>
5449 #include <linux/videodev2.h>
5450 #include <linux/ivtv.h>
5451 #include <sys/ioctl.h>
5452 int main(void) {
5453 struct ivtv_cfg_stop_decode sd;
5454 struct ivtv_cfg_start_decode sd1;
5455 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5456 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5457 return 0; }
5459 _ivtv=no
5460 cc_check && _ivtv=yes
5462 if test "$_ivtv" = yes ; then
5463 def_ivtv='#define CONFIG_IVTV 1'
5464 _vomodules="ivtv $_vomodules"
5465 _aomodules="ivtv $_aomodules"
5466 else
5467 def_ivtv='#undef CONFIG_IVTV'
5468 _novomodules="ivtv $_novomodules"
5469 _noaomodules="ivtv $_noaomodules"
5471 echores "$_ivtv"
5474 echocheck "V4L2 MPEG Decoder"
5475 if test "$_v4l2" = auto ; then
5476 cat > $TMPC << EOF
5477 #include <stdlib.h>
5478 #include <inttypes.h>
5479 #include <linux/types.h>
5480 #include <linux/videodev2.h>
5481 #include <linux/version.h>
5482 int main(void) {
5483 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5484 #error kernel headers too old, need 2.6.22
5485 #endif
5486 struct v4l2_ext_controls ctrls;
5487 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5488 return 0;
5491 _v4l2=no
5492 cc_check && _v4l2=yes
5494 if test "$_v4l2" = yes ; then
5495 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5496 _vomodules="v4l2 $_vomodules"
5497 _aomodules="v4l2 $_aomodules"
5498 else
5499 def_v4l2='#undef CONFIG_V4L2_DECODER'
5500 _novomodules="v4l2 $_novomodules"
5501 _noaomodules="v4l2 $_noaomodules"
5503 echores "$_v4l2"
5507 #########
5508 # AUDIO #
5509 #########
5512 echocheck "OSS Audio"
5513 if test "$_ossaudio" = auto ; then
5514 cat > $TMPC << EOF
5515 #include <sys/ioctl.h>
5516 #include <$_soundcard_header>
5517 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5519 _ossaudio=no
5520 cc_check && _ossaudio=yes
5522 if test "$_ossaudio" = yes ; then
5523 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5524 _aomodules="oss $_aomodules"
5525 if test "$_linux_devfs" = yes; then
5526 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5527 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5528 else
5529 cat > $TMPC << EOF
5530 #include <sys/ioctl.h>
5531 #include <$_soundcard_header>
5532 #ifdef OPEN_SOUND_SYSTEM
5533 int main(void) { return 0; }
5534 #else
5535 #error Not the real thing
5536 #endif
5538 _real_ossaudio=no
5539 cc_check && _real_ossaudio=yes
5540 if test "$_real_ossaudio" = yes; then
5541 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5542 elif netbsd || openbsd ; then
5543 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5544 extra_ldflags="$extra_ldflags -lossaudio"
5545 else
5546 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5548 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5550 else
5551 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5552 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5553 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5554 _noaomodules="oss $_noaomodules"
5556 echores "$_ossaudio"
5559 echocheck "aRts"
5560 if test "$_arts" = auto ; then
5561 _arts=no
5562 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5564 cat > $TMPC << EOF
5565 #include <artsc.h>
5566 int main(void) { return 0; }
5568 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5573 if test "$_arts" = yes ; then
5574 def_arts='#define CONFIG_ARTS 1'
5575 _aomodules="arts $_aomodules"
5576 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5577 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5578 else
5579 _noaomodules="arts $_noaomodules"
5581 echores "$_arts"
5584 echocheck "EsounD"
5585 if test "$_esd" = auto ; then
5586 _esd=no
5587 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5589 cat > $TMPC << EOF
5590 #include <esd.h>
5591 int main(void) { int fd = esd_open_sound("test"); return fd; }
5593 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5597 echores "$_esd"
5599 if test "$_esd" = yes ; then
5600 def_esd='#define CONFIG_ESD 1'
5601 _aomodules="esd $_aomodules"
5602 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5603 extra_cflags="$extra_cflags $(esd-config --cflags)"
5605 echocheck "esd_get_latency()"
5606 cat > $TMPC << EOF
5607 #include <esd.h>
5608 int main(void) { return esd_get_latency(0); }
5610 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5611 echores "$_esd_latency"
5612 else
5613 def_esd='#undef CONFIG_ESD'
5614 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5615 _noaomodules="esd $_noaomodules"
5619 echocheck "NAS"
5620 if test "$_nas" = auto ; then
5621 cat > $TMPC << EOF
5622 #include <audio/audiolib.h>
5623 int main(void) { return 0; }
5625 _nas=no
5626 cc_check $_ld_lm -laudio -lXt && _nas=yes
5628 if test "$_nas" = yes ; then
5629 def_nas='#define CONFIG_NAS 1'
5630 libs_mplayer="$libs_mplayer -laudio -lXt"
5631 _aomodules="nas $_aomodules"
5632 else
5633 _noaomodules="nas $_noaomodules"
5634 def_nas='#undef CONFIG_NAS'
5636 echores "$_nas"
5639 echocheck "pulse"
5640 if test "$_pulse" = auto ; then
5641 _pulse=no
5642 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5644 cat > $TMPC << EOF
5645 #include <pulse/pulseaudio.h>
5646 int main(void) { return 0; }
5648 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5652 echores "$_pulse"
5654 if test "$_pulse" = yes ; then
5655 def_pulse='#define CONFIG_PULSE 1'
5656 _aomodules="pulse $_aomodules"
5657 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5658 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5659 else
5660 def_pulse='#undef CONFIG_PULSE'
5661 _noaomodules="pulse $_noaomodules"
5665 echocheck "JACK"
5666 if test "$_jack" = auto ; then
5667 _jack=yes
5669 cat > $TMPC << EOF
5670 #include <jack/jack.h>
5671 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5673 if cc_check -ljack ; then
5674 libs_mplayer="$libs_mplayer -ljack"
5675 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5676 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5677 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5678 else
5679 _jack=no
5683 if test "$_jack" = yes ; then
5684 def_jack='#define CONFIG_JACK 1'
5685 _aomodules="jack $_aomodules"
5686 else
5687 _noaomodules="jack $_noaomodules"
5689 echores "$_jack"
5691 echocheck "OpenAL"
5692 if test "$_openal" = auto ; then
5693 _openal=no
5694 cat > $TMPC << EOF
5695 #ifdef OPENAL_AL_H
5696 #include <OpenAL/al.h>
5697 #else
5698 #include <AL/al.h>
5699 #endif
5700 int main(void) {
5701 alSourceQueueBuffers(0, 0, 0);
5702 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5703 return 0;
5706 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5707 cc_check $I && _openal=yes && break
5708 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5709 done
5710 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5712 if test "$_openal" = yes ; then
5713 def_openal='#define CONFIG_OPENAL 1'
5714 _aomodules="openal $_aomodules"
5715 else
5716 _noaomodules="openal $_noaomodules"
5718 echores "$_openal"
5720 echocheck "ALSA audio"
5721 if test "$_alloca" != yes ; then
5722 _alsa=no
5723 _res_comment="alloca missing"
5725 if test "$_alsa" != no ; then
5726 _alsa=no
5727 cat > $TMPC << EOF
5728 #include <sys/time.h>
5729 #include <sys/asoundlib.h>
5730 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5731 #error "alsa version != 0.5.x"
5732 #endif
5733 int main(void) { return 0; }
5735 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5737 cat > $TMPC << EOF
5738 #include <sys/time.h>
5739 #include <sys/asoundlib.h>
5740 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5741 #error "alsa version != 0.9.x"
5742 #endif
5743 int main(void) { return 0; }
5745 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5746 cat > $TMPC << EOF
5747 #include <sys/time.h>
5748 #include <alsa/asoundlib.h>
5749 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5750 #error "alsa version != 0.9.x"
5751 #endif
5752 int main(void) { return 0; }
5754 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5756 cat > $TMPC << EOF
5757 #include <sys/time.h>
5758 #include <sys/asoundlib.h>
5759 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5760 #error "alsa version != 1.0.x"
5761 #endif
5762 int main(void) { return 0; }
5764 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5765 cat > $TMPC << EOF
5766 #include <sys/time.h>
5767 #include <alsa/asoundlib.h>
5768 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5769 #error "alsa version != 1.0.x"
5770 #endif
5771 int main(void) { return 0; }
5773 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5775 def_alsa='#undef CONFIG_ALSA'
5776 def_alsa5='#undef CONFIG_ALSA5'
5777 def_alsa9='#undef CONFIG_ALSA9'
5778 def_alsa1x='#undef CONFIG_ALSA1X'
5779 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5780 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5781 if test "$_alsaver" ; then
5782 _alsa=yes
5783 if test "$_alsaver" = '0.5.x' ; then
5784 _alsa5=yes
5785 _aomodules="alsa5 $_aomodules"
5786 def_alsa5='#define CONFIG_ALSA5 1'
5787 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5788 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5789 elif test "$_alsaver" = '0.9.x-sys' ; then
5790 _alsa9=yes
5791 _aomodules="alsa $_aomodules"
5792 def_alsa='#define CONFIG_ALSA 1'
5793 def_alsa9='#define CONFIG_ALSA9 1'
5794 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5795 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5796 elif test "$_alsaver" = '0.9.x-alsa' ; then
5797 _alsa9=yes
5798 _aomodules="alsa $_aomodules"
5799 def_alsa='#define CONFIG_ALSA 1'
5800 def_alsa9='#define CONFIG_ALSA9 1'
5801 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5802 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5803 elif test "$_alsaver" = '1.0.x-sys' ; then
5804 _alsa1x=yes
5805 _aomodules="alsa $_aomodules"
5806 def_alsa='#define CONFIG_ALSA 1'
5807 def_alsa1x="#define CONFIG_ALSA1X 1"
5808 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5809 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5810 elif test "$_alsaver" = '1.0.x-alsa' ; then
5811 _alsa1x=yes
5812 _aomodules="alsa $_aomodules"
5813 def_alsa='#define CONFIG_ALSA 1'
5814 def_alsa1x="#define CONFIG_ALSA1X 1"
5815 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5816 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5817 else
5818 _alsa=no
5819 _res_comment="unknown version"
5821 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5822 else
5823 _noaomodules="alsa $_noaomodules"
5825 echores "$_alsa"
5828 echocheck "Sun audio"
5829 if test "$_sunaudio" = auto ; then
5830 cat > $TMPC << EOF
5831 #include <sys/types.h>
5832 #include <sys/audioio.h>
5833 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5835 _sunaudio=no
5836 cc_check && _sunaudio=yes
5838 if test "$_sunaudio" = yes ; then
5839 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5840 _aomodules="sun $_aomodules"
5841 else
5842 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5843 _noaomodules="sun $_noaomodules"
5845 echores "$_sunaudio"
5848 def_mlib='#define CONFIG_MLIB 0'
5849 if sunos; then
5850 echocheck "Sun mediaLib"
5851 if test "$_mlib" = auto ; then
5852 _mlib=no
5853 cat > $TMPC << EOF
5854 #include <mlib.h>
5855 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5857 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5859 echores "$_mlib"
5860 fi #if sunos
5863 if darwin; then
5864 echocheck "CoreAudio"
5865 if test "$_coreaudio" = auto ; then
5866 cat > $TMPC <<EOF
5867 #include <CoreAudio/CoreAudio.h>
5868 #include <AudioToolbox/AudioToolbox.h>
5869 #include <AudioUnit/AudioUnit.h>
5870 int main(void) { return 0; }
5872 _coreaudio=no
5873 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5875 if test "$_coreaudio" = yes ; then
5876 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5877 def_coreaudio='#define CONFIG_COREAUDIO 1'
5878 _aomodules="coreaudio $_aomodules"
5879 else
5880 def_coreaudio='#undef CONFIG_COREAUDIO'
5881 _noaomodules="coreaudio $_noaomodules"
5883 echores $_coreaudio
5884 fi #if darwin
5887 if irix; then
5888 echocheck "SGI audio"
5889 if test "$_sgiaudio" = auto ; then
5890 # check for SGI audio
5891 cat > $TMPC << EOF
5892 #include <dmedia/audio.h>
5893 int main(void) { return 0; }
5895 _sgiaudio=no
5896 cc_check && _sgiaudio=yes
5898 if test "$_sgiaudio" = "yes" ; then
5899 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5900 libs_mplayer="$libs_mplayer -laudio"
5901 _aomodules="sgi $_aomodules"
5902 else
5903 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5904 _noaomodules="sgi $_noaomodules"
5906 echores "$_sgiaudio"
5907 fi #if irix
5910 if os2 ; then
5911 echocheck "DART"
5912 if test "$_dart" = auto; then
5913 cat > $TMPC << EOF
5914 #include <os2.h>
5915 #include <dart.h>
5916 int main( void ) { return 0; }
5918 _dart=no;
5919 cc_check -ldart && _dart=yes
5921 if test "$_dart" = yes ; then
5922 def_dart='#define CONFIG_DART 1'
5923 libs_mplayer="$libs_mplayer -ldart"
5924 _aomodules="dart $_aomodules"
5925 else
5926 def_dart='#undef CONFIG_DART'
5927 _noaomodules="dart $_noaomodules"
5929 echores "$_dart"
5930 fi #if os2
5933 # set default CD/DVD devices
5934 if win32 || os2 ; then
5935 default_cdrom_device="D:"
5936 elif darwin ; then
5937 default_cdrom_device="/dev/disk1"
5938 elif dragonfly ; then
5939 default_cdrom_device="/dev/cd0"
5940 elif freebsd ; then
5941 default_cdrom_device="/dev/acd0"
5942 elif openbsd ; then
5943 default_cdrom_device="/dev/rcd0a"
5944 elif sunos ; then
5945 default_cdrom_device="/vol/dev/aliases/cdrom0"
5946 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5947 # file system and the volfs service.
5948 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5949 elif amigaos ; then
5950 default_cdrom_device="a1ide.device:2"
5951 else
5952 default_cdrom_device="/dev/cdrom"
5955 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5956 default_dvd_device=$default_cdrom_device
5957 elif darwin ; then
5958 default_dvd_device="/dev/rdiskN"
5959 else
5960 default_dvd_device="/dev/dvd"
5964 echocheck "VCD support"
5965 if test "$_vcd" = auto; then
5966 _vcd=no
5967 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos; then
5968 _vcd=yes
5969 elif mingw32; then
5970 cat > $TMPC << EOF
5971 #include <ddk/ntddcdrm.h>
5972 int main(void) { return 0; }
5974 cc_check && _vcd=yes
5977 if test "$_vcd" = yes; then
5978 _inputmodules="vcd $_inputmodules"
5979 def_vcd='#define CONFIG_VCD 1'
5980 else
5981 def_vcd='#undef CONFIG_VCD'
5982 _noinputmodules="vcd $_noinputmodules"
5983 _res_comment="not supported on this OS"
5985 echores "$_vcd"
5989 echocheck "dvdread"
5990 if test "$_dvdread_internal" = auto ; then
5991 _dvdread_internal=no
5992 _dvdread=no
5993 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5994 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5995 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5996 || darwin || win32 || os2; then
5997 _dvdread_internal=yes
5998 _dvdread=yes
5999 extra_cflags="-Ilibdvdread4 $extra_cflags"
6001 elif test "$_dvdread" = auto ; then
6002 _dvdread=no
6003 if test "$_dl" = yes; then
6004 cat > $TMPC << EOF
6005 #include <inttypes.h>
6006 #include <dvdread/dvd_reader.h>
6007 #include <dvdread/ifo_types.h>
6008 #include <dvdread/ifo_read.h>
6009 #include <dvdread/nav_read.h>
6010 int main(void) { return 0; }
6012 _dvdreadcflags=$($_dvdreadconfig --cflags)
6013 _dvdreadlibs=$($_dvdreadconfig --libs)
6014 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
6015 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
6016 _dvdread=yes
6017 extra_cflags="$extra_cflags $_dvdreadcflags"
6018 extra_ldflags="$extra_ldflags $_dvdreadlibs"
6019 _res_comment="external"
6024 if test "$_dvdread_internal" = yes; then
6025 def_dvdread='#define CONFIG_DVDREAD 1'
6026 _inputmodules="dvdread(internal) $_inputmodules"
6027 _largefiles=yes
6028 _res_comment="internal"
6029 elif test "$_dvdread" = yes; then
6030 def_dvdread='#define CONFIG_DVDREAD 1'
6031 _largefiles=yes
6032 extra_ldflags="$extra_ldflags -ldvdread"
6033 _inputmodules="dvdread(external) $_inputmodules"
6034 _res_comment="external"
6035 else
6036 def_dvdread='#undef CONFIG_DVDREAD'
6037 _noinputmodules="dvdread $_noinputmodules"
6039 echores "$_dvdread"
6042 echocheck "internal libdvdcss"
6043 if test "$_libdvdcss_internal" = auto ; then
6044 _libdvdcss_internal=no
6045 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
6046 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
6048 if test "$_libdvdcss_internal" = yes ; then
6049 if linux || netbsd || openbsd || bsdos ; then
6050 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
6051 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
6052 elif freebsd || dragonfly ; then
6053 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
6054 elif darwin ; then
6055 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
6056 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
6057 elif cygwin ; then
6058 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
6059 elif beos ; then
6060 cflags_libdvdcss="-DSYS_BEOS"
6061 elif os2 ; then
6062 cflags_libdvdcss="-DSYS_OS2"
6064 cflags_libdvdcss_dvdread="-Ilibdvdcss"
6065 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
6066 _inputmodules="libdvdcss(internal) $_inputmodules"
6067 _largefiles=yes
6068 else
6069 _noinputmodules="libdvdcss(internal) $_noinputmodules"
6071 echores "$_libdvdcss_internal"
6074 echocheck "cdparanoia"
6075 if test "$_cdparanoia" = auto ; then
6076 cat > $TMPC <<EOF
6077 #include <cdda_interface.h>
6078 #include <cdda_paranoia.h>
6079 // This need a better test. How ?
6080 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
6082 _cdparanoia=no
6083 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
6084 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
6085 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
6086 done
6088 if test "$_cdparanoia" = yes ; then
6089 _cdda='yes'
6090 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
6091 openbsd && extra_ldflags="$extra_ldflags -lutil"
6093 echores "$_cdparanoia"
6096 echocheck "libcdio"
6097 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
6098 cat > $TMPC << EOF
6099 #include <stdio.h>
6100 #include <cdio/version.h>
6101 #include <cdio/cdda.h>
6102 #include <cdio/paranoia.h>
6103 int main(void) {
6104 void *test = cdda_verbose_set;
6105 printf("%s\n", CDIO_VERSION);
6106 return test == (void *)1;
6109 _libcdio=no
6110 for _ld_tmp in "" "-lwinmm" ; do
6111 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
6112 cc_check $_ld_tmp $_ld_lm \
6113 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6114 done
6115 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6116 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6117 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6118 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6119 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6122 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6123 _cdda='yes'
6124 def_libcdio='#define CONFIG_LIBCDIO 1'
6125 def_havelibcdio='yes'
6126 else
6127 if test "$_cdparanoia" = yes ; then
6128 _res_comment="using cdparanoia"
6130 def_libcdio='#undef CONFIG_LIBCDIO'
6131 def_havelibcdio='no'
6133 echores "$_libcdio"
6135 if test "$_cdda" = yes ; then
6136 test $_cddb = auto && test $_network = yes && _cddb=yes
6137 def_cdparanoia='#define CONFIG_CDDA 1'
6138 _inputmodules="cdda $_inputmodules"
6139 else
6140 def_cdparanoia='#undef CONFIG_CDDA'
6141 _noinputmodules="cdda $_noinputmodules"
6144 if test "$_cddb" = yes ; then
6145 def_cddb='#define CONFIG_CDDB 1'
6146 _inputmodules="cddb $_inputmodules"
6147 else
6148 _cddb=no
6149 def_cddb='#undef CONFIG_CDDB'
6150 _noinputmodules="cddb $_noinputmodules"
6153 echocheck "bitmap font support"
6154 if test "$_bitmap_font" = yes ; then
6155 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6156 else
6157 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6159 echores "$_bitmap_font"
6162 echocheck "freetype >= 2.0.9"
6164 # freetype depends on iconv
6165 if test "$_iconv" = no ; then
6166 _freetype=no
6167 _res_comment="iconv support needed"
6170 if test "$_freetype" = auto ; then
6171 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6172 cat > $TMPC << EOF
6173 #include <stdio.h>
6174 #include <ft2build.h>
6175 #include FT_FREETYPE_H
6176 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6177 #error "Need FreeType 2.0.9 or newer"
6178 #endif
6179 int main(void) {
6180 FT_Library library;
6181 FT_Int major=-1,minor=-1,patch=-1;
6182 int err=FT_Init_FreeType(&library);
6183 return 0;
6186 _freetype=no
6187 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6188 else
6189 _freetype=no
6192 if test "$_freetype" = yes ; then
6193 def_freetype='#define CONFIG_FREETYPE 1'
6194 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6195 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6196 else
6197 def_freetype='#undef CONFIG_FREETYPE'
6199 echores "$_freetype"
6201 if test "$_freetype" = no ; then
6202 _fontconfig=no
6203 _res_comment="FreeType support needed"
6205 echocheck "fontconfig"
6206 if test "$_fontconfig" = auto ; then
6207 cat > $TMPC << EOF
6208 #include <stdio.h>
6209 #include <stdlib.h>
6210 #include <fontconfig/fontconfig.h>
6211 int main(void) {
6212 int err = FcInit();
6213 if (err == FcFalse) {
6214 printf("Couldn't initialize fontconfig lib\n");
6215 exit(err);
6217 return 0;
6220 _fontconfig=no
6221 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6222 _ld_tmp="-lfontconfig $_ld_tmp"
6223 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6224 done
6225 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6226 _inc_tmp=$($_pkg_config --cflags fontconfig)
6227 _ld_tmp=$($_pkg_config --libs fontconfig)
6228 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6229 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6232 if test "$_fontconfig" = yes ; then
6233 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6234 else
6235 def_fontconfig='#undef CONFIG_FONTCONFIG'
6237 echores "$_fontconfig"
6240 echocheck "SSA/ASS support"
6241 # libass depends on FreeType
6242 if test "$_freetype" = no ; then
6243 _ass=no
6244 ass_internal=no
6245 _res_comment="FreeType support needed"
6248 if test "$_ass" = auto ; then
6249 cat > $TMPC << EOF
6250 #include <ft2build.h>
6251 #include FT_FREETYPE_H
6252 #if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 2) || ((FREETYPE_MINOR == 2) && (FREETYPE_PATCH < 1)))
6253 #error "Need FreeType 2.2.1 or newer"
6254 #endif
6255 int main(void) { return 0; }
6257 _ass=no
6258 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _ass=yes
6259 if test "$_ass" = no ; then
6260 ass_internal=no
6261 _res_comment="FreeType >= 2.2.1 needed"
6262 elif test "$ass_internal" = no ; then
6263 _res_comment="external"
6264 extra_ldflags="$extra_ldflags -lass"
6267 if test "$_ass" = yes ; then
6268 def_ass='#define CONFIG_ASS 1'
6269 else
6270 def_ass='#undef CONFIG_ASS'
6272 if test "$ass_internal" = yes ; then
6273 def_ass_internal='#define CONFIG_ASS_INTERNAL 1'
6274 else
6275 def_ass_internal='#undef CONFIG_ASS_INTERNAL'
6277 echores "$_ass"
6280 echocheck "fribidi with charsets"
6281 _inc_tmp=""
6282 _ld_tmp=""
6283 if test "$_fribidi" = auto ; then
6284 cat > $TMPC << EOF
6285 #include <stdio.h>
6286 #include <stdlib.h>
6287 /* workaround for fribidi 0.10.4 and below */
6288 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6289 #include <fribidi/fribidi.h>
6290 int main(void) {
6291 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6292 printf("Fribidi headers are not consistents with the library!\n");
6293 exit(1);
6295 return 0;
6298 _fribidi=no
6299 _inc_tmp=""
6300 _ld_tmp="-lfribidi"
6301 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6302 if $_fribidiconfig --version > /dev/null 2>&1 &&
6303 test "$_fribidi" = no ; then
6304 _inc_tmp="$($_fribidiconfig --cflags)"
6305 _ld_tmp="$($_fribidiconfig --libs)"
6306 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6309 if test "$_fribidi" = yes ; then
6310 def_fribidi='#define CONFIG_FRIBIDI 1'
6311 extra_cflags="$extra_cflags $_inc_tmp"
6312 extra_ldflags="$extra_ldflags $_ld_tmp"
6313 else
6314 def_fribidi='#undef CONFIG_FRIBIDI'
6316 echores "$_fribidi"
6319 echocheck "ENCA"
6320 if test "$_enca" = auto ; then
6321 cat > $TMPC << EOF
6322 #include <sys/types.h>
6323 #include <enca.h>
6324 int main(void) {
6325 const char **langs;
6326 size_t langcnt;
6327 langs = enca_get_languages(&langcnt);
6328 return 0;
6331 _enca=no
6332 cc_check -lenca $_ld_lm && _enca=yes
6334 if test "$_enca" = yes ; then
6335 def_enca='#define CONFIG_ENCA 1'
6336 extra_ldflags="$extra_ldflags -lenca"
6337 else
6338 def_enca='#undef CONFIG_ENCA'
6340 echores "$_enca"
6343 echocheck "zlib"
6344 cat > $TMPC << EOF
6345 #include <zlib.h>
6346 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6348 _zlib=no
6349 cc_check -lz && _zlib=yes
6350 if test "$_zlib" = yes ; then
6351 def_zlib='#define CONFIG_ZLIB 1'
6352 extra_ldflags="$extra_ldflags -lz"
6353 else
6354 def_zlib='#define CONFIG_ZLIB 0'
6355 _libavdecoders=$(echo $_libavdecoders | sed -e s/FLASHSV_DECODER// -e s/PNG_DECODER// -e s/ZMBV_DECODER// -e s/ZLIB_DECODER// -e s/DXA_DECODER// -e s/TSCC_DECODER//)
6356 _libavencoders=$(echo $_libavencoders | sed -e s/FLASHSV_ENCODER// -e s/PNG_ENCODER// -e s/ZMBV_ENCODER// -e s/ZLIB_ENCODER//)
6358 echores "$_zlib"
6361 echocheck "bzlib"
6362 bzlib=no
6363 def_bzlib='#define CONFIG_BZLIB 0'
6364 cat > $TMPC << EOF
6365 #include <bzlib.h>
6366 int main(void) { BZ2_bzlibVersion(); return 0; }
6368 cc_check -lbz2 && bzlib=yes
6369 if test "$bzlib" = yes ; then
6370 def_bzlib='#define CONFIG_BZLIB 1'
6371 extra_ldflags="$extra_ldflags -lbz2"
6373 echores "$bzlib"
6376 echocheck "RTC"
6377 if test "$_rtc" = auto ; then
6378 cat > $TMPC << EOF
6379 #include <sys/ioctl.h>
6380 #ifdef __linux__
6381 #include <linux/rtc.h>
6382 #else
6383 #include <rtc.h>
6384 #define RTC_PIE_ON RTCIO_PIE_ON
6385 #endif
6386 int main(void) { return RTC_PIE_ON; }
6388 _rtc=no
6389 cc_check && _rtc=yes
6390 ppc && _rtc=no
6392 if test "$_rtc" = yes ; then
6393 def_rtc='#define HAVE_RTC 1'
6394 else
6395 def_rtc='#undef HAVE_RTC'
6397 echores "$_rtc"
6400 echocheck "liblzo2 support"
6401 if test "$_liblzo" = auto ; then
6402 _liblzo=no
6403 cat > $TMPC << EOF
6404 #include <lzo/lzo1x.h>
6405 int main(void) { lzo_init();return 0; }
6407 cc_check -llzo2 && _liblzo=yes
6409 if test "$_liblzo" = yes ; then
6410 def_liblzo='#define CONFIG_LIBLZO 1'
6411 extra_ldflags="$extra_ldflags -llzo2"
6412 _codecmodules="liblzo $_codecmodules"
6413 else
6414 def_liblzo='#undef CONFIG_LIBLZO'
6415 _nocodecmodules="liblzo $_nocodecmodules"
6417 echores "$_liblzo"
6420 echocheck "mad support"
6421 if test "$_mad" = auto ; then
6422 _mad=no
6423 cat > $TMPC << EOF
6424 #include <mad.h>
6425 int main(void) { return 0; }
6427 cc_check -lmad && _mad=yes
6429 if test "$_mad" = yes ; then
6430 def_mad='#define CONFIG_LIBMAD 1'
6431 extra_ldflags="$extra_ldflags -lmad"
6432 _codecmodules="libmad $_codecmodules"
6433 else
6434 def_mad='#undef CONFIG_LIBMAD'
6435 _nocodecmodules="libmad $_nocodecmodules"
6437 echores "$_mad"
6439 echocheck "Twolame"
6440 if test "$_twolame" = auto ; then
6441 cat > $TMPC <<EOF
6442 #include <twolame.h>
6443 int main(void) { twolame_init(); return 0; }
6445 _twolame=no
6446 cc_check -ltwolame $_ld_lm && _twolame=yes
6448 if test "$_twolame" = yes ; then
6449 def_twolame='#define CONFIG_TWOLAME 1'
6450 libs_mencoder="$libs_mencoder -ltwolame"
6451 _codecmodules="twolame $_codecmodules"
6452 else
6453 def_twolame='#undef CONFIG_TWOLAME'
6454 _nocodecmodules="twolame $_nocodecmodules"
6456 echores "$_twolame"
6458 echocheck "Toolame"
6459 if test "$_toolame" = auto ; then
6460 _toolame=no
6461 if test "$_twolame" = yes ; then
6462 _res_comment="disabled by twolame"
6463 else
6464 cat > $TMPC <<EOF
6465 #include <toolame.h>
6466 int main(void) { toolame_init(); return 0; }
6468 cc_check -ltoolame $_ld_lm && _toolame=yes
6471 if test "$_toolame" = yes ; then
6472 def_toolame='#define CONFIG_TOOLAME 1'
6473 libs_mencoder="$libs_mencoder -ltoolame"
6474 _codecmodules="toolame $_codecmodules"
6475 else
6476 def_toolame='#undef CONFIG_TOOLAME'
6477 _nocodecmodules="toolame $_nocodecmodules"
6479 if test "$_toolamedir" ; then
6480 _res_comment="using $_toolamedir"
6482 echores "$_toolame"
6484 echocheck "OggVorbis support"
6485 if test "$_tremor_internal" = yes; then
6486 _libvorbis=no
6487 elif test "$_tremor" = auto; then
6488 _tremor=no
6489 cat > $TMPC << EOF
6490 #include <tremor/ivorbiscodec.h>
6491 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6493 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6495 if test "$_libvorbis" = auto; then
6496 _libvorbis=no
6497 cat > $TMPC << EOF
6498 #include <vorbis/codec.h>
6499 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6501 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6503 if test "$_tremor_internal" = yes ; then
6504 _vorbis=yes
6505 def_vorbis='#define CONFIG_OGGVORBIS 1'
6506 def_tremor='#define CONFIG_TREMOR 1'
6507 _codecmodules="tremor(internal) $_codecmodules"
6508 _res_comment="internal Tremor"
6509 if test "$_tremor_low" = yes ; then
6510 cflags_tremor_low="-D_LOW_ACCURACY_"
6511 _res_comment="internal low accuracy Tremor"
6513 elif test "$_tremor" = yes ; then
6514 _vorbis=yes
6515 def_vorbis='#define CONFIG_OGGVORBIS 1'
6516 def_tremor='#define CONFIG_TREMOR 1'
6517 _codecmodules="tremor(external) $_codecmodules"
6518 _res_comment="external Tremor"
6519 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6520 elif test "$_libvorbis" = yes ; then
6521 _vorbis=yes
6522 def_vorbis='#define CONFIG_OGGVORBIS 1'
6523 _codecmodules="libvorbis $_codecmodules"
6524 _res_comment="libvorbis"
6525 extra_ldflags="$extra_ldflags -lvorbis -logg"
6526 else
6527 _vorbis=no
6528 _nocodecmodules="libvorbis $_nocodecmodules"
6530 echores "$_vorbis"
6532 echocheck "libspeex (version >= 1.1 required)"
6533 if test "$_speex" = auto ; then
6534 _speex=no
6535 cat > $TMPC << EOF
6536 #include <speex/speex.h>
6537 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6539 cc_check -lspeex $_ld_lm && _speex=yes
6541 if test "$_speex" = yes ; then
6542 def_speex='#define CONFIG_SPEEX 1'
6543 extra_ldflags="$extra_ldflags -lspeex"
6544 _codecmodules="speex $_codecmodules"
6545 else
6546 def_speex='#undef CONFIG_SPEEX'
6547 _nocodecmodules="speex $_nocodecmodules"
6549 echores "$_speex"
6551 echocheck "OggTheora support"
6552 if test "$_theora" = auto ; then
6553 _theora=no
6554 cat > $TMPC << EOF
6555 #include <theora/theora.h>
6556 #include <string.h>
6557 int main(void) {
6558 /* Theora is in flux, make sure that all interface routines and datatypes
6559 * exist and work the way we expect it, so we don't break MPlayer. */
6560 ogg_packet op;
6561 theora_comment tc;
6562 theora_info inf;
6563 theora_state st;
6564 yuv_buffer yuv;
6565 int r;
6566 double t;
6568 theora_info_init(&inf);
6569 theora_comment_init(&tc);
6571 return 0;
6573 /* we don't want to execute this kind of nonsense; just for making sure
6574 * that compilation works... */
6575 memset(&op, 0, sizeof(op));
6576 r = theora_decode_header(&inf, &tc, &op);
6577 r = theora_decode_init(&st, &inf);
6578 t = theora_granule_time(&st, op.granulepos);
6579 r = theora_decode_packetin(&st, &op);
6580 r = theora_decode_YUVout(&st, &yuv);
6581 theora_clear(&st);
6583 return 0;
6586 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6587 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6588 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6589 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6590 if test _theora = no; then
6591 _ld_theora="-ltheora -logg"
6592 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6594 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6595 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6596 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6597 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6598 extra_ldflags="$extra_ldflags $_ld_theora" &&
6599 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6600 if test _theora = no; then
6601 _ld_theora="-ltheora -logg"
6602 cc_check tremor/bitwise.c $_ld_theora &&
6603 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6607 if test "$_theora" = yes ; then
6608 def_theora='#define CONFIG_OGGTHEORA 1'
6609 _codecmodules="libtheora $_codecmodules"
6610 # when --enable-theora is forced, we'd better provide a probably sane
6611 # $_ld_theora than nothing
6612 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6613 else
6614 def_theora='#undef CONFIG_OGGTHEORA'
6615 _nocodecmodules="libtheora $_nocodecmodules"
6617 echores "$_theora"
6619 echocheck "internal mp3lib support"
6620 if test "$_mp3lib" = auto ; then
6621 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6623 if test "$_mp3lib" = yes ; then
6624 def_mp3lib='#define CONFIG_MP3LIB 1'
6625 _codecmodules="mp3lib(internal) $_codecmodules"
6626 else
6627 def_mp3lib='#undef CONFIG_MP3LIB'
6628 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6630 echores "$_mp3lib"
6632 echocheck "liba52 support"
6633 if test "$_liba52_internal" = auto ; then
6634 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _liba52_internal=no || _liba52_internal=yes
6636 def_liba52='#undef CONFIG_LIBA52'
6637 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6638 if test "$_liba52_internal" = yes ; then
6639 _liba52=yes
6640 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6641 _res_comment="internal"
6642 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6643 _liba52=no
6644 cat > $TMPC << EOF
6645 #include <inttypes.h>
6646 #include <a52dec/a52.h>
6647 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6649 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6651 if test "$_liba52" = yes ; then
6652 def_liba52='#define CONFIG_LIBA52 1'
6653 _codecmodules="liba52($_res_comment) $_codecmodules"
6654 else
6655 _nocodecmodules="liba52 $_nocodecmodules"
6657 echores "$_liba52"
6659 echocheck "internal libmpeg2 support"
6660 if test "$_libmpeg2" = auto ; then
6661 _libmpeg2=yes
6662 if alpha && test cc_vendor=gnu; then
6663 case $cc_version in
6664 2*|3.0*|3.1*) # cannot compile MVI instructions
6665 _libmpeg2=no
6666 _res_comment="broken gcc"
6668 esac
6671 if test "$_libmpeg2" = yes ; then
6672 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6673 _codecmodules="libmpeg2(internal) $_codecmodules"
6674 else
6675 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6676 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6678 echores "$_libmpeg2"
6680 echocheck "libdca support"
6681 if test "$_libdca" = auto ; then
6682 _libdca=no
6683 cat > $TMPC << EOF
6684 #include <inttypes.h>
6685 #include <dts.h>
6686 int main(void) { dts_init(0); return 0; }
6688 for _ld_dca in -ldca -ldts ; do
6689 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6690 && _libdca=yes && break
6691 done
6693 if test "$_libdca" = yes ; then
6694 def_libdca='#define CONFIG_LIBDCA 1'
6695 _codecmodules="libdca $_codecmodules"
6696 else
6697 def_libdca='#undef CONFIG_LIBDCA'
6698 _nocodecmodules="libdca $_nocodecmodules"
6700 echores "$_libdca"
6702 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6703 if test "$_musepack" = auto ; then
6704 _musepack=no
6705 cat > $TMPC << EOF
6706 #include <stddef.h>
6707 #include <mpcdec/mpcdec.h>
6708 int main(void) {
6709 mpc_streaminfo info;
6710 mpc_decoder decoder;
6711 mpc_decoder_set_streaminfo(&decoder, &info);
6712 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6713 return 0;
6716 cc_check -lmpcdec $_ld_lm && _musepack=yes
6718 if test "$_musepack" = yes ; then
6719 def_musepack='#define CONFIG_MUSEPACK 1'
6720 extra_ldflags="$extra_ldflags -lmpcdec"
6721 _codecmodules="musepack $_codecmodules"
6722 else
6723 def_musepack='#undef CONFIG_MUSEPACK'
6724 _nocodecmodules="musepack $_nocodecmodules"
6726 echores "$_musepack"
6729 echocheck "FAAC support"
6730 if test "$_faac" = auto ; then
6731 cat > $TMPC <<EOF
6732 #include <inttypes.h>
6733 #include <faac.h>
6734 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6736 _faac=no
6737 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6738 cc_check -O4 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6739 done
6741 if test "$_faac" = yes ; then
6742 def_faac="#define CONFIG_FAAC 1"
6743 test "$_faac_lavc" = auto && _faac_lavc=yes
6744 if test "$_faac_lavc" = yes ; then
6745 def_faac_lavc="#define CONFIG_LIBFAAC 1"
6746 libs_mplayer="$libs_mplayer $_ld_faac"
6747 _libavencoders="$_libavencoders LIBFAAC_ENCODER"
6749 _codecmodules="faac $_codecmodules"
6750 else
6751 _faac_lavc=no
6752 def_faac="#undef CONFIG_FAAC"
6753 def_faac_lavc="#define CONFIG_LIBFAAC 0"
6754 _nocodecmodules="faac $_nocodecmodules"
6756 _res_comment="in libavcodec: $_faac_lavc"
6757 echores "$_faac"
6760 echocheck "FAAD2 support"
6761 if test "$_faad_internal" = auto ; then
6762 if x86_32 && test cc_vendor=gnu; then
6763 case $cc_version in
6764 3.1*|3.2) # ICE/insn with these versions
6765 _faad_internal=no
6766 _res_comment="broken gcc"
6769 _faad=yes
6770 _faad_internal=yes
6772 esac
6773 else
6774 _faad=yes
6775 _faad_internal=yes
6778 if test "$_faad" = auto ; then
6779 cat > $TMPC << EOF
6780 #include <faad.h>
6781 #ifndef FAAD_MIN_STREAMSIZE
6782 #error Too old version
6783 #endif
6784 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6785 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6787 cc_check -lfaad $_ld_lm && _faad=yes
6790 def_faad='#undef CONFIG_FAAD'
6791 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6792 if test "$_faad_internal" = yes ; then
6793 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6794 _res_comment="internal floating-point"
6795 if test "$_faad_fixed" = yes ; then
6796 # The FIXED_POINT implementation of FAAD2 improves performance
6797 # on some platforms, especially for SBR files.
6798 cflags_faad_fixed="-DFIXED_POINT"
6799 _res_comment="internal fixed-point"
6801 elif test "$_faad" = yes ; then
6802 extra_ldflags="$extra_ldflags -lfaad"
6805 if test "$_faad" = yes ; then
6806 def_faad='#define CONFIG_FAAD 1'
6807 if test "$_faad_internal" = yes ; then
6808 _codecmodules="faad2(internal) $_codecmodules"
6809 else
6810 _codecmodules="faad2 $_codecmodules"
6812 else
6813 _faad=no
6814 _nocodecmodules="faad2 $_nocodecmodules"
6816 echores "$_faad"
6819 echocheck "LADSPA plugin support"
6820 if test "$_ladspa" = auto ; then
6821 cat > $TMPC <<EOF
6822 #include <stdio.h>
6823 #include <ladspa.h>
6824 int main(void) {
6825 const LADSPA_Descriptor *ld = NULL;
6826 return 0;
6829 _ladspa=no
6830 cc_check && _ladspa=yes
6832 if test "$_ladspa" = yes; then
6833 def_ladspa="#define CONFIG_LADSPA 1"
6834 else
6835 def_ladspa="#undef CONFIG_LADSPA"
6837 echores "$_ladspa"
6840 echocheck "libbs2b audio filter support"
6841 if test "$_libbs2b" = auto ; then
6842 cat > $TMPC <<EOF
6843 #include <bs2b.h>
6844 #if BS2B_VERSION_MAJOR < 3
6845 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6846 #endif
6847 int main(void) {
6848 t_bs2bdp filter;
6849 filter=bs2b_open();
6850 bs2b_close(filter);
6851 return 0;
6854 _libbs2b=no
6855 if $_pkg_config --exists libbs2b ; then
6856 _inc_tmp=$($_pkg_config --cflags libbs2b)
6857 _ld_tmp=$($_pkg_config --libs libbs2b)
6858 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6859 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6860 else
6861 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6862 -I/usr/local/include/bs2b ; do
6863 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6864 extra_ldflags="$extra_ldflags -lbs2b"
6865 extra_cflags="$extra_cflags $_inc_tmp"
6866 _libbs2b=yes
6867 break
6869 done
6872 def_libbs2b="#undef CONFIG_LIBBS2B"
6873 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6874 echores "$_libbs2b"
6877 if test -z "$_codecsdir" ; then
6878 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6879 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6880 if test -d "$dir" ; then
6881 _codecsdir="$dir"
6882 break;
6884 done
6886 # Fall back on default directory.
6887 if test -z "$_codecsdir" ; then
6888 _codecsdir="$_libdir/codecs"
6889 mingw32 && _codecsdir="codecs"
6890 os2 && _codecsdir="codecs"
6894 echocheck "Win32 codecs"
6895 if test "$_win32dll" = auto ; then
6896 _win32dll=no
6897 if x86_32 && ! qnx; then
6898 _win32dll=yes
6901 if test "$_win32dll" = yes ; then
6902 def_win32dll='#define CONFIG_WIN32DLL 1'
6903 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6904 _res_comment="using $_win32codecsdir"
6905 if ! win32 ; then
6906 def_win32_loader='#define WIN32_LOADER 1'
6907 _win32_emulation=yes
6908 else
6909 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6910 _res_comment="using native windows"
6912 _codecmodules="win32 $_codecmodules"
6913 else
6914 def_win32dll='#undef CONFIG_WIN32DLL'
6915 def_win32_loader='#undef WIN32_LOADER'
6916 _nocodecmodules="win32 $_nocodecmodules"
6918 echores "$_win32dll"
6921 echocheck "XAnim codecs"
6922 if test "$_xanim" = auto ; then
6923 _xanim=no
6924 _res_comment="dynamic loader support needed"
6925 if test "$_dl" = yes ; then
6926 _xanim=yes
6929 if test "$_xanim" = yes ; then
6930 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6931 def_xanim='#define CONFIG_XANIM 1'
6932 def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6933 _codecmodules="xanim $_codecmodules"
6934 _res_comment="using $_xanimcodecsdir"
6935 else
6936 def_xanim='#undef CONFIG_XANIM'
6937 def_xanim_path='#undef XACODEC_PATH'
6938 _nocodecmodules="xanim $_nocodecmodules"
6940 echores "$_xanim"
6943 echocheck "RealPlayer codecs"
6944 if test "$_real" = auto ; then
6945 _real=no
6946 _res_comment="dynamic loader support needed"
6947 if test "$_dl" = yes || test "$_win32dll" = yes &&
6948 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32) ; then
6949 _real=yes
6952 if test "$_real" = yes ; then
6953 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6954 def_real='#define CONFIG_REALCODECS 1'
6955 def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6956 _codecmodules="real $_codecmodules"
6957 _res_comment="using $_realcodecsdir"
6958 else
6959 def_real='#undef CONFIG_REALCODECS'
6960 def_real_path="#undef REALCODEC_PATH"
6961 _nocodecmodules="real $_nocodecmodules"
6963 echores "$_real"
6966 echocheck "QuickTime codecs"
6967 _qtx_emulation=no
6968 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6969 if test "$_qtx" = auto ; then
6970 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6972 if test "$_qtx" = yes ; then
6973 def_qtx='#define CONFIG_QTX_CODECS 1'
6974 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6975 _codecmodules="qtx $_codecmodules"
6976 darwin || win32 || _qtx_emulation=yes
6977 else
6978 def_qtx='#undef CONFIG_QTX_CODECS'
6979 _nocodecmodules="qtx $_nocodecmodules"
6981 echores "$_qtx"
6983 echocheck "Nemesi Streaming Media libraries"
6984 if test "$_nemesi" = auto && test "$_network" = yes ; then
6985 _nemesi=no
6986 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6987 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6988 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6989 _nemesi=yes
6992 if test "$_nemesi" = yes; then
6993 _native_rtsp=no
6994 def_nemesi='#define CONFIG_LIBNEMESI 1'
6995 _inputmodules="nemesi $_inputmodules"
6996 else
6997 _native_rtsp="$_network"
6998 _nemesi=no
6999 def_nemesi='#undef CONFIG_LIBNEMESI'
7000 _noinputmodules="nemesi $_noinputmodules"
7002 echores "$_nemesi"
7004 echocheck "LIVE555 Streaming Media libraries"
7005 if test "$_live" = auto && test "$_network" = yes ; then
7006 cat > $TMPCPP << EOF
7007 #include <liveMedia.hh>
7008 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
7009 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
7010 #endif
7011 int main(void) { return 0; }
7014 _live=no
7015 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
7016 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
7017 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
7018 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
7019 $_livelibdir/groupsock/libgroupsock.a \
7020 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
7021 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
7022 $extra_ldflags -lstdc++" \
7023 extra_cxxflags="-I$_livelibdir/liveMedia/include \
7024 -I$_livelibdir/UsageEnvironment/include \
7025 -I$_livelibdir/BasicUsageEnvironment/include \
7026 -I$_livelibdir/groupsock/include" && \
7027 _live=yes && break
7028 done
7029 if test "$_live" != yes ; then
7030 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
7031 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
7032 _live_dist=yes
7036 if test "$_live" = yes && test "$_network" = yes; then
7037 test $_livelibdir && _res_comment="using $_livelibdir"
7038 def_live='#define CONFIG_LIVE555 1'
7039 _inputmodules="live555 $_inputmodules"
7040 elif test "$_live_dist" = yes && test "$_network" = yes; then
7041 _res_comment="using distribution version"
7042 _live="yes"
7043 def_live='#define CONFIG_LIVE555 1'
7044 extra_ldflags="$extra_ldflags $ld_tmp"
7045 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
7046 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
7047 _inputmodules="live555 $_inputmodules"
7048 else
7049 _live=no
7050 def_live='#undef CONFIG_LIVE555'
7051 _noinputmodules="live555 $_noinputmodules"
7053 echores "$_live"
7056 echocheck "FFmpeg libavutil"
7057 if test "$_libavutil_a" = auto ; then
7058 if test -d libavutil ; then
7059 _libavutil_a=yes
7060 _res_comment="static"
7061 else
7062 die "MPlayer will not compile without libavutil in the source tree."
7064 elif test "$_libavutil_so" = auto ; then
7065 _libavutil_so=no
7066 cat > $TMPC << EOF
7067 #include <libavutil/common.h>
7068 int main(void) { av_gcd(1,1); return 0; }
7070 if $_pkg_config --exists libavutil ; then
7071 _inc_libavutil=$($_pkg_config --cflags libavutil)
7072 _ld_tmp=$($_pkg_config --libs libavutil)
7073 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7074 && _libavutil_so=yes
7075 elif cc_check -lavutil $_ld_lm ; then
7076 extra_ldflags="$extra_ldflags -lavutil"
7077 _libavutil_so=yes
7078 _res_comment="using libavutil.so, but static libavutil is recommended"
7081 _libavutil=no
7082 def_libavutil='#undef CONFIG_LIBAVUTIL'
7083 def_libavutil_a='#undef CONFIG_LIBAVUTIL_A'
7084 def_libavutil_so='#undef CONFIG_LIBAVUTIL_SO'
7085 test "$_libavutil_a" = yes || test "$_libavutil_so" = yes && _libavutil=yes
7086 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
7087 test "$_libavutil_a" = yes && def_libavutil_a='#define CONFIG_LIBAVUTIL_A 1'
7088 test "$_libavutil_so" = yes && def_libavutil_so='#define CONFIG_LIBAVUTIL_SO 1'
7089 # neither static nor shared libavutil is available, but it is mandatory ...
7090 if test "$_libavutil" = no ; then
7091 die "You need static or shared libavutil, MPlayer will not compile without!"
7093 echores "$_libavutil"
7095 echocheck "FFmpeg libavcodec"
7096 if test "$_libavcodec_a" = auto ; then
7097 _libavcodec_a=no
7098 if test -d libavcodec && test -f libavcodec/utils.c ; then
7099 _libavcodec_a="yes"
7100 _res_comment="static"
7102 elif test "$_libavcodec_so" = auto ; then
7103 _libavcodec_so=no
7104 _res_comment="libavcodec.so is discouraged over static libavcodec"
7105 cat > $TMPC << EOF
7106 #include <libavcodec/avcodec.h>
7107 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
7109 if $_pkg_config --exists libavcodec ; then
7110 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
7111 _ld_tmp=$($_pkg_config --libs libavcodec)
7112 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7113 && _libavcodec_so=yes
7114 elif cc_check -lavcodec $_ld_lm ; then
7115 extra_ldflags="$extra_ldflags -lavcodec"
7116 _libavcodec_so=yes
7117 _res_comment="using libavcodec.so, but static libavcodec is recommended"
7120 _libavcodec=no
7121 def_libavcodec='#undef CONFIG_LIBAVCODEC'
7122 def_libavcodec_a='#undef CONFIG_LIBAVCODEC_A'
7123 def_libavcodec_so='#undef CONFIG_LIBAVCODEC_SO'
7124 test "$_libavcodec_a" = yes || test "$_libavcodec_so" = yes && _libavcodec=yes
7125 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
7126 test "$_libavcodec_a" = yes && def_libavcodec_a='#define CONFIG_LIBAVCODEC_A 1'
7127 test "$_libavcodec_so" = yes && def_libavcodec_so='#define CONFIG_LIBAVCODEC_SO 1'
7128 test "$_libavcodec_mpegaudio_hp" = yes \
7129 && def_libavcodec_mpegaudio_hp='#define CONFIG_MPEGAUDIO_HP 1' \
7130 && mak_libavcodec_mpegaudio_hp='CONFIG_MPEGAUDIO_HP = yes'
7131 if test "$_libavcodec_a" = yes ; then
7132 _codecmodules="libavcodec(internal) $_codecmodules"
7133 elif test "$_libavcodec_so" = yes ; then
7134 _codecmodules="libavcodec.so $_codecmodules"
7135 else
7136 _nocodecmodules="libavcodec $_nocodecmodules"
7138 echores "$_libavcodec"
7140 echocheck "FFmpeg libavformat"
7141 if test "$_libavformat_a" = auto ; then
7142 _libavformat_a=no
7143 if test -d libavformat && test -f libavformat/utils.c ; then
7144 _libavformat_a=yes
7145 _res_comment="static"
7147 elif test "$_libavformat_so" = auto ; then
7148 _libavformat_so=no
7149 cat > $TMPC <<EOF
7150 #include <libavformat/avformat.h>
7151 #include <libavcodec/opt.h>
7152 int main(void) { av_alloc_format_context(); return 0; }
7154 if $_pkg_config --exists libavformat ; then
7155 _inc_libavformat=$($_pkg_config --cflags libavformat)
7156 _ld_tmp=$($_pkg_config --libs libavformat)
7157 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7158 && _libavformat_so=yes
7159 elif cc_check $_ld_lm -lavformat ; then
7160 extra_ldflags="$extra_ldflags -lavformat"
7161 _libavformat_so=yes
7162 _res_comment="using libavformat.so, but static libavformat is recommended"
7165 _libavformat=no
7166 def_libavformat='#undef CONFIG_LIBAVFORMAT'
7167 def_libavformat_a='#undef CONFIG_LIBAVFORMAT_A'
7168 def_libavformat_so='#undef CONFIG_LIBAVFORMAT_SO'
7169 test "$_libavformat_a" = yes || test "$_libavformat_so" = yes && _libavformat=yes
7170 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
7171 test "$_libavformat_a" = yes && def_libavformat_a='#define CONFIG_LIBAVFORMAT_A 1'
7172 test "$_libavformat_so" = yes \
7173 && def_libavformat_so='#define CONFIG_LIBAVFORMAT_SO 1'
7174 echores "$_libavformat"
7176 echocheck "FFmpeg libpostproc"
7177 if test "$_libpostproc_a" = auto ; then
7178 _libpostproc_a=no
7179 if test -d libpostproc && test -f libpostproc/postprocess.h ; then
7180 _libpostproc_a='yes'
7181 _res_comment="static"
7183 elif test "$_libpostproc_so" = auto ; then
7184 _libpostproc_so=no
7185 cat > $TMPC << EOF
7186 #include <inttypes.h>
7187 #include <libpostproc/postprocess.h>
7188 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
7190 if cc_check -lpostproc $_ld_lm ; then
7191 extra_ldflags="$extra_ldflags -lpostproc"
7192 _libpostproc_so=yes
7193 _res_comment="using libpostproc.so, but static libpostproc is recommended"
7196 _libpostproc=no
7197 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
7198 def_libpostproc_a='#undef CONFIG_LIBPOSTPROC_A'
7199 def_libpostproc_so='#undef CONFIG_LIBPOSTPROC_SO'
7200 test "$_libpostproc_a" = yes || test "$_libpostproc_so" = yes && _libpostproc=yes
7201 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
7202 test "$_libpostproc_a" = yes && def_libpostproc_a='#define CONFIG_LIBPOSTPROC_A 1'
7203 test "$_libpostproc_so" = yes \
7204 && def_libpostproc_so='#define CONFIG_LIBPOSTPROC_SO 1'
7205 echores "$_libpostproc"
7207 echocheck "FFmpeg libswscale"
7208 if test "$_libswscale_a" = auto ; then
7209 _libswscale_a=no
7210 if test -d libswscale && test -f libswscale/swscale.h ; then
7211 _libswscale_a='yes'
7212 _res_comment="static"
7214 elif test "$_libswscale_so" = auto ; then
7215 _libswscale_so=no
7216 _res_comment="using libswscale.so, but static libswscale is recommended"
7217 cat > $TMPC << EOF
7218 #include <libswscale/swscale.h>
7219 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7221 if $_pkg_config --exists libswscale ; then
7222 _inc_libswscale=$($_pkg_config --cflags libswscale)
7223 _ld_tmp=$($_pkg_config --libs libswscale)
7224 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7225 && _libswscale_so=yes
7226 elif cc_check -lswscale ; then
7227 extra_ldflags="$extra_ldflags -lswscale"
7228 _libswscale_so=yes
7231 _libswscale=no
7232 def_libswscale='#undef CONFIG_LIBSWSCALE'
7233 def_libswscale_a='#undef CONFIG_LIBSWSCALE_A'
7234 def_libswscale_so='#undef CONFIG_LIBSWSCALE_SO'
7235 test "$_libswscale_a" = yes || test "$_libswscale_so" = yes && _libswscale=yes
7236 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7237 test "$_libswscale_a" = yes && def_libswscale_a='#define CONFIG_LIBSWSCALE_A 1'
7238 test "$_libswscale_so" = yes \
7239 && def_libswscale_so='#define CONFIG_LIBSWSCALE_SO 1'
7240 echores "$_libswscale"
7242 echocheck "libopencore_amr narrowband"
7243 if test "$_libopencore_amrnb" = auto ; then
7244 _libopencore_amrnb=no
7245 cat > $TMPC << EOF
7246 #include <opencore-amrnb/interf_dec.h>
7247 int main(void) { Decoder_Interface_init(); return 0; }
7249 cc_check -lopencore-amrnb && _libopencore_amrnb=yes
7250 if test "$_libavcodec_a" != yes ; then
7251 _libopencore_amrnb=no
7252 _res_comment="libavcodec (static) is required by libopencore_amrnb, sorry"
7255 if test "$_libopencore_amrnb" = yes ; then
7256 _libopencore_amr=yes
7257 extra_ldflags="$extra_ldflags -lopencore-amrnb"
7258 def_libopencore_amrnb='#define CONFIG_LIBOPENCORE_AMRNB 1'
7259 _libavdecoders="$_libavdecoders LIBOPENCORE_AMRNB_DECODER"
7260 _libavencoders="$_libavencoders LIBOPENCORE_AMRNB_ENCODER"
7261 _codecmodules="libopencore_amrnb $_codecmodules"
7262 else
7263 def_libopencore_amrnb='#define CONFIG_LIBOPENCORE_AMRNB 0'
7264 _nocodecmodules="libopencore_amrnb $_nocodecmodules"
7266 echores "$_libopencore_amrnb"
7269 echocheck "libopencore_amr wideband"
7270 if test "$_libopencore_amrwb" = auto ; then
7271 _libopencore_amrwb=no
7272 cat > $TMPC << EOF
7273 #include <opencore-amrwb/dec_if.h>
7274 int main(void) { D_IF_init(); return 0; }
7276 cc_check -lopencore-amrwb && _libopencore_amrwb=yes
7277 if test "$_libavcodec_a" != yes ; then
7278 _libopencore_amrwb=no
7279 _res_comment="libavcodec (static) is required by libopencore_amrwb, sorry"
7282 if test "$_libopencore_amrwb" = yes ; then
7283 _libopencore_amr=yes
7284 extra_ldflags="$extra_ldflags -lopencore-amrwb"
7285 def_libopencore_amrwb='#define CONFIG_LIBOPENCORE_AMRWB 1'
7286 _libavdecoders="$_libavdecoders LIBOPENCORE_AMRWB_DECODER"
7287 _libavencoders="$_libavencoders LIBOPENCORE_AMRWB_DECODER"
7288 _codecmodules="libopencore_amrwb $_codecmodules"
7289 else
7290 def_libopencore_amrwb='#define LIBOPENCORE_AMRWB 0'
7291 _nocodecmodules="libopencore_amrwb $_nocodecmodules"
7293 echores "$_libopencore_amrwb"
7295 echocheck "libdv-0.9.5+"
7296 if test "$_libdv" = auto ; then
7297 _libdv=no
7298 cat > $TMPC <<EOF
7299 #include <libdv/dv.h>
7300 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7302 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7304 if test "$_libdv" = yes ; then
7305 def_libdv='#define CONFIG_LIBDV095 1'
7306 extra_ldflags="$extra_ldflags -ldv"
7307 _codecmodules="libdv $_codecmodules"
7308 else
7309 def_libdv='#undef CONFIG_LIBDV095'
7310 _nocodecmodules="libdv $_nocodecmodules"
7312 echores "$_libdv"
7315 echocheck "Xvid"
7316 if test "$_xvid" = auto ; then
7317 _xvid=no
7318 cat > $TMPC << EOF
7319 #include <xvid.h>
7320 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7322 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7323 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7324 done
7327 if test "$_xvid" = yes ; then
7328 def_xvid='#define CONFIG_XVID4 1'
7329 _codecmodules="xvid $_codecmodules"
7330 else
7331 def_xvid='#undef CONFIG_XVID4'
7332 _nocodecmodules="xvid $_nocodecmodules"
7334 echores "$_xvid"
7336 echocheck "Xvid two pass plugin"
7337 if test "$_xvid" = yes && test "$_xvid_lavc" = auto ; then
7338 cat > $TMPC << EOF
7339 #include <xvid.h>
7340 int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
7342 cc_check && _xvid_lavc=yes
7344 if test "$_xvid_lavc" = yes ; then
7345 def_xvid_lavc='#define CONFIG_LIBXVID 1'
7346 _libavencoders="$_libavencoders LIBXVID_ENCODER"
7347 else
7348 _xvid_lavc=no
7349 def_xvid_lavc='#define CONFIG_LIBXVID 0'
7351 echores "$_xvid_lavc"
7354 echocheck "x264"
7355 if test "$_x264" = auto ; then
7356 cat > $TMPC << EOF
7357 #include <inttypes.h>
7358 #include <x264.h>
7359 #if X264_BUILD < 79
7360 #error We do not support old versions of x264. Get the latest from git.
7361 #endif
7362 int main(void) { x264_encoder_open((void*)0); return 0; }
7364 _x264=no
7365 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7366 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7367 done
7370 if test "$_x264" = yes ; then
7371 def_x264='#define CONFIG_X264 1'
7372 _codecmodules="x264 $_codecmodules"
7373 test "$_x264_lavc" = auto && _x264_lavc=yes
7374 if test "$_x264_lavc" = yes ; then
7375 def_x264_lavc='#define CONFIG_LIBX264 1'
7376 libs_mplayer="$libs_mplayer $_ld_x264"
7377 _libavencoders="$_libavencoders LIBX264_ENCODER"
7379 else
7380 _x264_lavc=no
7381 def_x264='#undef CONFIG_X264'
7382 def_x264_lavc='#define CONFIG_LIBX264 0'
7383 _nocodecmodules="x264 $_nocodecmodules"
7385 _res_comment="in libavcodec: $_x264_lavc"
7386 echores "$_x264"
7389 echocheck "libdirac"
7390 if test "$_libdirac_lavc" = auto; then
7391 _libdirac_lavc=no
7392 if test "$_libavcodec_a" != yes; then
7393 _res_comment="libavcodec (static) is required by libdirac, sorry"
7394 else
7395 cat > $TMPC << EOF
7396 #include <libdirac_encoder/dirac_encoder.h>
7397 #include <libdirac_decoder/dirac_parser.h>
7398 int main(void)
7400 dirac_encoder_context_t enc_ctx;
7401 dirac_decoder_t *dec_handle;
7402 dirac_encoder_context_init(&enc_ctx, VIDEO_FORMAT_SD_576I50);
7403 dec_handle = dirac_decoder_init(0);
7404 if (dec_handle)
7405 dirac_decoder_close(dec_handle);
7406 return 0;
7409 if $_pkg_config --exists dirac ; then
7410 _inc_dirac=$($_pkg_config --silence-errors --cflags dirac)
7411 _ld_dirac=$($_pkg_config --silence-errors --libs dirac)
7412 cc_check $_inc_dirac $_ld_dirac &&
7413 _libdirac_lavc=yes &&
7414 extra_cflags="$extra_cflags $_inc_dirac" &&
7415 extra_ldflags="$extra_ldflags $_ld_dirac"
7419 if test "$_libdirac_lavc" = yes ; then
7420 def_libdirac_lavc='#define CONFIG_LIBDIRAC 1'
7421 _libavencoders="$_libavencoders LIBDIRAC_ENCODER"
7422 _libavdecoders="$_libavdecoders LIBDIRAC_DECODER"
7423 _codecmodules="libdirac $_codecmodules"
7424 else
7425 def_libdirac_lavc='#define CONFIG_LIBDIRAC 0'
7426 _nocodecmodules="libdirac $_nocodecmodules"
7428 echores "$_libdirac_lavc"
7431 echocheck "libschroedinger"
7432 if test "$_libschroedinger_lavc" = auto ; then
7433 _libschroedinger_lavc=no
7434 if test "$_libavcodec_a" != yes; then
7435 _res_comment="libavcodec (static) is required by libschroedinger, sorry"
7436 else
7437 cat > $TMPC << EOF
7438 #include <schroedinger/schro.h>
7439 int main(void) { schro_init(); return 0; }
7441 if $_pkg_config --exists schroedinger-1.0 ; then
7442 _inc_schroedinger=$($_pkg_config --silence-errors --cflags schroedinger-1.0)
7443 _ld_schroedinger=$($_pkg_config --silence-errors --libs schroedinger-1.0)
7444 cc_check $_inc_schroedinger $_ld_schroedinger &&
7445 _libschroedinger_lavc=yes &&
7446 extra_cflags="$extra_cflags $_inc_schroedinger" &&
7447 extra_ldflags="$extra_ldflags $_ld_schroedinger"
7451 if test "$_libschroedinger_lavc" = yes ; then
7452 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 1'
7453 _libavencoders="$_libavencoders LIBSCHROEDINGER_ENCODER"
7454 _libavdecoders="$_libavdecoders LIBSCHROEDINGER_DECODER"
7455 _codecmodules="libschroedinger $_codecmodules"
7456 else
7457 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 0'
7458 _nocodecmodules="libschroedinger $_nocodecmodules"
7460 echores "$_libschroedinger_lavc"
7462 echocheck "libnut"
7463 if test "$_libnut" = auto ; then
7464 cat > $TMPC << EOF
7465 #include <stdio.h>
7466 #include <stdlib.h>
7467 #include <inttypes.h>
7468 #include <libnut.h>
7469 nut_context_tt * nut;
7470 int main(void) { (void)nut_error(0); return 0; }
7472 _libnut=no
7473 cc_check -lnut && _libnut=yes
7476 if test "$_libnut" = yes ; then
7477 def_libnut='#define CONFIG_LIBNUT 1'
7478 extra_ldflags="$extra_ldflags -lnut"
7479 else
7480 def_libnut='#undef CONFIG_LIBNUT'
7482 echores "$_libnut"
7484 #check must be done after libavcodec one
7485 echocheck "zr"
7486 if test "$_zr" = auto ; then
7487 #36067's seem to identify themselves as 36057PQC's, so the line
7488 #below should work for 36067's and 36057's.
7489 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7490 _zr=yes
7491 else
7492 _zr=no
7495 if test "$_zr" = yes ; then
7496 if test "$_libavcodec_a" = yes ; then
7497 def_zr='#define CONFIG_ZR 1'
7498 _vomodules="zr zr2 $_vomodules"
7499 else
7500 _res_comment="libavcodec (static) is required by zr, sorry"
7501 _novomodules="zr $_novomodules"
7502 def_zr='#undef CONFIG_ZR'
7504 else
7505 def_zr='#undef CONFIG_ZR'
7506 _novomodules="zr zr2 $_novomodules"
7508 echores "$_zr"
7510 # mencoder requires (optional) those libs: libmp3lame
7511 if test "$_mencoder" != no ; then
7513 echocheck "libmp3lame"
7514 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7515 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7516 if test "$_mp3lame" = auto ; then
7517 _mp3lame=no
7518 cat > $TMPC <<EOF
7519 #include <lame/lame.h>
7520 int main(void) { lame_version_t lv; (void) lame_init();
7521 get_lame_version_numerical(&lv);
7522 return 0; }
7524 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7526 if test "$_mp3lame" = yes ; then
7527 def_mp3lame="#define CONFIG_MP3LAME 1"
7528 _ld_mp3lame=-lmp3lame
7529 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7530 cat > $TMPC << EOF
7531 #include <lame/lame.h>
7532 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7534 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7535 cat > $TMPC << EOF
7536 #include <lame/lame.h>
7537 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7539 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7540 test "$_mp3lame_lavc" = auto && _mp3lame_lavc=yes
7541 if test "$_mp3lame_lavc" = yes ; then
7542 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 1"
7543 _libavencoders="$_libavencoders LIBMP3LAME_ENCODER"
7544 libs_mplayer="$libs_mplayer $_ld_mp3lame"
7546 else
7547 _mp3lame_lavc=no
7548 def_mp3lame='#undef CONFIG_MP3LAME'
7549 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 0"
7551 _res_comment="in libavcodec: $_mp3lame_lavc"
7552 echores "$_mp3lame"
7554 fi # test "$_mencoder" != no
7556 echocheck "mencoder"
7557 if test "$_mencoder" = yes ; then
7558 def_muxers='#define CONFIG_MUXERS 1'
7559 else
7560 # mpeg1video for vf_lavc, snow for vf_uspp and vf_mcdeint, png for vf_screenshot
7561 _libavencoders="MPEG1VIDEO_ENCODER SNOW_ENCODER"
7562 test "$_zlib" = yes && _libavencoders="$_libavencoders PNG_ENCODER"
7563 _libavmuxers=""
7564 def_muxers='#define CONFIG_MUXERS 0'
7566 echores "$_mencoder"
7569 echocheck "UnRAR executable"
7570 if test "$_unrar_exec" = auto ; then
7571 _unrar_exec="yes"
7572 mingw32 && _unrar_exec="no"
7574 if test "$_unrar_exec" = yes ; then
7575 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7576 else
7577 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7579 echores "$_unrar_exec"
7581 echocheck "TV interface"
7582 if test "$_tv" = yes ; then
7583 def_tv='#define CONFIG_TV 1'
7584 _inputmodules="tv $_inputmodules"
7585 else
7586 _noinputmodules="tv $_noinputmodules"
7587 def_tv='#undef CONFIG_TV'
7589 echores "$_tv"
7592 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7593 echocheck "*BSD BT848 bt8xx header"
7594 _ioctl_bt848_h=no
7595 for file in "machine/ioctl_bt848.h" \
7596 "dev/bktr/ioctl_bt848.h" \
7597 "dev/video/bktr/ioctl_bt848.h" \
7598 "dev/ic/bt8xx.h" ; do
7599 cat > $TMPC <<EOF
7600 #include <sys/types.h>
7601 #include <sys/ioctl.h>
7602 #include <$file>
7603 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7605 if cc_check ; then
7606 _ioctl_bt848_h=yes
7607 _ioctl_bt848_h_name="$file"
7608 break;
7610 done
7611 if test "$_ioctl_bt848_h" = yes ; then
7612 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7613 _res_comment="using $_ioctl_bt848_h_name"
7614 else
7615 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7617 echores "$_ioctl_bt848_h"
7619 echocheck "*BSD ioctl_meteor.h"
7620 _ioctl_meteor_h=no
7621 for file in "machine/ioctl_meteor.h" \
7622 "dev/bktr/ioctl_meteor.h" \
7623 "dev/video/bktr/ioctl_meteor.h" ; do
7624 cat > $TMPC <<EOF
7625 #include <sys/types.h>
7626 #include <$file>
7627 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7629 if cc_check ; then
7630 _ioctl_meteor_h=yes
7631 _ioctl_meteor_h_name="$file"
7632 break;
7634 done
7635 if test "$_ioctl_meteor_h" = yes ; then
7636 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7637 _res_comment="using $_ioctl_meteor_h_name"
7638 else
7639 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7641 echores "$_ioctl_meteor_h"
7643 echocheck "*BSD BrookTree 848 TV interface"
7644 if test "$_tv_bsdbt848" = auto ; then
7645 _tv_bsdbt848=no
7646 if test "$_tv" = yes ; then
7647 cat > $TMPC <<EOF
7648 #include <sys/types.h>
7649 $def_ioctl_meteor_h_name
7650 $def_ioctl_bt848_h_name
7651 #ifdef IOCTL_METEOR_H_NAME
7652 #include IOCTL_METEOR_H_NAME
7653 #endif
7654 #ifdef IOCTL_BT848_H_NAME
7655 #include IOCTL_BT848_H_NAME
7656 #endif
7657 int main(void) {
7658 ioctl(0, METEORSINPUT, 0);
7659 ioctl(0, TVTUNER_GETFREQ, 0);
7660 return 0;
7663 cc_check && _tv_bsdbt848=yes
7666 if test "$_tv_bsdbt848" = yes ; then
7667 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7668 _inputmodules="tv-bsdbt848 $_inputmodules"
7669 else
7670 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7671 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7673 echores "$_tv_bsdbt848"
7674 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7677 echocheck "DirectShow TV interface"
7678 if test "$_tv_dshow" = auto ; then
7679 _tv_dshow=no
7680 if test "$_tv" = yes && win32 ; then
7681 cat > $TMPC <<EOF
7682 #include <ole2.h>
7683 int main(void) {
7684 void* p;
7685 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7686 return 0;
7689 cc_check -lole32 -luuid && _tv_dshow=yes
7692 if test "$_tv_dshow" = yes ; then
7693 _inputmodules="tv-dshow $_inputmodules"
7694 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7695 extra_ldflags="$extra_ldflags -lole32 -luuid"
7696 else
7697 _noinputmodules="tv-dshow $_noinputmodules"
7698 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7700 echores "$_tv_dshow"
7703 echocheck "Video 4 Linux TV interface"
7704 if test "$_tv_v4l1" = auto ; then
7705 _tv_v4l1=no
7706 if test "$_tv" = yes && linux ; then
7707 cat > $TMPC <<EOF
7708 #include <stdlib.h>
7709 #include <linux/videodev.h>
7710 int main(void) { return 0; }
7712 cc_check && _tv_v4l1=yes
7715 if test "$_tv_v4l1" = yes ; then
7716 _audio_input=yes
7717 _tv_v4l=yes
7718 def_tv_v4l='#define CONFIG_TV_V4L 1'
7719 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7720 _inputmodules="tv-v4l $_inputmodules"
7721 else
7722 _noinputmodules="tv-v4l1 $_noinputmodules"
7723 def_tv_v4l='#undef CONFIG_TV_V4L'
7725 echores "$_tv_v4l1"
7728 echocheck "Video 4 Linux 2 TV interface"
7729 if test "$_tv_v4l2" = auto ; then
7730 _tv_v4l2=no
7731 if test "$_tv" = yes && linux ; then
7732 cat > $TMPC <<EOF
7733 #include <stdlib.h>
7734 #include <linux/types.h>
7735 #include <linux/videodev2.h>
7736 int main(void) { return 0; }
7738 cc_check && _tv_v4l2=yes
7741 if test "$_tv_v4l2" = yes ; then
7742 _audio_input=yes
7743 _tv_v4l=yes
7744 def_tv_v4l='#define CONFIG_TV_V4L 1'
7745 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7746 _inputmodules="tv-v4l2 $_inputmodules"
7747 else
7748 _noinputmodules="tv-v4l2 $_noinputmodules"
7749 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7751 echores "$_tv_v4l2"
7754 echocheck "Radio interface"
7755 if test "$_radio" = yes ; then
7756 def_radio='#define CONFIG_RADIO 1'
7757 _inputmodules="radio $_inputmodules"
7758 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7759 _radio_capture=no
7761 if test "$_radio_capture" = yes ; then
7762 _audio_input=yes
7763 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7764 else
7765 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7767 else
7768 _noinputmodules="radio $_noinputmodules"
7769 def_radio='#undef CONFIG_RADIO'
7770 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7771 _radio_capture=no
7773 echores "$_radio"
7774 echocheck "Capture for Radio interface"
7775 echores "$_radio_capture"
7777 echocheck "Video 4 Linux 2 Radio interface"
7778 if test "$_radio_v4l2" = auto ; then
7779 _radio_v4l2=no
7780 if test "$_radio" = yes && linux ; then
7781 cat > $TMPC <<EOF
7782 #include <stdlib.h>
7783 #include <linux/types.h>
7784 #include <linux/videodev2.h>
7785 int main(void) { return 0; }
7787 cc_check && _radio_v4l2=yes
7790 if test "$_radio_v4l2" = yes ; then
7791 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7792 else
7793 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7795 echores "$_radio_v4l2"
7797 echocheck "Video 4 Linux Radio interface"
7798 if test "$_radio_v4l" = auto ; then
7799 _radio_v4l=no
7800 if test "$_radio" = yes && linux ; then
7801 cat > $TMPC <<EOF
7802 #include <stdlib.h>
7803 #include <linux/videodev.h>
7804 int main(void) { return 0; }
7806 cc_check && _radio_v4l=yes
7809 if test "$_radio_v4l" = yes ; then
7810 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7811 else
7812 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7814 echores "$_radio_v4l"
7816 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7817 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7818 echocheck "*BSD BrookTree 848 Radio interface"
7819 _radio_bsdbt848=no
7820 cat > $TMPC <<EOF
7821 #include <sys/types.h>
7822 $def_ioctl_bt848_h_name
7823 #ifdef IOCTL_BT848_H_NAME
7824 #include IOCTL_BT848_H_NAME
7825 #endif
7826 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7828 cc_check && _radio_bsdbt848=yes
7829 echores "$_radio_bsdbt848"
7830 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7832 if test "$_radio_bsdbt848" = yes ; then
7833 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7834 else
7835 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7838 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7839 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7840 die "Radio driver requires BSD BT848, V4L or V4L2!"
7843 echocheck "Video 4 Linux 2 MPEG PVR interface"
7844 if test "$_pvr" = auto ; then
7845 _pvr=no
7846 if test "$_tv_v4l2" = yes && linux ; then
7847 cat > $TMPC <<EOF
7848 #include <stdlib.h>
7849 #include <inttypes.h>
7850 #include <linux/types.h>
7851 #include <linux/videodev2.h>
7852 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7854 cc_check && _pvr=yes
7857 if test "$_pvr" = yes ; then
7858 def_pvr='#define CONFIG_PVR 1'
7859 _inputmodules="pvr $_inputmodules"
7860 else
7861 _noinputmodules="pvr $_noinputmodules"
7862 def_pvr='#undef CONFIG_PVR'
7864 echores "$_pvr"
7867 echocheck "ftp"
7868 if ! beos && test "$_ftp" = yes ; then
7869 def_ftp='#define CONFIG_FTP 1'
7870 _inputmodules="ftp $_inputmodules"
7871 else
7872 _noinputmodules="ftp $_noinputmodules"
7873 def_ftp='#undef CONFIG_FTP'
7875 echores "$_ftp"
7877 echocheck "vstream client"
7878 if test "$_vstream" = auto ; then
7879 _vstream=no
7880 cat > $TMPC <<EOF
7881 #include <vstream-client.h>
7882 void vstream_error(const char *format, ... ) {}
7883 int main(void) { vstream_start(); return 0; }
7885 cc_check -lvstream-client && _vstream=yes
7887 if test "$_vstream" = yes ; then
7888 def_vstream='#define CONFIG_VSTREAM 1'
7889 _inputmodules="vstream $_inputmodules"
7890 extra_ldflags="$extra_ldflags -lvstream-client"
7891 else
7892 _noinputmodules="vstream $_noinputmodules"
7893 def_vstream='#undef CONFIG_VSTREAM'
7895 echores "$_vstream"
7898 echocheck "OSD menu"
7899 if test "$_menu" = yes ; then
7900 def_menu='#define CONFIG_MENU 1'
7901 test $_dvbin = "yes" && _menu_dvbin=yes
7902 else
7903 def_menu='#undef CONFIG_MENU'
7904 _menu_dvbin=no
7906 echores "$_menu"
7909 echocheck "Subtitles sorting"
7910 if test "$_sortsub" = yes ; then
7911 def_sortsub='#define CONFIG_SORTSUB 1'
7912 else
7913 def_sortsub='#undef CONFIG_SORTSUB'
7915 echores "$_sortsub"
7918 echocheck "XMMS inputplugin support"
7919 if test "$_xmms" = yes ; then
7920 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7921 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7922 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7923 else
7924 _xmmsplugindir=/usr/lib/xmms/Input
7925 _xmmslibdir=/usr/lib
7928 def_xmms='#define CONFIG_XMMS 1'
7929 if darwin ; then
7930 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7931 else
7932 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7934 else
7935 def_xmms='#undef CONFIG_XMMS'
7937 echores "$_xmms"
7940 # --------------- GUI specific tests begin -------------------
7941 echocheck "GUI"
7942 echo "$_gui"
7943 if test "$_gui" = yes ; then
7945 # Required libraries
7946 if test "$_libavcodec" != yes ||
7947 ! echo $_libavdecoders | grep -q PNG_DECODER ; then
7948 die "The GUI requires libavcodec with PNG support (needs zlib)."
7950 test "$_freetype" = no && test "$_bitmap_font" = no && \
7951 die "The GUI requires either FreeType or bitmap font support."
7952 if ! win32 ; then
7953 _gui_gtk=yes
7954 test "$_x11" != yes && die "X11 support required for GUI compilation."
7956 echocheck "XShape extension"
7957 if test "$_xshape" = auto ; then
7958 _xshape=no
7959 cat > $TMPC << EOF
7960 #include <X11/Xlib.h>
7961 #include <X11/Xproto.h>
7962 #include <X11/Xutil.h>
7963 #include <X11/extensions/shape.h>
7964 #include <stdlib.h>
7965 int main(void) {
7966 char *name = ":0.0";
7967 Display *wsDisplay;
7968 int exitvar = 0;
7969 int eventbase, errorbase;
7970 if (getenv("DISPLAY"))
7971 name=getenv("DISPLAY");
7972 wsDisplay=XOpenDisplay(name);
7973 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase))
7974 exitvar=1;
7975 XCloseDisplay(wsDisplay);
7976 return exitvar;
7979 cc_check -lXext && _xshape=yes
7981 if test "$_xshape" = yes ; then
7982 def_xshape='#define CONFIG_XSHAPE 1'
7983 else
7984 die "The GUI requires the X11 extension XShape (which was not found)."
7986 echores "$_xshape"
7988 #Check for GTK
7989 if test "$_gtk1" = no ; then
7990 #Check for GTK2 :
7991 echocheck "GTK+ version"
7993 if $_pkg_config gtk+-2.0 --exists ; then
7994 _gtk=$($_pkg_config gtk+-2.0 --modversion 2>/dev/null)
7995 extra_cflags="$extra_cflags $($_pkg_config gtk+-2.0 --cflags 2>/dev/null)"
7996 libs_mplayer="$libs_mplayer $($_pkg_config gtk+-2.0 --libs 2>/dev/null)"
7997 echores "$_gtk"
7999 # Check for GLIB2
8000 if $_pkg_config glib-2.0 --exists ; then
8001 echocheck "glib version"
8002 _glib=$($_pkg_config glib-2.0 --modversion 2>/dev/null)
8003 libs_mplayer="$libs_mplayer $($_pkg_config glib-2.0 --libs 2>/dev/null)"
8004 echores "$_glib"
8006 def_gui='#define CONFIG_GUI 1'
8007 def_gtk2='#define CONFIG_GTK2 1'
8008 else
8009 _gtk1=yes
8010 echo "GLIB-2 devel packages were not found, trying GTK 1.2"
8012 else
8013 echo "GTK-2 devel packages were not found, trying GTK 1.2"
8014 _gtk1=yes
8018 if test "$_gtk1" = yes ; then
8019 # Check for old GTK (1.2.x)
8020 echocheck "GTK version"
8021 if test -z "$_gtkconfig" ; then
8022 if ( gtk-config --version ) >/dev/null 2>&1 ; then
8023 _gtkconfig="gtk-config"
8024 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
8025 _gtkconfig="gtk12-config"
8026 else
8027 die "The GUI requires GTK devel packages (which were not found)."
8030 _gtk=$($_gtkconfig --version 2>&1)
8031 extra_cflags="$extra_cflags $($_gtkconfig --cflags 2>&1)"
8032 libs_mplayer="$libs_mplayer $($_gtkconfig --libs 2>&1)"
8033 echores "$_gtk (using $_gtkconfig)"
8035 # Check for GLIB
8036 echocheck "glib version"
8037 if test -z "$_glibconfig" ; then
8038 if ( glib-config --version ) >/dev/null 2>&1 ; then
8039 _glibconfig="glib-config"
8040 elif ( glib12-config --version ) >/dev/null 2>&1 ; then
8041 _glibconfig="glib12-config"
8042 else
8043 die "The GUI requires GLIB devel packages (which were not found)"
8046 _glib=$($_glibconfig --version 2>&1)
8047 libs_mplayer="$libs_mplayer $($_glibconfig --libs 2>&1)"
8048 echores "$_glib (using $_glibconfig)"
8050 def_gui='#define CONFIG_GUI 1'
8051 def_gtk2='#undef CONFIG_GTK2'
8054 else #if ! win32
8055 _gui_win32=yes
8056 libs_mplayer="$libs_mplayer -lcomdlg32 -lcomctl32 -lshell32 -lkernel32"
8057 def_gui='#define CONFIG_GUI 1'
8058 def_gtk2='#undef CONFIG_GTK2'
8059 fi #if ! win32
8061 else #if test "$_gui"
8062 def_gui='#undef CONFIG_GUI'
8063 def_gtk2='#undef CONFIG_GTK2'
8064 fi #if test "$_gui"
8065 # --------------- GUI specific tests end -------------------
8068 if test "$_charset" != "noconv" ; then
8069 def_charset="#define MSG_CHARSET \"$_charset\""
8070 else
8071 def_charset="#undef MSG_CHARSET"
8072 _charset="UTF-8"
8075 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
8076 echocheck "iconv program"
8077 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
8078 if test "$?" -ne 0 ; then
8079 echores "no"
8080 echo "No working iconv program found, use "
8081 echo "--charset=UTF-8 to continue anyway."
8082 echo "If you also have problems with iconv library functions use --charset=noconv."
8083 echo "Messages in the GTK-2 interface will be broken then."
8084 exit 1
8085 else
8086 echores "yes"
8090 #############################################################################
8092 echocheck "automatic gdb attach"
8093 if test "$_crash_debug" = yes ; then
8094 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
8095 else
8096 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
8097 _crash_debug=no
8099 echores "$_crash_debug"
8101 echocheck "compiler support for noexecstack"
8102 cat > $TMPC <<EOF
8103 int main(void) { return 0; }
8105 if cc_check -Wl,-z,noexecstack ; then
8106 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
8107 echores "yes"
8108 else
8109 echores "no"
8113 # Dynamic linking flags
8114 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
8115 _ld_dl_dynamic=''
8116 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
8117 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
8118 _ld_dl_dynamic='-rdynamic'
8121 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
8122 bsdos && extra_ldflags="$extra_ldflags -ldvd"
8123 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
8125 def_debug='#undef MP_DEBUG'
8126 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
8129 echocheck "joystick"
8130 def_joystick='#undef CONFIG_JOYSTICK'
8131 if test "$_joystick" = yes ; then
8132 if linux ; then
8133 # TODO add some check
8134 def_joystick='#define CONFIG_JOYSTICK 1'
8135 else
8136 _joystick="no"
8137 _res_comment="unsupported under $system_name"
8140 echores "$_joystick"
8142 echocheck "lirc"
8143 if test "$_lirc" = auto ; then
8144 _lirc=no
8145 cat > $TMPC <<EOF
8146 #include <lirc/lirc_client.h>
8147 int main(void) { return 0; }
8149 cc_check -llirc_client && _lirc=yes
8151 if test "$_lirc" = yes ; then
8152 def_lirc='#define CONFIG_LIRC 1'
8153 libs_mplayer="$libs_mplayer -llirc_client"
8154 else
8155 def_lirc='#undef CONFIG_LIRC'
8157 echores "$_lirc"
8159 echocheck "lircc"
8160 if test "$_lircc" = auto ; then
8161 _lircc=no
8162 cat > $TMPC <<EOF
8163 #include <lirc/lircc.h>
8164 int main(void) { return 0; }
8166 cc_check -llircc && _lircc=yes
8168 if test "$_lircc" = yes ; then
8169 def_lircc='#define CONFIG_LIRCC 1'
8170 libs_mplayer="$libs_mplayer -llircc"
8171 else
8172 def_lircc='#undef CONFIG_LIRCC'
8174 echores "$_lircc"
8176 if arm; then
8177 # Detect maemo development platform libraries availability (http://www.maemo.org),
8178 # they are used when run on Nokia 770|8x0
8179 echocheck "maemo (Nokia 770|8x0)"
8180 if test "$_maemo" = auto ; then
8181 _maemo=no
8182 cat > $TMPC << EOF
8183 #include <libosso.h>
8184 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
8186 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
8188 if test "$_maemo" = yes ; then
8189 def_maemo='#define CONFIG_MAEMO 1'
8190 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
8191 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
8192 else
8193 def_maemo='#undef CONFIG_MAEMO'
8195 echores "$_maemo"
8198 #############################################################################
8200 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
8201 # the OMF format needs to come after the 'extern symbol prefix' check, which
8202 # uses nm.
8203 if os2 ; then
8204 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
8207 # linker paths should be the same for mencoder and mplayer
8208 _ld_tmp=""
8209 for I in $libs_mplayer ; do
8210 _tmp=$(echo $I | sed -e 's/^-L.*$//')
8211 if test -z "$_tmp" ; then
8212 extra_ldflags="$extra_ldflags $I"
8213 else
8214 _ld_tmp="$_ld_tmp $I"
8216 done
8217 libs_mplayer=$_ld_tmp
8220 #############################################################################
8221 # 64 bit file offsets?
8222 if test "$_largefiles" = yes || freebsd ; then
8223 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
8224 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
8225 # dvdread support requires this (for off64_t)
8226 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
8230 CXXFLAGS=" $CFLAGS -D__STDC_LIMIT_MACROS"
8232 # This must be the last test to be performed. Any other tests following it
8233 # could fail due to linker errors. libdvdnavmini is intentionally not linked
8234 # against libdvdread (to permit MPlayer to use its own copy of the library).
8235 # So any compilation using the flags added here but not linking against
8236 # libdvdread can fail.
8237 echocheck "DVD support (libdvdnav)"
8238 dvdnav_internal=no
8239 if test "$_dvdnav" = auto ; then
8240 if test "$_dvdread_internal" = yes ; then
8241 _dvdnav=yes
8242 dvdnav_internal=yes
8243 _res_comment="internal"
8244 else
8245 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
8248 if test "$_dvdnav" = auto ; then
8249 cat > $TMPC <<EOF
8250 #include <inttypes.h>
8251 #include <dvdnav/dvdnav.h>
8252 int main(void) { dvdnav_t *dvd=0; return 0; }
8254 _dvdnav=no
8255 _dvdnavdir=$($_dvdnavconfig --cflags)
8256 _dvdnavlibs=$($_dvdnavconfig --libs)
8257 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
8259 if test "$_dvdnav" = yes ; then
8260 _largefiles=yes
8261 def_dvdnav='#define CONFIG_DVDNAV 1'
8262 if test "$dvdnav_internal" = yes ; then
8263 cflags_libdvdnav="-Ilibdvdnav"
8264 _inputmodules="dvdnav(internal) $_inputmodules"
8265 else
8266 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
8267 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
8268 _inputmodules="dvdnav $_inputmodules"
8270 else
8271 def_dvdnav='#undef CONFIG_DVDNAV'
8272 _noinputmodules="dvdnav $_noinputmodules"
8274 echores "$_dvdnav"
8276 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
8277 # Read dvdnav comment above.
8279 #############################################################################
8280 echo "Creating config.mak"
8281 cat > config.mak << EOF
8282 # -------- Generated by configure -----------
8284 # Ensure that locale settings do not interfere with shell commands.
8285 export LC_ALL = C
8287 CONFIGURATION = $_configuration
8289 CHARSET = $_charset
8290 DOC_LANGS = $language_doc
8291 DOC_LANG_ALL = $doc_lang_all
8292 MAN_LANGS = $language_man
8293 MAN_LANG_ALL = $man_lang_all
8295 prefix = \$(DESTDIR)$_prefix
8296 BINDIR = \$(DESTDIR)$_bindir
8297 DATADIR = \$(DESTDIR)$_datadir
8298 LIBDIR = \$(DESTDIR)$_libdir
8299 MANDIR = \$(DESTDIR)$_mandir
8300 CONFDIR = \$(DESTDIR)$_confdir
8302 AR = $_ar
8303 AS = $_cc
8304 CC = $_cc
8305 CXX = $_cc
8306 HOST_CC = $_host_cc
8307 YASM = $_yasm
8308 INSTALL = $_install
8309 INSTALLSTRIP = $_install_strip
8310 RANLIB = $_ranlib
8311 WINDRES = $_windres
8313 CFLAGS = $CFLAGS $extra_cflags
8314 OPTFLAGS = $CFLAGS $extra_cflags
8315 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
8316 CFLAGS_DHAHELPER = $cflags_dhahelper
8317 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
8318 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
8319 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
8320 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
8321 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
8322 CFLAGS_STACKREALIGN = $cflags_stackrealign
8323 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
8324 CFLAGS_TREMOR_LOW = $cflags_tremor_low
8325 YASMFLAGS = $YASMFLAGS
8327 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
8328 EXTRALIBS_MPLAYER = $libs_mplayer
8329 EXTRALIBS_MENCODER = $libs_mencoder
8331 DEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.h,\$^) | sed "s,[0-9a-z._-]*: \(\$(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\\2&,"
8333 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 &,"
8334 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 &,"
8336 GETCH = $_getch
8337 HELP_FILE = $_mp_help
8338 TIMER = $_timer
8340 EXESUF = $_exesuf
8341 EXESUFS_ALL = .exe
8343 $_target_arch
8344 $_target_subarch
8345 $(echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/')
8347 MENCODER = $_mencoder
8348 MPLAYER = $_mplayer
8350 NEED_GETTIMEOFDAY = $_need_gettimeofday
8351 NEED_GLOB = $_need_glob
8352 NEED_MMAP = $_need_mmap
8353 NEED_SETENV = $_need_setenv
8354 NEED_SHMEM = $_need_shmem
8355 NEED_STRSEP = $_need_strsep
8356 NEED_SWAB = $_need_swab
8357 NEED_VSSCANF = $_need_vsscanf
8359 # features
8360 3DFX = $_3dfx
8361 AA = $_aa
8362 ALSA1X = $_alsa1x
8363 ALSA9 = $_alsa9
8364 ALSA5 = $_alsa5
8365 APPLE_IR = $_apple_ir
8366 APPLE_REMOTE = $_apple_remote
8367 ARTS = $_arts
8368 AUDIO_INPUT = $_audio_input
8369 BITMAP_FONT = $_bitmap_font
8370 BL = $_bl
8371 CACA = $_caca
8372 CDDA = $_cdda
8373 CDDB = $_cddb
8374 COREAUDIO = $_coreaudio
8375 COREVIDEO = $_corevideo
8376 DART = $_dart
8377 DFBMGA = $_dfbmga
8378 DGA = $_dga
8379 DIRECT3D = $_direct3d
8380 DIRECTFB = $_directfb
8381 DIRECTX = $_directx
8382 DVBIN = $_dvbin
8383 DVDNAV = $_dvdnav
8384 DVDNAV_INTERNAL = $dvdnav_internal
8385 DVDREAD = $_dvdread
8386 DVDREAD_INTERNAL = $_dvdread_internal
8387 DXR2 = $_dxr2
8388 DXR3 = $_dxr3
8389 ESD = $_esd
8390 FAAC=$_faac
8391 FAAD = $_faad
8392 FAAD_INTERNAL = $_faad_internal
8393 FASTMEMCPY = $_fastmemcpy
8394 $mak_hardcoded_tables
8395 $mak_libavcodec_mpegaudio_hp
8396 FBDEV = $_fbdev
8397 FREETYPE = $_freetype
8398 FTP = $_ftp
8399 GIF = $_gif
8400 GGI = $_ggi
8401 GL = $_gl
8402 GL_WIN32 = $_gl_win32
8403 GL_X11 = $_gl_x11
8404 MATRIXVIEW = $matrixview
8405 GUI = $_gui
8406 GUI_GTK = $_gui_gtk
8407 GUI_WIN32 = $_gui_win32
8408 HAVE_POSIX_SELECT = $_posix_select
8409 HAVE_SYS_MMAN_H = $_mman
8410 IVTV = $_ivtv
8411 JACK = $_jack
8412 JOYSTICK = $_joystick
8413 JPEG = $_jpeg
8414 KVA = $_kva
8415 LADSPA = $_ladspa
8416 LIBA52 = $_liba52
8417 LIBA52_INTERNAL = $_liba52_internal
8418 LIBASS = $_ass
8419 LIBASS_INTERNAL = $ass_internal
8420 LIBBS2B = $_libbs2b
8421 LIBDCA = $_libdca
8422 LIBDV = $_libdv
8423 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
8424 LIBLZO = $_liblzo
8425 LIBMAD = $_mad
8426 LIBMENU = $_menu
8427 LIBMENU_DVBIN = $_menu_dvbin
8428 LIBMPEG2 = $_libmpeg2
8429 LIBNEMESI = $_nemesi
8430 LIBNUT = $_libnut
8431 LIBSMBCLIENT = $_smb
8432 LIBTHEORA = $_theora
8433 LIRC = $_lirc
8434 LIVE555 = $_live
8435 MACOSX_BUNDLE = $_macosx_bundle
8436 MACOSX_FINDER = $_macosx_finder
8437 MD5SUM = $_md5sum
8438 MGA = $_mga
8439 MNG = $_mng
8440 MP3LAME = $_mp3lame
8441 MP3LIB = $_mp3lib
8442 MUSEPACK = $_musepack
8443 NAS = $_nas
8444 NATIVE_RTSP = $_native_rtsp
8445 NETWORK = $_network
8446 OPENAL = $_openal
8447 OSS = $_ossaudio
8448 PE_EXECUTABLE = $_pe_executable
8449 PNG = $_png
8450 PNM = $_pnm
8451 PRIORITY = $_priority
8452 PULSE = $_pulse
8453 PVR = $_pvr
8454 QTX_CODECS = $_qtx
8455 QTX_CODECS_WIN32 = $_qtx_codecs_win32
8456 QTX_EMULATION = $_qtx_emulation
8457 QUARTZ = $_quartz
8458 RADIO=$_radio
8459 RADIO_CAPTURE=$_radio_capture
8460 REAL_CODECS = $_real
8461 S3FB = $_s3fb
8462 SDL = $_sdl
8463 SPEEX = $_speex
8464 STREAM_CACHE = $_stream_cache
8465 SGIAUDIO = $_sgiaudio
8466 SUNAUDIO = $_sunaudio
8467 SVGA = $_svga
8468 TDFXFB = $_tdfxfb
8469 TDFXVID = $_tdfxvid
8470 TGA = $_tga
8471 TOOLAME=$_toolame
8472 TREMOR_INTERNAL = $_tremor_internal
8473 TV = $_tv
8474 TV_BSDBT848 = $_tv_bsdbt848
8475 TV_DSHOW = $_tv_dshow
8476 TV_V4L = $_tv_v4l
8477 TV_V4L1 = $_tv_v4l1
8478 TV_V4L2 = $_tv_v4l2
8479 TWOLAME=$_twolame
8480 UNRAR_EXEC = $_unrar_exec
8481 V4L2 = $_v4l2
8482 VCD = $_vcd
8483 VDPAU = $_vdpau
8484 VESA = $_vesa
8485 VIDIX = $_vidix
8486 VIDIX_PCIDB = $_vidix_pcidb_val
8487 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8488 VIDIX_IVTV=$_vidix_drv_ivtv
8489 VIDIX_MACH64=$_vidix_drv_mach64
8490 VIDIX_MGA=$_vidix_drv_mga
8491 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8492 VIDIX_NVIDIA=$_vidix_drv_nvidia
8493 VIDIX_PM2=$_vidix_drv_pm2
8494 VIDIX_PM3=$_vidix_drv_pm3
8495 VIDIX_RADEON=$_vidix_drv_radeon
8496 VIDIX_RAGE128=$_vidix_drv_rage128
8497 VIDIX_S3=$_vidix_drv_s3
8498 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8499 VIDIX_SIS=$_vidix_drv_sis
8500 VIDIX_UNICHROME=$_vidix_drv_unichrome
8501 VORBIS = $_vorbis
8502 VSTREAM = $_vstream
8503 WII = $_wii
8504 WIN32DLL = $_win32dll
8505 WIN32WAVEOUT = $_win32waveout
8506 WIN32_EMULATION = $_win32_emulation
8507 WINVIDIX = $winvidix
8508 X11 = $_x11
8509 X264 = $_x264
8510 XANIM_CODECS = $_xanim
8511 XMGA = $_xmga
8512 XMMS_PLUGINS = $_xmms
8513 XV = $_xv
8514 XVID4 = $_xvid
8515 XVIDIX = $xvidix
8516 XVMC = $_xvmc
8517 XVR100 = $_xvr100
8518 YUV4MPEG = $_yuv4mpeg
8519 ZR = $_zr
8521 # FFmpeg
8522 LIBAVUTIL = $_libavutil
8523 LIBAVUTIL_A = $_libavutil_a
8524 LIBAVUTIL_SO = $_libavutil_so
8525 LIBAVCODEC = $_libavcodec
8526 LIBAVCODEC_A = $_libavcodec_a
8527 LIBAVCODEC_SO = $_libavcodec_so
8528 LIBAVFORMAT = $_libavformat
8529 LIBAVFORMAT_A = $_libavformat_a
8530 LIBAVFORMAT_SO = $_libavformat_so
8531 LIBPOSTPROC = $_libpostproc
8532 LIBPOSTPROC_A = $_libpostproc_a
8533 LIBPOSTPROC_SO = $_libpostproc_so
8534 LIBSWSCALE = $_libswscale
8535 LIBSWSCALE_A = $_libswscale_a
8536 LIBSWSCALE_SO = $_libswscale_so
8538 HOSTCC=\$(HOST_CC)
8539 HOSTCFLAGS=-D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 -O3
8540 HOSTLIBS=-lm
8541 CC_O=-o \$@
8542 LD=gcc
8543 CONFIG_STATIC=yes
8544 SRC_PATH=..
8545 BUILD_ROOT=..
8546 LIBPREF=lib
8547 LIBSUF=.a
8548 LIBNAME=\$(LIBPREF)\$(NAME)\$(LIBSUF)
8549 FULLNAME=\$(NAME)\$(BUILDSUF)
8551 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8552 CONFIG_AANDCT=yes
8553 CONFIG_FFT=yes
8554 CONFIG_FFT_MMX=$fft_mmx
8555 CONFIG_GOLOMB=yes
8556 CONFIG_LPC=yes
8557 CONFIG_MDCT=yes
8558 CONFIG_RDFT=yes
8560 CONFIG_BZLIB=$bzlib
8561 CONFIG_ENCODERS=yes
8562 CONFIG_GPL=yes
8563 CONFIG_LIBDIRAC_DECODER=$_libdirac_lavc
8564 CONFIG_LIBDIRAC_ENCODER=$_libdirac_lavc
8565 CONFIG_LIBFAAC_ENCODER=$_faac_lavc
8566 CONFIG_LIBMP3LAME_ENCODER=$_mp3lame_lavc
8567 CONFIG_LIBOPENCORE_AMRNB_DECODER=$_libopencore_amrnb
8568 CONFIG_LIBOPENCORE_AMRNB_ENCODER=$_libopencore_amrnb
8569 CONFIG_LIBOPENCORE_AMRWB_DECODER=$_libopencore_amrwb
8570 OCNFIG_LIBOPENJPEG_DECODER = $libopenjpeg
8571 OCNFIG_LIBOPENJPEG_ENCODER = $libopenjpeg
8572 CONFIG_LIBSCHROEDINGER_DECODER=$_libschroedinger_lavc
8573 CONFIG_LIBSCHROEDINGER_ENCODER=$_libschroedinger_lavc
8574 CONFIG_LIBVORBIS_ENCODER=$_libvorbis
8575 CONFIG_LIBX264_ENCODER=$_x264_lavc
8576 CONFIG_LIBXVID_ENCODER=$_xvid_lavc
8577 CONFIG_MLIB = $_mlib
8578 CONFIG_MUXERS=$_mencoder
8579 CONFIG_POSTPROC = yes
8580 # Prevent building libavcodec/imgresample.c with conflicting symbols
8581 CONFIG_SWSCALE=yes
8582 CONFIG_VDPAU=$_vdpau
8583 CONFIG_XVMC=$_xvmc
8584 CONFIG_ZLIB=$_zlib
8586 HAVE_PTHREADS = $_pthreads
8587 HAVE_SHM = $_shm
8588 HAVE_W32THREADS = $_w32threads
8589 HAVE_YASM = $_have_yasm
8591 $(echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8592 $(echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8593 $(echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8594 $(echo $_libavdemuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8595 $(echo $_libavmuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8596 $(echo $_libavprotocols | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8597 $(echo $_libavbsfs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8600 #############################################################################
8602 ff_config_enable () {
8603 _nprefix=$3;
8604 test -z "$_nprefix" && _nprefix='CONFIG'
8605 for part in $1; do
8606 if $(echo $2 | grep -q -E "(^| )$part($| )"); then
8607 echo "#define ${_nprefix}_$part 1"
8608 else
8609 echo "#define ${_nprefix}_$part 0"
8611 done
8614 echo "Creating config.h"
8615 cat > $TMPH << EOF
8616 /*----------------------------------------------------------------------------
8617 ** This file has been automatically generated by configure any changes in it
8618 ** will be lost when you run configure again.
8619 ** Instead of modifying definitions here, use the --enable/--disable options
8620 ** of the configure script! See ./configure --help for details.
8621 *---------------------------------------------------------------------------*/
8623 #ifndef MPLAYER_CONFIG_H
8624 #define MPLAYER_CONFIG_H
8626 /* Undefine this if you do not want to select mono audio (left or right)
8627 with a stereo MPEG layer 2/3 audio stream. The command line option
8628 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8629 right-only), with 0 being the default.
8631 #define CONFIG_FAKE_MONO 1
8633 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8634 #define MAX_OUTBURST 65536
8636 /* set up audio OUTBURST. Do not change this! */
8637 #define OUTBURST 512
8639 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8640 #undef FAST_OSD
8641 #undef FAST_OSD_TABLE
8643 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8644 #define MPEG12_POSTPROC 1
8645 #define ATTRIBUTE_ALIGNED_MAX 16
8649 #define CONFIGURATION "$_configuration"
8651 #define MPLAYER_DATADIR "$_datadir"
8652 #define MPLAYER_CONFDIR "$_confdir"
8653 #define MPLAYER_LIBDIR "$_libdir"
8655 /* definitions needed by included libraries */
8656 #define HAVE_INTTYPES_H 1
8657 /* libmpeg2 + FFmpeg */
8658 $def_fast_inttypes
8659 /* libdvdcss */
8660 #define HAVE_ERRNO_H 1
8661 /* libdvdcss + libdvdread */
8662 #define HAVE_LIMITS_H 1
8663 /* libdvdcss + libfaad2 */
8664 #define HAVE_UNISTD_H 1
8665 /* libfaad2 + libdvdread */
8666 #define STDC_HEADERS 1
8667 #define HAVE_MEMCPY 1
8668 /* libfaad2 */
8669 #define HAVE_STRING_H 1
8670 #define HAVE_STRINGS_H 1
8671 #define HAVE_SYS_STAT_H 1
8672 #define HAVE_SYS_TYPES_H 1
8673 /* libdvdnav */
8674 #define READ_CACHE_TRACE 0
8675 /* libdvdread */
8676 #define HAVE_DLFCN_H 1
8677 $def_dvdcss
8680 /* system headers */
8681 $def_alloca_h
8682 $def_alsa_asoundlib_h
8683 $def_altivec_h
8684 $def_malloc_h
8685 $def_mman_h
8686 $def_mman_has_map_failed
8687 $def_soundcard_h
8688 $def_sys_asoundlib_h
8689 $def_sys_soundcard_h
8690 $def_sys_sysinfo_h
8691 $def_termios_h
8692 $def_termios_sys_h
8693 $def_winsock2_h
8696 /* system functions */
8697 $def_exp2
8698 $def_exp2f
8699 $def_gethostbyname2
8700 $def_gettimeofday
8701 $def_glob
8702 $def_langinfo
8703 $def_llrint
8704 $def_log2
8705 $def_log2f
8706 $def_lrint
8707 $def_lrintf
8708 $def_map_memalign
8709 $def_memalign
8710 $def_nanosleep
8711 $def_posix_select
8712 $def_round
8713 $def_roundf
8714 $def_select
8715 $def_setenv
8716 $def_shm
8717 $def_strsep
8718 $def_swab
8719 $def_sysi86
8720 $def_sysi86_iv
8721 $def_termcap
8722 $def_termios
8723 $def_truncf
8724 $def_vsscanf
8727 /* system-specific features */
8728 $def_asmalign_pot
8729 $def_builtin_expect
8730 $def_dl
8731 $def_extern_asm
8732 $def_extern_prefix
8733 $def_iconv
8734 $def_kstat
8735 $def_macosx_bundle
8736 $def_macosx_finder
8737 $def_maemo
8738 $def_named_asm_args
8739 $def_priority
8740 $def_quicktime
8741 $def_restrict_keyword
8742 $def_rtc
8743 $def_unrar_exec
8746 /* configurable options */
8747 $def_charset
8748 $def_crash_debug
8749 $def_debug
8750 $def_dynamic_plugins
8751 $def_fastmemcpy
8752 $def_hardcoded_tables
8753 $def_menu
8754 $def_runtime_cpudetection
8755 $def_sighandler
8756 $def_sortsub
8757 $def_stream_cache
8758 $def_pthread_cache
8761 /* CPU stuff */
8762 #define __CPU__ $iproc
8763 $def_words_endian
8764 $def_bigendian
8765 $(ff_config_enable "$_arch_all" "$_arch" "ARCH")
8766 $(ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE")
8769 /* DVD/VCD/CD */
8770 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8771 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8772 $def_bsdi_dvd
8773 $def_cddb
8774 $def_cdio
8775 $def_cdparanoia
8776 $def_cdrom
8777 $def_dvd
8778 $def_dvd_bsd
8779 $def_dvd_darwin
8780 $def_dvd_linux
8781 $def_dvd_openbsd
8782 $def_dvdio
8783 $def_dvdnav
8784 $def_dvdread
8785 $def_hpux_scsi_h
8786 $def_libcdio
8787 $def_sol_scsi_h
8788 $def_vcd
8791 /* codec libraries */
8792 $def_faac
8793 $def_faad
8794 $def_faad_internal
8795 $def_liba52
8796 $def_liba52_internal
8797 $def_libdca
8798 $def_libdv
8799 $def_liblzo
8800 $def_libmpeg2
8801 $def_mad
8802 $def_mp3lame
8803 $def_mp3lame_preset
8804 $def_mp3lame_preset_medium
8805 $def_mp3lib
8806 $def_musepack
8807 $def_speex
8808 $def_theora
8809 $def_toolame
8810 $def_tremor
8811 $def_twolame
8812 $def_vorbis
8813 $def_x264
8814 $def_xvid
8815 $def_zlib
8817 $def_libnut
8820 /* binary codecs */
8821 $def_qtx
8822 $def_qtx_win32
8823 $def_real
8824 $def_real_path
8825 $def_win32_loader
8826 $def_win32dll
8827 #define WIN32_PATH "$_win32codecsdir"
8828 $def_xanim
8829 $def_xanim_path
8830 $def_xmms
8831 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8834 /* GUI */
8835 $def_gtk2
8836 $def_gui
8837 $def_xshape
8840 /* Audio output drivers */
8841 $def_alsa
8842 $def_alsa1x
8843 $def_alsa5
8844 $def_alsa9
8845 $def_arts
8846 $def_coreaudio
8847 $def_dart
8848 $def_esd
8849 $def_esd_latency
8850 $def_jack
8851 $def_nas
8852 $def_openal
8853 $def_openal_h
8854 $def_ossaudio
8855 $def_ossaudio_devdsp
8856 $def_ossaudio_devmixer
8857 $def_pulse
8858 $def_sgiaudio
8859 $def_sunaudio
8860 $def_win32waveout
8862 $def_ladspa
8863 $def_libbs2b
8866 /* input */
8867 $def_apple_ir
8868 $def_apple_remote
8869 $def_ioctl_bt848_h_name
8870 $def_ioctl_meteor_h_name
8871 $def_joystick
8872 $def_lirc
8873 $def_lircc
8874 $def_pvr
8875 $def_radio
8876 $def_radio_bsdbt848
8877 $def_radio_capture
8878 $def_radio_v4l
8879 $def_radio_v4l2
8880 $def_tv
8881 $def_tv_bsdbt848
8882 $def_tv_dshow
8883 $def_tv_v4l
8884 $def_tv_v4l1
8885 $def_tv_v4l2
8888 /* font stuff */
8889 $def_ass
8890 $def_ass_internal
8891 $def_bitmap_font
8892 $def_enca
8893 $def_fontconfig
8894 $def_freetype
8895 $def_fribidi
8898 /* networking */
8899 $def_closesocket
8900 $def_ftp
8901 $def_inet6
8902 $def_inet_aton
8903 $def_inet_pton
8904 $def_live
8905 $def_nemesi
8906 $def_network
8907 $def_smb
8908 $def_socklen_t
8909 $def_vstream
8912 /* libvo options */
8913 $def_3dfx
8914 $def_aa
8915 $def_bl
8916 $def_caca
8917 $def_corevideo
8918 $def_dfbmga
8919 $def_dga
8920 $def_dga1
8921 $def_dga2
8922 $def_direct3d
8923 $def_directfb
8924 $def_directfb_version
8925 $def_directx
8926 $def_dvb
8927 $def_dvb_head
8928 $def_dvbin
8929 $def_dxr2
8930 $def_dxr3
8931 $def_fbdev
8932 $def_ggi
8933 $def_ggiwmh
8934 $def_gif
8935 $def_gif_4
8936 $def_gif_tvt_hack
8937 $def_gl
8938 $def_gl_win32
8939 $def_gl_x11
8940 $def_matrixview
8941 $def_ivtv
8942 $def_jpeg
8943 $def_kva
8944 $def_md5sum
8945 $def_mga
8946 $def_mng
8947 $def_png
8948 $def_pnm
8949 $def_quartz
8950 $def_s3fb
8951 $def_sdl
8952 $def_sdl_sdl_h
8953 $def_sdlbuggy
8954 $def_svga
8955 $def_tdfxfb
8956 $def_tdfxvid
8957 $def_tga
8958 $def_v4l2
8959 $def_vdpau
8960 $def_vesa
8961 $def_vidix
8962 $def_vidix_drv_cyberblade
8963 $def_vidix_drv_ivtv
8964 $def_vidix_drv_mach64
8965 $def_vidix_drv_mga
8966 $def_vidix_drv_mga_crtc2
8967 $def_vidix_drv_nvidia
8968 $def_vidix_drv_pm3
8969 $def_vidix_drv_radeon
8970 $def_vidix_drv_rage128
8971 $def_vidix_drv_s3
8972 $def_vidix_drv_sh_veu
8973 $def_vidix_drv_sis
8974 $def_vidix_drv_unichrome
8975 $def_vidix_pfx
8976 $def_vm
8977 $def_wii
8978 $def_x11
8979 $def_xdpms
8980 $def_xf86keysym
8981 $def_xinerama
8982 $def_xmga
8983 $def_xss
8984 $def_xv
8985 $def_xvmc
8986 $def_xvr100
8987 $def_yuv4mpeg
8988 $def_zr
8991 /* FFmpeg */
8992 $def_libavcodec
8993 $def_libavcodec_a
8994 $def_libavcodec_so
8995 $def_libavformat
8996 $def_libavformat_a
8997 $def_libavformat_so
8998 $def_libavutil
8999 $def_libavutil_a
9000 $def_libavutil_so
9001 $def_libpostproc
9002 $def_libpostproc_a
9003 $def_libpostproc_so
9004 $def_libswscale
9005 $def_libswscale_a
9006 $def_libswscale_so
9008 #define CONFIG_DECODERS 1
9009 #define CONFIG_ENCODERS 1
9010 #define CONFIG_DEMUXERS 1
9011 $def_muxers
9013 $def_arpa_inet_h
9014 $def_bswap
9015 $def_bzlib
9016 $def_dcbzl
9017 $def_dos_paths
9018 $def_fast_64bit
9019 $def_fast_unaligned
9020 $def_libavcodec_mpegaudio_hp
9021 $def_memalign_hack
9022 $def_mlib
9023 $def_mkstemp
9024 $def_posix_memalign
9025 $def_pthreads
9026 $def_ten_operands
9027 $def_threads
9028 $def_xform_asm
9029 $def_yasm
9031 #define CONFIG_FASTDIV 0
9032 #define CONFIG_FFSERVER 0
9033 #define CONFIG_GPL 1
9034 #define CONFIG_GRAY 0
9035 #define CONFIG_LIBVORBIS 0
9036 #define CONFIG_POWERPC_PERF 0
9037 #define CONFIG_SMALL 0
9038 #define CONFIG_SWSCALE 1
9039 #define CONFIG_SWSCALE_ALPHA 1
9041 #if defined(HAVE_AF_INET6) && (!defined(_WIN32) || defined(__CYGWIN__))
9042 #define CONFIG_IPV6 1
9043 #else
9044 #define CONFIG_IPV6 0
9045 #endif
9047 #define HAVE_ATTRIBUTE_PACKED 1
9048 #define HAVE_GETHRTIME 0
9049 #define HAVE_INLINE_ASM 0
9050 #define HAVE_LDBRX 0
9051 #define HAVE_POLL_H 1
9052 #define HAVE_PPC4XX 0
9053 #define HAVE_SETMODE 0
9054 #define HAVE_SYS_SELECT_H 0
9055 #define HAVE_VIRTUALALLOC 0
9057 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
9058 #define CONFIG_AANDCT 1
9059 #define CONFIG_FFT 1
9060 #define CONFIG_GOLOMB 1
9061 #define CONFIG_LPC 1
9062 #define CONFIG_MDCT 1
9063 #define CONFIG_RDFT 1
9065 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
9066 $def_ebx_available
9067 #ifndef MP_DEBUG
9068 #define HAVE_EBP_AVAILABLE 1
9069 #else
9070 #define HAVE_EBP_AVAILABLE 0
9071 #endif
9073 #define FFMPEG_CONFIGURATION "--enable-gpl --enable-postproc"
9074 #define FFMPEG_LICENSE "GPL version 2 or later"
9076 /* External libraries used through libavcodec. */
9077 $def_faac_lavc
9078 $def_libdirac_lavc
9079 $def_libopencore_amrnb
9080 $def_libopencore_amrwb
9081 $def_libopenjpeg
9082 $def_libschroedinger_lavc
9083 $def_mp3lame_lavc
9084 $def_x264_lavc
9085 $def_xvid_lavc
9087 $(ff_config_enable "$_libavdecoders_all" "$_libavdecoders")
9088 $(ff_config_enable "$_libavencoders_all" "$_libavencoders")
9089 $(ff_config_enable "$_libavparsers_all" "$_libavparsers")
9090 $(ff_config_enable "$_libavdemuxers_all" "$_libavdemuxers")
9091 $(ff_config_enable "$_libavmuxers_all" "$_libavmuxers")
9092 $(ff_config_enable "$_libavprotocols_all" "$_libavprotocols")
9093 $(ff_config_enable "$_libavbsfs_all" "$_libavbsfs")
9095 #define CONFIG_H263_VAAPI_HWACCEL 0
9096 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
9097 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
9098 #define CONFIG_H264_VAAPI_HWACCEL 0
9099 #define CONFIG_VC1_VAAPI_HWACCEL 0
9100 #define CONFIG_WMV3_VAAPI_HWACCEL 0
9102 #endif /* MPLAYER_CONFIG_H */
9105 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
9106 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
9108 #############################################################################
9110 cat << EOF
9112 Config files successfully generated by ./configure $_configuration !
9114 Install prefix: $_prefix
9115 Data directory: $_datadir
9116 Config direct.: $_confdir
9118 Byte order: $_byte_order
9119 Optimizing for: $_optimizing
9121 Languages:
9122 Messages/GUI: $language_msg
9123 Manual pages: $language_man
9124 Documentation: $language_doc
9126 Enabled optional drivers:
9127 Input: $_inputmodules
9128 Codecs: $_codecmodules
9129 Audio output: $_aomodules
9130 Video output: $_vomodules
9132 Disabled optional drivers:
9133 Input: $_noinputmodules
9134 Codecs: $_nocodecmodules
9135 Audio output: $_noaomodules
9136 Video output: $_novomodules
9138 'config.h' and 'config.mak' contain your configuration options.
9139 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
9140 compile *** DO NOT REPORT BUGS if you tweak these files ***
9142 'make' will now compile MPlayer and 'make install' will install it.
9143 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
9148 if test "$_mtrr" = yes ; then
9149 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
9150 echo
9153 if ! x86_32; then
9154 cat <<EOF
9155 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
9156 operating system ($system_name). You may encounter a few files that cannot
9157 be played due to missing open source video/audio codec support.
9163 cat <<EOF
9164 Check $TMPLOG if you wonder why an autodetection failed (make sure
9165 development headers/packages are installed).
9167 NOTE: The --enable-* parameters unconditionally force options on, completely
9168 skipping autodetection. This behavior is unlike what you may be used to from
9169 autoconf-based configure scripts that can decide to override you. This greater
9170 level of control comes at a price. You may have to provide the correct compiler
9171 and linker flags yourself.
9172 If you used one of these options (except --enable-gui and similar ones that
9173 turn on internal features) and experience a compilation or linking failure,
9174 make sure you have passed the necessary compiler/linker flags to configure.
9176 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
9180 if test "$_warn_CFLAGS" = yes; then
9181 cat <<EOF
9183 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
9184 but:
9186 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
9188 It is strongly recommended to let MPlayer choose the correct CFLAGS!
9189 To do so, execute 'CFLAGS= ./configure <options>'
9194 # Last move:
9195 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"