x264 version 0.83 is required.
[mplayer/glamo.git] / configure
blob281cd463e9d414b6656834e19a998dfb752bd6ab
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 _fast_clz=auto
523 _armv5te=auto
524 _armv6=auto
525 _armv6t2=auto
526 _armvfp=auto
527 neon=auto
528 _iwmmxt=auto
529 _mtrr=auto
530 _altivec=auto
531 _install=install
532 _ranlib=ranlib
533 _windres=windres
534 _cc=cc
535 _ar=ar
536 test "$CC" && _cc="$CC"
537 _as=auto
538 _nm=auto
539 _yasm=yasm
540 _runtime_cpudetection=no
541 _cross_compile=auto
542 _prefix="/usr/local"
543 _libavutil_a=auto
544 _libavutil_so=auto
545 _libavcodec_a=auto
546 _libopencore_amrnb=auto
547 _libopencore_amrwb=auto
548 libopenjpeg=auto
549 _libavdecoders_all=$(sed -n 's/^[^#]*DEC.*(.*, *\(.*\)).*/\1_decoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
550 _libavdecoders=$(echo $_libavdecoders_all | sed -e 's/ LIB[A-Z0-9_]*_DECODER//g' -e s/MPEG4AAC_DECODER//)
551 _libavencoders_all=$(sed -n 's/^[^#]*ENC.*(.*, *\(.*\)).*/\1_encoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
552 _libavencoders=$(echo $_libavencoders_all | sed -e 's/ LIB[A-Z0-9_]*_ENCODER//g' -e s/AAC_ENCODER//)
553 _libavparsers_all=$(sed -n 's/^[^#]*PARSER.*(.*, *\(.*\)).*/\1_parser/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
554 _libavparsers=$_libavparsers_all
555 _libavbsfs_all=$(sed -n 's/^[^#]*BSF.*(.*, *\(.*\)).*/\1_bsf/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
556 _libavbsfs=$_libavbsfs_all
557 _libavdemuxers_all=$(sed -n 's/^[^#]*DEMUX.*(.*, *\(.*\)).*/\1_demuxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
558 _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//)
559 _libavmuxers_all=$(sed -n 's/^[^#]*_MUX.*(.*, *\(.*\)).*/\1_muxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
560 _libavmuxers=$(echo $_libavmuxers_all | sed -e 's/ LIB[A-Z0-9_]*_MUXER//g' -e s/RTP_MUXER//)
561 _libavprotocols_all=$(sed -n 's/^[^#]*PROTOCOL.*(.*, *\(.*\)).*/\1_protocol/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
562 _libavprotocols=$_libavprotocols_all
563 _libavcodec_so=auto
564 _libavformat_a=auto
565 _libavformat_so=auto
566 _libpostproc_a=auto
567 _libpostproc_so=auto
568 _libswscale_a=auto
569 _libswscale_so=auto
570 _libavcodec_mpegaudio_hp=yes
571 _mencoder=yes
572 _mplayer=yes
573 _x11=auto
574 _xshape=auto
575 _xss=auto
576 _dga1=auto
577 _dga2=auto
578 _xv=auto
579 _xvmc=no #auto when complete
580 _vdpau=auto
581 _sdl=auto
582 _kva=auto
583 _direct3d=auto
584 _directx=auto
585 _win32waveout=auto
586 _nas=auto
587 _png=auto
588 _mng=auto
589 _jpeg=auto
590 _pnm=yes
591 _md5sum=yes
592 _yuv4mpeg=yes
593 _gif=auto
594 _gl=auto
595 matrixview=yes
596 _ggi=auto
597 _ggiwmh=auto
598 _aa=auto
599 _caca=auto
600 _svga=auto
601 _vesa=auto
602 _fbdev=auto
603 _dvb=auto
604 _dvbhead=auto
605 _dxr2=auto
606 _dxr3=auto
607 _ivtv=auto
608 _v4l2=auto
609 _iconv=auto
610 _langinfo=auto
611 _rtc=auto
612 _ossaudio=auto
613 _arts=auto
614 _esd=auto
615 _pulse=auto
616 _jack=auto
617 _dart=auto
618 _openal=auto
619 _libcdio=auto
620 _liblzo=auto
621 _mad=auto
622 _mp3lame=auto
623 _mp3lame_lavc=auto
624 _toolame=auto
625 _twolame=auto
626 _tremor=auto
627 _tremor_internal=yes
628 _tremor_low=no
629 _libvorbis=auto
630 _speex=auto
631 _theora=auto
632 _mp3lib=auto
633 _liba52=auto
634 _liba52_internal=no
635 _libdca=auto
636 _libmpeg2=auto
637 _faad=auto
638 _faad_internal=auto
639 _faad_fixed=no
640 _faac=auto
641 _faac_lavc=auto
642 _ladspa=auto
643 _libbs2b=auto
644 _xmms=no
645 _vcd=auto
646 _dvdnav=auto
647 _dvdnavconfig=dvdnav-config
648 _dvdreadconfig=dvdread-config
649 _dvdread=auto
650 _dvdread_internal=auto
651 _libdvdcss_internal=auto
652 _xanim=auto
653 _real=auto
654 _live=auto
655 _nemesi=auto
656 _native_rtsp=yes
657 _xinerama=auto
658 _mga=auto
659 _xmga=auto
660 _vm=auto
661 _xf86keysym=auto
662 _mlib=no #broken, thus disabled
663 _sgiaudio=auto
664 _sunaudio=auto
665 _alsa=auto
666 _fastmemcpy=yes
667 hardcoded_tables=no
668 _unrar_exec=auto
669 _win32dll=auto
670 _select=yes
671 _radio=no
672 _radio_capture=no
673 _radio_v4l=auto
674 _radio_v4l2=auto
675 _radio_bsdbt848=auto
676 _tv=yes
677 _tv_v4l1=auto
678 _tv_v4l2=auto
679 _tv_bsdbt848=auto
680 _tv_dshow=auto
681 _pvr=auto
682 _network=yes
683 _winsock2_h=auto
684 _struct_addrinfo=auto
685 _getaddrinfo=auto
686 _struct_sockaddr_storage=auto
687 _smb=auto
688 _vidix=auto
689 _vidix_pcidb=yes
690 _dhahelper=no
691 _svgalib_helper=no
692 _joystick=no
693 _xvid=auto
694 _xvid_lavc=auto
695 _x264=auto
696 _x264_lavc=auto
697 _libdirac_lavc=auto
698 _libschroedinger_lavc=auto
699 _libnut=auto
700 _lirc=auto
701 _lircc=auto
702 _apple_remote=auto
703 _apple_ir=auto
704 _gui=no
705 _gtk1=no
706 _termcap=auto
707 _termios=auto
708 _3dfx=no
709 _s3fb=no
710 _wii=no
711 _tdfxfb=no
712 _tdfxvid=no
713 _xvr100=auto
714 _tga=yes
715 _directfb=auto
716 _zr=auto
717 _bl=no
718 _largefiles=yes
719 #language=en
720 _shm=auto
721 _linux_devfs=no
722 _charset="UTF-8"
723 _dynamic_plugins=no
724 _crash_debug=no
725 _sighandler=yes
726 _libdv=auto
727 _cdparanoia=auto
728 _cddb=auto
729 _big_endian=auto
730 _bitmap_font=yes
731 _freetype=auto
732 _fontconfig=auto
733 _menu=no
734 _qtx=auto
735 _maemo=auto
736 _coreaudio=auto
737 _corevideo=auto
738 _quartz=auto
739 quicktime=auto
740 _macosx_finder=no
741 _macosx_bundle=auto
742 _sortsub=yes
743 _freetypeconfig='freetype-config'
744 _fribidi=auto
745 _fribidiconfig='fribidi-config'
746 _enca=auto
747 _inet6=auto
748 _gethostbyname2=auto
749 _ftp=yes
750 _musepack=auto
751 _vstream=auto
752 _pthreads=auto
753 _w32threads=auto
754 _ass=auto
755 ass_internal=yes
756 _rpath=no
757 _asmalign_pot=auto
758 _stream_cache=yes
759 _priority=no
760 def_dos_paths="#define HAVE_DOS_PATHS 0"
761 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
762 def_priority="#undef CONFIG_PRIORITY"
763 def_pthread_cache="#undef PTHREAD_CACHE"
764 _need_shmem=yes
765 for ac_option do
766 case "$ac_option" in
767 --help|-help|-h)
768 show_help
770 --prefix=*)
771 _prefix=$(echo $ac_option | cut -d '=' -f 2)
773 --bindir=*)
774 _bindir=$(echo $ac_option | cut -d '=' -f 2)
776 --datadir=*)
777 _datadir=$(echo $ac_option | cut -d '=' -f 2)
779 --mandir=*)
780 _mandir=$(echo $ac_option | cut -d '=' -f 2)
782 --confdir=*)
783 _confdir=$(echo $ac_option | cut -d '=' -f 2)
785 --libdir=*)
786 _libdir=$(echo $ac_option | cut -d '=' -f 2)
788 --codecsdir=*)
789 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
791 --win32codecsdir=*)
792 _win32codecsdir=$(echo $ac_option | cut -d '=' -f 2)
794 --xanimcodecsdir=*)
795 _xanimcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
797 --realcodecsdir=*)
798 _realcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
801 --with-install=*)
802 _install=$(echo $ac_option | cut -d '=' -f 2 )
804 --with-xvmclib=*)
805 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
808 --with-sdl-config=*)
809 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
811 --with-freetype-config=*)
812 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
814 --with-fribidi-config=*)
815 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
817 --with-gtk-config=*)
818 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
820 --with-glib-config=*)
821 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
823 --with-dvdnav-config=*)
824 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
826 --with-dvdread-config=*)
827 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
830 --extra-cflags=*)
831 extra_cflags=$(echo $ac_option | cut -d '=' -f 2-)
833 --extra-ldflags=*)
834 extra_ldflags=$(echo $ac_option | cut -d '=' -f 2-)
836 --extra-libs=*)
837 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
839 --extra-libs-mplayer=*)
840 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
842 --extra-libs-mencoder=*)
843 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
846 --target=*)
847 _target=$(echo $ac_option | cut -d '=' -f 2)
849 --cc=*)
850 _cc=$(echo $ac_option | cut -d '=' -f 2)
852 --host-cc=*)
853 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
855 --as=*)
856 _as=$(echo $ac_option | cut -d '=' -f 2)
858 --nm=*)
859 _nm=$(echo $ac_option | cut -d '=' -f 2)
861 --yasm=*)
862 _yasm=$(echo $ac_option | cut -d '=' -f 2)
864 --ar=*)
865 _ar=$(echo $ac_option | cut -d '=' -f 2)
867 --ranlib=*)
868 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
870 --windres=*)
871 _windres=$(echo $ac_option | cut -d '=' -f 2)
873 --charset=*)
874 _charset=$(echo $ac_option | cut -d '=' -f 2)
876 --language-doc=*)
877 language_doc=$(echo $ac_option | cut -d '=' -f 2)
879 --language-man=*)
880 language_man=$(echo $ac_option | cut -d '=' -f 2)
882 --language-msg=*)
883 language_msg=$(echo $ac_option | cut -d '=' -f 2)
885 --language=*)
886 language=$(echo $ac_option | cut -d '=' -f 2)
889 --enable-static)
890 _ld_static='-static'
892 --disable-static)
893 _ld_static=''
895 --enable-profile)
896 _profile='-p'
898 --disable-profile)
899 _profile=
901 --enable-debug)
902 _debug='-g'
904 --enable-debug=*)
905 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
907 --disable-debug)
908 _debug=
910 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
911 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
912 --enable-cross-compile) _cross_compile=yes ;;
913 --disable-cross-compile) _cross_compile=no ;;
914 --enable-mencoder) _mencoder=yes ;;
915 --disable-mencoder) _mencoder=no ;;
916 --enable-mplayer) _mplayer=yes ;;
917 --disable-mplayer) _mplayer=no ;;
918 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
919 --disable-dynamic-plugins) _dynamic_plugins=no ;;
920 --enable-x11) _x11=yes ;;
921 --disable-x11) _x11=no ;;
922 --enable-xshape) _xshape=yes ;;
923 --disable-xshape) _xshape=no ;;
924 --enable-xss) _xss=yes ;;
925 --disable-xss) _xss=no ;;
926 --enable-xv) _xv=yes ;;
927 --disable-xv) _xv=no ;;
928 --enable-xvmc) _xvmc=yes ;;
929 --disable-xvmc) _xvmc=no ;;
930 --enable-vdpau) _vdpau=yes ;;
931 --disable-vdpau) _vdpau=no ;;
932 --enable-sdl) _sdl=yes ;;
933 --disable-sdl) _sdl=no ;;
934 --enable-kva) _kva=yes ;;
935 --disable-kva) _kva=no ;;
936 --enable-direct3d) _direct3d=yes ;;
937 --disable-direct3d) _direct3d=no ;;
938 --enable-directx) _directx=yes ;;
939 --disable-directx) _directx=no ;;
940 --enable-win32waveout) _win32waveout=yes ;;
941 --disable-win32waveout) _win32waveout=no ;;
942 --enable-nas) _nas=yes ;;
943 --disable-nas) _nas=no ;;
944 --enable-png) _png=yes ;;
945 --disable-png) _png=no ;;
946 --enable-mng) _mng=yes ;;
947 --disable-mng) _mng=no ;;
948 --enable-jpeg) _jpeg=yes ;;
949 --disable-jpeg) _jpeg=no ;;
950 --enable-libopenjpeg) libopenjpeg=yes ;;
951 --disable-libopenjpeg)libopenjpeg=no ;;
952 --enable-pnm) _pnm=yes ;;
953 --disable-pnm) _pnm=no ;;
954 --enable-md5sum) _md5sum=yes ;;
955 --disable-md5sum) _md5sum=no ;;
956 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
957 --disable-yuv4mpeg) _yuv4mpeg=no ;;
958 --enable-gif) _gif=yes ;;
959 --disable-gif) _gif=no ;;
960 --enable-gl) _gl=yes ;;
961 --disable-gl) _gl=no ;;
962 --enable-matrixview) matrixview=yes ;;
963 --disable-matrixview) matrixview=no ;;
964 --enable-ggi) _ggi=yes ;;
965 --disable-ggi) _ggi=no ;;
966 --enable-ggiwmh) _ggiwmh=yes ;;
967 --disable-ggiwmh) _ggiwmh=no ;;
968 --enable-aa) _aa=yes ;;
969 --disable-aa) _aa=no ;;
970 --enable-caca) _caca=yes ;;
971 --disable-caca) _caca=no ;;
972 --enable-svga) _svga=yes ;;
973 --disable-svga) _svga=no ;;
974 --enable-vesa) _vesa=yes ;;
975 --disable-vesa) _vesa=no ;;
976 --enable-fbdev) _fbdev=yes ;;
977 --disable-fbdev) _fbdev=no ;;
978 --enable-dvb) _dvb=yes ;;
979 --disable-dvb) _dvb=no ;;
980 --enable-dvbhead) _dvbhead=yes ;;
981 --disable-dvbhead) _dvbhead=no ;;
982 --enable-dxr2) _dxr2=yes ;;
983 --disable-dxr2) _dxr2=no ;;
984 --enable-dxr3) _dxr3=yes ;;
985 --disable-dxr3) _dxr3=no ;;
986 --enable-ivtv) _ivtv=yes ;;
987 --disable-ivtv) _ivtv=no ;;
988 --enable-v4l2) _v4l2=yes ;;
989 --disable-v4l2) _v4l2=no ;;
990 --enable-iconv) _iconv=yes ;;
991 --disable-iconv) _iconv=no ;;
992 --enable-langinfo) _langinfo=yes ;;
993 --disable-langinfo) _langinfo=no ;;
994 --enable-rtc) _rtc=yes ;;
995 --disable-rtc) _rtc=no ;;
996 --enable-libdv) _libdv=yes ;;
997 --disable-libdv) _libdv=no ;;
998 --enable-ossaudio) _ossaudio=yes ;;
999 --disable-ossaudio) _ossaudio=no ;;
1000 --enable-arts) _arts=yes ;;
1001 --disable-arts) _arts=no ;;
1002 --enable-esd) _esd=yes ;;
1003 --disable-esd) _esd=no ;;
1004 --enable-pulse) _pulse=yes ;;
1005 --disable-pulse) _pulse=no ;;
1006 --enable-jack) _jack=yes ;;
1007 --disable-jack) _jack=no ;;
1008 --enable-openal) _openal=yes ;;
1009 --disable-openal) _openal=no ;;
1010 --enable-dart) _dart=yes ;;
1011 --disable-dart) _dart=no ;;
1012 --enable-mad) _mad=yes ;;
1013 --disable-mad) _mad=no ;;
1014 --enable-mp3lame) _mp3lame=yes ;;
1015 --disable-mp3lame) _mp3lame=no ;;
1016 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;;
1017 --disable-mp3lame-lavc) _mp3lame_lavc=no ;;
1018 --enable-toolame) _toolame=yes ;;
1019 --disable-toolame) _toolame=no ;;
1020 --enable-twolame) _twolame=yes ;;
1021 --disable-twolame) _twolame=no ;;
1022 --enable-libcdio) _libcdio=yes ;;
1023 --disable-libcdio) _libcdio=no ;;
1024 --enable-liblzo) _liblzo=yes ;;
1025 --disable-liblzo) _liblzo=no ;;
1026 --enable-libvorbis) _libvorbis=yes ;;
1027 --disable-libvorbis) _libvorbis=no ;;
1028 --enable-speex) _speex=yes ;;
1029 --disable-speex) _speex=no ;;
1030 --enable-tremor) _tremor=yes ;;
1031 --disable-tremor) _tremor=no ;;
1032 --enable-tremor-internal) _tremor_internal=yes ;;
1033 --disable-tremor-internal) _tremor_internal=no ;;
1034 --enable-tremor-low) _tremor_low=yes ;;
1035 --disable-tremor-low) _tremor_low=no ;;
1036 --enable-theora) _theora=yes ;;
1037 --disable-theora) _theora=no ;;
1038 --enable-mp3lib) _mp3lib=yes ;;
1039 --disable-mp3lib) _mp3lib=no ;;
1040 --enable-liba52-internal) _liba52_internal=yes ;;
1041 --disable-liba52-internal) _liba52_internal=no ;;
1042 --enable-liba52) _liba52=yes ;;
1043 --disable-liba52) _liba52=no ;;
1044 --enable-libdca) _libdca=yes ;;
1045 --disable-libdca) _libdca=no ;;
1046 --enable-libmpeg2) _libmpeg2=yes ;;
1047 --disable-libmpeg2) _libmpeg2=no ;;
1048 --enable-musepack) _musepack=yes ;;
1049 --disable-musepack) _musepack=no ;;
1050 --enable-faad) _faad=yes ;;
1051 --disable-faad) _faad=no ;;
1052 --enable-faad-internal) _faad_internal=yes ;;
1053 --disable-faad-internal) _faad_internal=no ;;
1054 --enable-faad-fixed) _faad_fixed=yes ;;
1055 --disable-faad-fixed) _faad_fixed=no ;;
1056 --enable-faac) _faac=yes ;;
1057 --disable-faac) _faac=no ;;
1058 --enable-faac-lavc) _faac_lavc=yes ;;
1059 --disable-faac-lavc) _faac_lavc=no ;;
1060 --enable-ladspa) _ladspa=yes ;;
1061 --disable-ladspa) _ladspa=no ;;
1062 --enable-libbs2b) _libbs2b=yes ;;
1063 --disable-libbs2b) _libbs2b=no ;;
1064 --enable-xmms) _xmms=yes ;;
1065 --disable-xmms) _xmms=no ;;
1066 --enable-vcd) _vcd=yes ;;
1067 --disable-vcd) _vcd=no ;;
1068 --enable-dvdread) _dvdread=yes ;;
1069 --disable-dvdread) _dvdread=no ;;
1070 --enable-dvdread-internal) _dvdread_internal=yes ;;
1071 --disable-dvdread-internal) _dvdread_internal=no ;;
1072 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1073 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1074 --enable-dvdnav) _dvdnav=yes ;;
1075 --disable-dvdnav) _dvdnav=no ;;
1076 --enable-xanim) _xanim=yes ;;
1077 --disable-xanim) _xanim=no ;;
1078 --enable-real) _real=yes ;;
1079 --disable-real) _real=no ;;
1080 --enable-live) _live=yes ;;
1081 --disable-live) _live=no ;;
1082 --enable-nemesi) _nemesi=yes ;;
1083 --disable-nemesi) _nemesi=no ;;
1084 --enable-xinerama) _xinerama=yes ;;
1085 --disable-xinerama) _xinerama=no ;;
1086 --enable-mga) _mga=yes ;;
1087 --disable-mga) _mga=no ;;
1088 --enable-xmga) _xmga=yes ;;
1089 --disable-xmga) _xmga=no ;;
1090 --enable-vm) _vm=yes ;;
1091 --disable-vm) _vm=no ;;
1092 --enable-xf86keysym) _xf86keysym=yes ;;
1093 --disable-xf86keysym) _xf86keysym=no ;;
1094 --enable-mlib) _mlib=yes ;;
1095 --disable-mlib) _mlib=no ;;
1096 --enable-sunaudio) _sunaudio=yes ;;
1097 --disable-sunaudio) _sunaudio=no ;;
1098 --enable-sgiaudio) _sgiaudio=yes ;;
1099 --disable-sgiaudio) _sgiaudio=no ;;
1100 --enable-alsa) _alsa=yes ;;
1101 --disable-alsa) _alsa=no ;;
1102 --enable-tv) _tv=yes ;;
1103 --disable-tv) _tv=no ;;
1104 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1105 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1106 --enable-tv-v4l1) _tv_v4l1=yes ;;
1107 --disable-tv-v4l1) _tv_v4l1=no ;;
1108 --enable-tv-v4l2) _tv_v4l2=yes ;;
1109 --disable-tv-v4l2) _tv_v4l2=no ;;
1110 --enable-tv-dshow) _tv_dshow=yes ;;
1111 --disable-tv-dshow) _tv_dshow=no ;;
1112 --enable-radio) _radio=yes ;;
1113 --enable-radio-capture) _radio_capture=yes ;;
1114 --disable-radio-capture) _radio_capture=no ;;
1115 --disable-radio) _radio=no ;;
1116 --enable-radio-v4l) _radio_v4l=yes ;;
1117 --disable-radio-v4l) _radio_v4l=no ;;
1118 --enable-radio-v4l2) _radio_v4l2=yes ;;
1119 --disable-radio-v4l2) _radio_v4l2=no ;;
1120 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1121 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1122 --enable-pvr) _pvr=yes ;;
1123 --disable-pvr) _pvr=no ;;
1124 --enable-fastmemcpy) _fastmemcpy=yes ;;
1125 --disable-fastmemcpy) _fastmemcpy=no ;;
1126 --enable-hardcoded-tables) hardcoded_tables=yes ;;
1127 --disable-hardcoded-tables) hardcoded_tables=no ;;
1128 --enable-network) _network=yes ;;
1129 --disable-network) _network=no ;;
1130 --enable-winsock2_h) _winsock2_h=yes ;;
1131 --disable-winsock2_h) _winsock2_h=no ;;
1132 --enable-smb) _smb=yes ;;
1133 --disable-smb) _smb=no ;;
1134 --enable-vidix) _vidix=yes ;;
1135 --disable-vidix) _vidix=no ;;
1136 --with-vidix-drivers=*)
1137 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1139 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1140 --enable-dhahelper) _dhahelper=yes ;;
1141 --disable-dhahelper) _dhahelper=no ;;
1142 --enable-svgalib_helper) _svgalib_helper=yes ;;
1143 --disable-svgalib_helper) _svgalib_helper=no ;;
1144 --enable-joystick) _joystick=yes ;;
1145 --disable-joystick) _joystick=no ;;
1146 --enable-xvid) _xvid=yes ;;
1147 --disable-xvid) _xvid=no ;;
1148 --enable-xvid-lavc) _xvid_lavc=yes ;;
1149 --disable-xvid-lavc) _xvid_lavc=no ;;
1150 --enable-x264) _x264=yes ;;
1151 --disable-x264) _x264=no ;;
1152 --enable-x264-lavc) _x264_lavc=yes ;;
1153 --disable-x264-lavc) _x264_lavc=no ;;
1154 --enable-libdirac-lavc) _libdirac_lavc=yes ;;
1155 --disable-libdirac-lavc) _libdirac_lavc=no ;;
1156 --enable-libschroedinger-lavc) _libschroedinger_lavc=yes ;;
1157 --disable-libschroedinger-lavc) _libschroedinger_lavc=no ;;
1158 --enable-libnut) _libnut=yes ;;
1159 --disable-libnut) _libnut=no ;;
1160 --enable-libavutil_a) _libavutil_a=yes ;;
1161 --disable-libavutil_a) _libavutil_a=no ;;
1162 --enable-libavutil_so) _libavutil_so=yes ;;
1163 --disable-libavutil_so) _libavutil_so=no ;;
1164 --enable-libavcodec_a) _libavcodec_a=yes ;;
1165 --disable-libavcodec_a) _libavcodec_a=no ;;
1166 --enable-libavcodec_so) _libavcodec_so=yes ;;
1167 --disable-libavcodec_so) _libavcodec_so=no ;;
1168 --enable-libopencore_amrnb) _libopencore_amrnb=yes ;;
1169 --disable-libopencore_amrnb) _libopencore_amrnb=no ;;
1170 --enable-libopencore_amrwb) _libopencore_amrwb=yes ;;
1171 --disable-libopencore_amrwb) _libopencore_amrwb=no ;;
1172 --enable-decoder=*) _libavdecoders="$_libavdecoders $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1173 --disable-decoder=*) _libavdecoders=$(echo $_libavdecoders | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1174 --enable-encoder=*) _libavencoders="$_libavencoders $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1175 --disable-encoder=*) _libavencoders=$(echo $_libavencoders | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1176 --enable-parser=*) _libavparsers="$_libavparsers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1177 --disable-parser=*) _libavparsers=$(echo $_libavparsers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1178 --enable-protocol=*) _libavprotocols="$_libavprotocols $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1179 --disable-protocol=*) _libavprotocols=$(echo $_libavprotocols | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1180 --enable-demuxer=*) _libavdemuxers="$_libavdemuxers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1181 --disable-demuxer=*) _libavdemuxers=$(echo $_libavdemuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1182 --enable-muxer=*) _libavmuxers="$_libavmuxers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1183 --disable-muxer=*) _libavmuxers=$(echo $_libavmuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1184 --enable-libavformat_a) _libavformat_a=yes ;;
1185 --disable-libavformat_a) _libavformat_a=no ;;
1186 --enable-libavformat_so) _libavformat_so=yes ;;
1187 --disable-libavformat_so) _libavformat_so=no ;;
1188 --enable-libpostproc_a) _libpostproc_a=yes ;;
1189 --disable-libpostproc_a) _libpostproc_a=no ;;
1190 --enable-libpostproc_so) _libpostproc_so=yes ;;
1191 --disable-libpostproc_so) _libpostproc_so=no ;;
1192 --enable-libswscale_a) _libswscale_a=yes ;;
1193 --disable-libswscale_a) _libswscale_a=no ;;
1194 --enable-libswscale_so) _libswscale_so=yes ;;
1195 --disable-libswscale_so) _libswscale_so=no ;;
1196 --enable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=yes ;;
1197 --disable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=no ;;
1199 --enable-lirc) _lirc=yes ;;
1200 --disable-lirc) _lirc=no ;;
1201 --enable-lircc) _lircc=yes ;;
1202 --disable-lircc) _lircc=no ;;
1203 --enable-apple-remote) _apple_remote=yes ;;
1204 --disable-apple-remote) _apple_remote=no ;;
1205 --enable-apple-ir) _apple_ir=yes ;;
1206 --disable-apple-ir) _apple_ir=no ;;
1207 --enable-gui) _gui=yes ;;
1208 --disable-gui) _gui=no ;;
1209 --enable-gtk1) _gtk1=yes ;;
1210 --disable-gtk1) _gtk1=no ;;
1211 --enable-termcap) _termcap=yes ;;
1212 --disable-termcap) _termcap=no ;;
1213 --enable-termios) _termios=yes ;;
1214 --disable-termios) _termios=no ;;
1215 --enable-3dfx) _3dfx=yes ;;
1216 --disable-3dfx) _3dfx=no ;;
1217 --enable-s3fb) _s3fb=yes ;;
1218 --disable-s3fb) _s3fb=no ;;
1219 --enable-wii) _wii=yes ;;
1220 --disable-wii) _wii=no ;;
1221 --enable-tdfxfb) _tdfxfb=yes ;;
1222 --disable-tdfxfb) _tdfxfb=no ;;
1223 --disable-tdfxvid) _tdfxvid=no ;;
1224 --enable-tdfxvid) _tdfxvid=yes ;;
1225 --disable-xvr100) _xvr100=no ;;
1226 --enable-xvr100) _xvr100=yes ;;
1227 --disable-tga) _tga=no ;;
1228 --enable-tga) _tga=yes ;;
1229 --enable-directfb) _directfb=yes ;;
1230 --disable-directfb) _directfb=no ;;
1231 --enable-zr) _zr=yes ;;
1232 --disable-zr) _zr=no ;;
1233 --enable-bl) _bl=yes ;;
1234 --disable-bl) _bl=no ;;
1235 --enable-mtrr) _mtrr=yes ;;
1236 --disable-mtrr) _mtrr=no ;;
1237 --enable-largefiles) _largefiles=yes ;;
1238 --disable-largefiles) _largefiles=no ;;
1239 --enable-shm) _shm=yes ;;
1240 --disable-shm) _shm=no ;;
1241 --enable-select) _select=yes ;;
1242 --disable-select) _select=no ;;
1243 --enable-linux-devfs) _linux_devfs=yes ;;
1244 --disable-linux-devfs) _linux_devfs=no ;;
1245 --enable-cdparanoia) _cdparanoia=yes ;;
1246 --disable-cdparanoia) _cdparanoia=no ;;
1247 --enable-cddb) _cddb=yes ;;
1248 --disable-cddb) _cddb=no ;;
1249 --enable-big-endian) _big_endian=yes ;;
1250 --disable-big-endian) _big_endian=no ;;
1251 --enable-bitmap-font) _bitmap_font=yes ;;
1252 --disable-bitmap-font) _bitmap_font=no ;;
1253 --enable-freetype) _freetype=yes ;;
1254 --disable-freetype) _freetype=no ;;
1255 --enable-fontconfig) _fontconfig=yes ;;
1256 --disable-fontconfig) _fontconfig=no ;;
1257 --enable-unrarexec) _unrar_exec=yes ;;
1258 --disable-unrarexec) _unrar_exec=no ;;
1259 --enable-ftp) _ftp=yes ;;
1260 --disable-ftp) _ftp=no ;;
1261 --enable-vstream) _vstream=yes ;;
1262 --disable-vstream) _vstream=no ;;
1263 --enable-pthreads) _pthreads=yes ;;
1264 --disable-pthreads) _pthreads=no ;;
1265 --enable-w32threads) _w32threads=yes ;;
1266 --disable-w32threads) _w32threads=no ;;
1267 --enable-ass) _ass=yes ;;
1268 --disable-ass) _ass=no ;;
1269 --enable-ass-internal) ass_internal=yes ;;
1270 --disable-ass-internal) ass_internal=no ;;
1271 --enable-rpath) _rpath=yes ;;
1272 --disable-rpath) _rpath=no ;;
1274 --enable-fribidi) _fribidi=yes ;;
1275 --disable-fribidi) _fribidi=no ;;
1277 --enable-enca) _enca=yes ;;
1278 --disable-enca) _enca=no ;;
1280 --enable-inet6) _inet6=yes ;;
1281 --disable-inet6) _inet6=no ;;
1283 --enable-gethostbyname2) _gethostbyname2=yes ;;
1284 --disable-gethostbyname2) _gethostbyname2=no ;;
1286 --enable-dga1) _dga1=yes ;;
1287 --disable-dga1) _dga1=no ;;
1288 --enable-dga2) _dga2=yes ;;
1289 --disable-dga2) _dga2=no ;;
1291 --enable-menu) _menu=yes ;;
1292 --disable-menu) _menu=no ;;
1294 --enable-qtx) _qtx=yes ;;
1295 --disable-qtx) _qtx=no ;;
1297 --enable-coreaudio) _coreaudio=yes ;;
1298 --disable-coreaudio) _coreaudio=no ;;
1299 --enable-corevideo) _corevideo=yes ;;
1300 --disable-corevideo) _corevideo=no ;;
1301 --enable-quartz) _quartz=yes ;;
1302 --disable-quartz) _quartz=no ;;
1303 --enable-macosx-finder) _macosx_finder=yes ;;
1304 --disable-macosx-finder) _macosx_finder=no ;;
1305 --enable-macosx-bundle) _macosx_bundle=yes ;;
1306 --disable-macosx-bundle) _macosx_bundle=no ;;
1308 --enable-maemo) _maemo=yes ;;
1309 --disable-maemo) _maemo=no ;;
1311 --enable-sortsub) _sortsub=yes ;;
1312 --disable-sortsub) _sortsub=no ;;
1314 --enable-crash-debug) _crash_debug=yes ;;
1315 --disable-crash-debug) _crash_debug=no ;;
1316 --enable-sighandler) _sighandler=yes ;;
1317 --disable-sighandler) _sighandler=no ;;
1318 --enable-win32dll) _win32dll=yes ;;
1319 --disable-win32dll) _win32dll=no ;;
1321 --enable-sse) _sse=yes ;;
1322 --disable-sse) _sse=no ;;
1323 --enable-sse2) _sse2=yes ;;
1324 --disable-sse2) _sse2=no ;;
1325 --enable-ssse3) _ssse3=yes ;;
1326 --disable-ssse3) _ssse3=no ;;
1327 --enable-mmxext) _mmxext=yes ;;
1328 --disable-mmxext) _mmxext=no ;;
1329 --enable-3dnow) _3dnow=yes ;;
1330 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1331 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1332 --disable-3dnowext) _3dnowext=no ;;
1333 --enable-cmov) _cmov=yes ;;
1334 --disable-cmov) _cmov=no ;;
1335 --enable-fast-cmov) _fast_cmov=yes ;;
1336 --disable-fast-cmov) _fast_cmov=no ;;
1337 --enable-fast-clz) _fast_clz=yes ;;
1338 --disable-fast-clz) _fast_clz=no ;;
1339 --enable-altivec) _altivec=yes ;;
1340 --disable-altivec) _altivec=no ;;
1341 --enable-armv5te) _armv5te=yes ;;
1342 --disable-armv5te) _armv5te=no ;;
1343 --enable-armv6) _armv6=yes ;;
1344 --disable-armv6) _armv6=no ;;
1345 --enable-armv6t2) _armv6t2=yes ;;
1346 --disable-armv6t2) _armv6t2=no ;;
1347 --enable-armvfp) _armvfp=yes ;;
1348 --disable-armvfp) _armvfp=no ;;
1349 --enable-neon) neon=yes ;;
1350 --disable-neon) neon=no ;;
1351 --enable-iwmmxt) _iwmmxt=yes ;;
1352 --disable-iwmmxt) _iwmmxt=no ;;
1353 --enable-mmx) _mmx=yes ;;
1354 --disable-mmx) # 3Dnow! and MMX2 require MMX
1355 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1358 echo "Unknown parameter: $ac_option"
1359 exit 1
1362 esac
1363 done
1365 # Atmos: moved this here, to be correct, if --prefix is specified
1366 test -z "$_bindir" && _bindir="$_prefix/bin"
1367 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1368 test -z "$_mandir" && _mandir="$_prefix/share/man"
1369 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1370 test -z "$_libdir" && _libdir="$_prefix/lib"
1372 # Determine our OS name and CPU architecture
1373 if test -z "$_target" ; then
1374 # OS name
1375 system_name=$(uname -s 2>&1)
1376 case "$system_name" in
1377 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1379 Haiku)
1380 system_name=BeOS
1382 IRIX*)
1383 system_name=IRIX
1385 GNU/kFreeBSD)
1386 system_name=FreeBSD
1388 HP-UX*)
1389 system_name=HP-UX
1391 [cC][yY][gG][wW][iI][nN]*)
1392 system_name=CYGWIN
1394 MINGW32*)
1395 system_name=MINGW32
1397 OS/2*)
1398 system_name=OS/2
1401 system_name="$system_name-UNKNOWN"
1403 esac
1406 # host's CPU/instruction set
1407 host_arch=$(uname -p 2>&1)
1408 case "$host_arch" in
1409 i386|sparc|ppc|alpha|arm|mips|vax)
1411 powerpc) # Darwin returns 'powerpc'
1412 host_arch=ppc
1414 *) # uname -p on Linux returns 'unknown' for the processor type,
1415 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1417 # Maybe uname -m (machine hardware name) returns something we
1418 # recognize.
1420 # x86/x86pc is used by QNX
1421 case "$(uname -m 2>&1)" in
1422 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 ;;
1423 ia64) host_arch=ia64 ;;
1424 macppc|ppc) host_arch=ppc ;;
1425 ppc64) host_arch=ppc64 ;;
1426 alpha) host_arch=alpha ;;
1427 sparc) host_arch=sparc ;;
1428 sparc64) host_arch=sparc64 ;;
1429 parisc*|hppa*|9000*) host_arch=hppa ;;
1430 arm*|zaurus|cats) host_arch=arm ;;
1431 sh3|sh4|sh4a) host_arch=sh ;;
1432 s390) host_arch=s390 ;;
1433 s390x) host_arch=s390x ;;
1434 *mips*) host_arch=mips ;;
1435 vax) host_arch=vax ;;
1436 xtensa*) host_arch=xtensa ;;
1437 *) host_arch=UNKNOWN ;;
1438 esac
1440 esac
1441 else # if test -z "$_target"
1442 system_name=$(echo $_target | cut -d '-' -f 2)
1443 case "$(echo $system_name | tr A-Z a-z)" in
1444 linux) system_name=Linux ;;
1445 freebsd) system_name=FreeBSD ;;
1446 gnu/kfreebsd) system_name=FreeBSD ;;
1447 netbsd) system_name=NetBSD ;;
1448 bsd/os) system_name=BSD/OS ;;
1449 openbsd) system_name=OpenBSD ;;
1450 dragonfly) system_name=DragonFly ;;
1451 sunos) system_name=SunOS ;;
1452 qnx) system_name=QNX ;;
1453 morphos) system_name=MorphOS ;;
1454 amigaos) system_name=AmigaOS ;;
1455 mingw32*) system_name=MINGW32 ;;
1456 esac
1457 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1458 host_arch=$(echo $_target | cut -d '-' -f 1)
1459 if test $(echo $host_arch) != "x86_64" ; then
1460 host_arch=$(echo $host_arch | tr '_' '-')
1464 extra_cflags="-I. $extra_cflags"
1465 _timer=timer-linux.c
1466 _getch=getch2.c
1467 if freebsd ; then
1468 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1469 extra_cflags="$extra_cflags -I/usr/local/include"
1472 if netbsd || dragonfly ; then
1473 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1474 extra_cflags="$extra_cflags -I/usr/pkg/include"
1477 if darwin; then
1478 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1479 _timer=timer-darwin.c
1482 if aix ; then
1483 extra_ldflags="$extra_ldflags -lC"
1486 if irix ; then
1487 _ranlib='ar -r'
1488 elif linux ; then
1489 _ranlib='true'
1492 if win32 ; then
1493 _exesuf=".exe"
1494 extra_cflags="$extra_cflags -fno-common"
1495 # -lwinmm is always needed for osdep/timer-win2.c
1496 extra_ldflags="$extra_ldflags -lwinmm"
1497 _pe_executable=yes
1498 _timer=timer-win2.c
1499 _priority=yes
1500 def_dos_paths="#define HAVE_DOS_PATHS 1"
1501 def_priority="#define CONFIG_PRIORITY 1"
1504 if mingw32 ; then
1505 _getch=getch2-win.c
1506 _need_shmem=no
1509 if amigaos ; then
1510 _select=no
1511 _sighandler=no
1512 _stream_cache=no
1513 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1514 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1517 if qnx ; then
1518 extra_ldflags="$extra_ldflags -lph"
1521 if os2 ; then
1522 _exesuf=".exe"
1523 _getch=getch2-os2.c
1524 _need_shmem=no
1525 _priority=yes
1526 def_dos_paths="#define HAVE_DOS_PATHS 1"
1527 def_priority="#define CONFIG_PRIORITY 1"
1530 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1531 test "$I" && break
1532 done
1535 TMPLOG="configure.log"
1536 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1537 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1538 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1539 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1540 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1542 rm -f "$TMPLOG"
1543 echo configuration: $_configuration > "$TMPLOG"
1544 echo >> "$TMPLOG"
1547 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1548 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1552 # Checking CC version...
1553 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1554 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1555 echocheck "$_cc version"
1556 cc_vendor=intel
1557 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1558 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1559 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1560 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1561 # TODO verify older icc/ecc compatibility
1562 case $cc_version in
1564 cc_version="v. ?.??, bad"
1565 cc_fail=yes
1567 10.1|11.0|11.1)
1568 cc_version="$cc_version, ok"
1571 cc_version="$cc_version, bad"
1572 cc_fail=yes
1574 esac
1575 echores "$cc_version"
1576 else
1577 for _cc in "$_cc" gcc cc ; do
1578 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1579 if test "$cc_name_tmp" = "gcc"; then
1580 cc_name=$cc_name_tmp
1581 echocheck "$_cc version"
1582 cc_vendor=gnu
1583 cc_version=$($_cc -dumpversion 2>&1)
1584 case $cc_version in
1585 2.96*)
1586 cc_fail=yes
1589 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1590 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1591 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1593 esac
1594 echores "$cc_version"
1595 break
1597 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1598 if test "$cc_name_tmp" = "Sun C"; then
1599 echocheck "$_cc version"
1600 cc_vendor=sun
1601 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1602 _res_comment="experimental support only"
1603 echores "Sun C $cc_version"
1604 break
1606 done
1607 fi # icc
1608 test "$cc_fail" = yes && die "unsupported compiler version"
1610 if test -z "$_target" && x86 ; then
1611 cat > $TMPC << EOF
1612 int main(void) {
1613 int test[(int)sizeof(char *)-7];
1614 return 0;
1617 cc_check && host_arch=x86_64 || host_arch=i386
1620 echo "Detected operating system: $system_name"
1621 echo "Detected host architecture: $host_arch"
1623 echocheck "host cc"
1624 test "$_host_cc" || _host_cc=$_cc
1625 echores $_host_cc
1627 echocheck "cross compilation"
1628 if test $_cross_compile = auto ; then
1629 cat > $TMPC << EOF
1630 int main(void) { return 0; }
1632 _cross_compile=yes
1633 cc_check && "$TMPEXE" && _cross_compile=no
1635 echores $_cross_compile
1637 if test $_cross_compile = yes; then
1638 tmp_run() {
1639 return 0
1643 # ---
1645 # now that we know what compiler should be used for compilation, try to find
1646 # out which assembler is used by the $_cc compiler
1647 if test "$_as" = auto ; then
1648 _as=$($_cc -print-prog-name=as)
1649 test -z "$_as" && _as=as
1652 if test "$_nm" = auto ; then
1653 _nm=$($_cc -print-prog-name=nm)
1654 test -z "$_nm" && _nm=nm
1657 # XXX: this should be ok..
1658 _cpuinfo="echo"
1660 if test "$_runtime_cpudetection" = no ; then
1662 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1663 # FIXME: Remove the cygwin check once AMD CPUs are supported
1664 if test -r /proc/cpuinfo && ! cygwin; then
1665 # Linux with /proc mounted, extract CPU information from it
1666 _cpuinfo="cat /proc/cpuinfo"
1667 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1668 # FreeBSD with Linux emulation /proc mounted,
1669 # extract CPU information from it
1670 # Don't use it on x86 though, it never reports 3Dnow
1671 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1672 elif darwin && ! x86 ; then
1673 # use hostinfo on Darwin
1674 _cpuinfo="hostinfo"
1675 elif aix; then
1676 # use 'lsattr' on AIX
1677 _cpuinfo="lsattr -E -l proc0 -a type"
1678 elif x86; then
1679 # all other OSes try to extract CPU information from a small helper
1680 # program cpuinfo instead
1681 $_cc -o cpuinfo$_exesuf cpuinfo.c
1682 _cpuinfo="./cpuinfo$_exesuf"
1685 if x86 ; then
1686 # gather more CPU information
1687 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1688 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1689 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1690 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1691 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1693 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1695 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1696 -e s/xmm/sse/ -e s/kni/sse/)
1698 for ext in $pparam ; do
1699 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1700 done
1702 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1703 test $_sse = kernel_check && _mmxext=kernel_check
1705 echocheck "CPU vendor"
1706 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1708 echocheck "CPU type"
1709 echores "$pname"
1712 fi # test "$_runtime_cpudetection" = no
1714 if x86 && test "$_runtime_cpudetection" = no ; then
1715 extcheck() {
1716 if test "$1" = kernel_check ; then
1717 echocheck "kernel support of $2"
1718 cat > $TMPC <<EOF
1719 #include <stdlib.h>
1720 #include <signal.h>
1721 void catch() { exit(1); }
1722 int main(void) {
1723 signal(SIGILL, catch);
1724 __asm__ volatile ("$3":::"memory"); return 0;
1728 if cc_check && tmp_run ; then
1729 eval _$2=yes
1730 echores "yes"
1731 _optimizing="$_optimizing $2"
1732 return 0
1733 else
1734 eval _$2=no
1735 echores "failed"
1736 echo "It seems that your kernel does not correctly support $2."
1737 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1738 return 1
1741 return 0
1744 extcheck $_mmx "mmx" "emms"
1745 extcheck $_mmxext "mmxext" "sfence"
1746 extcheck $_3dnow "3dnow" "femms"
1747 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1748 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1749 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1750 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1751 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1753 echocheck "mtrr support"
1754 if test "$_mtrr" = kernel_check ; then
1755 _mtrr="yes"
1756 _optimizing="$_optimizing mtrr"
1758 echores "$_mtrr"
1760 if test "$_gcc3_ext" != ""; then
1761 # if we had to disable sse/sse2 because the active kernel does not
1762 # support this instruction set extension, we also have to tell
1763 # gcc3 to not generate sse/sse2 instructions for normal C code
1764 cat > $TMPC << EOF
1765 int main(void) { return 0; }
1767 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1773 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1774 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1775 _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'
1776 case "$host_arch" in
1777 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1778 _arch='X86 X86_32'
1779 _target_arch="ARCH_X86 = yes"
1780 _target_subarch="ARCH_X86_32 = yes"
1781 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1782 iproc=486
1783 proc=i486
1786 if test "$_runtime_cpudetection" = no ; then
1787 case "$pvendor" in
1788 AuthenticAMD)
1789 case "$pfamily" in
1790 3) proc=i386 iproc=386 ;;
1791 4) proc=i486 iproc=486 ;;
1792 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1793 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1794 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1795 proc=k6-3
1796 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1797 proc=geode
1798 elif test "$pmodel" -ge 8; then
1799 proc=k6-2
1800 elif test "$pmodel" -ge 6; then
1801 proc=k6
1802 else
1803 proc=i586
1806 6) iproc=686
1807 # It's a bit difficult to determine the correct type of Family 6
1808 # AMD CPUs just from their signature. Instead, we check directly
1809 # whether it supports SSE.
1810 if test "$_sse" = yes; then
1811 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1812 proc=athlon-xp
1813 else
1814 # Again, gcc treats athlon and athlon-tbird similarly.
1815 proc=athlon
1818 15) iproc=686
1819 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1820 # caught and remedied in the optimization tests below.
1821 proc=k8
1824 *) proc=amdfam10 iproc=686
1825 test $_fast_clz = "auto" && _fast_clz=yes
1827 esac
1829 GenuineIntel)
1830 case "$pfamily" in
1831 3) proc=i386 iproc=386 ;;
1832 4) proc=i486 iproc=486 ;;
1833 5) iproc=586
1834 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1835 proc=pentium-mmx # 4 is desktop, 8 is mobile
1836 else
1837 proc=i586
1840 6) iproc=686
1841 if test "$pmodel" -ge 15; then
1842 proc=core2
1843 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1844 proc=pentium-m
1845 elif test "$pmodel" -ge 7; then
1846 proc=pentium3
1847 elif test "$pmodel" -ge 3; then
1848 proc=pentium2
1849 else
1850 proc=i686
1852 test $_fast_clz = "auto" && _fast_clz=yes
1854 15) iproc=686
1855 # A nocona in 32-bit mode has no more capabilities than a prescott.
1856 if test "$pmodel" -ge 3; then
1857 proc=prescott
1858 else
1859 proc=pentium4
1860 test $_fast_clz = "auto" && _fast_clz=yes
1862 test $_fast_cmov = "auto" && _fast_cmov=no
1864 *) proc=prescott iproc=686 ;;
1865 esac
1867 CentaurHauls)
1868 case "$pfamily" in
1869 5) iproc=586
1870 if test "$pmodel" -ge 8; then
1871 proc=winchip2
1872 elif test "$pmodel" -ge 4; then
1873 proc=winchip-c6
1874 else
1875 proc=i586
1878 6) iproc=686
1879 if test "$pmodel" -ge 9; then
1880 proc=c3-2
1881 else
1882 proc=c3
1883 iproc=586
1886 *) proc=i686 iproc=i686 ;;
1887 esac
1889 unknown)
1890 case "$pfamily" in
1891 3) proc=i386 iproc=386 ;;
1892 4) proc=i486 iproc=486 ;;
1893 *) proc=i586 iproc=586 ;;
1894 esac
1897 proc=i586 iproc=586 ;;
1898 esac
1899 test $_fast_clz = "auto" && _fast_clz=no
1900 fi # test "$_runtime_cpudetection" = no
1903 # check that gcc supports our CPU, if not, fall back to earlier ones
1904 # LGB: check -mcpu and -march swithing step by step with enabling
1905 # to fall back till 386.
1907 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1909 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1910 cpuopt=-mtune
1911 else
1912 cpuopt=-mcpu
1915 echocheck "GCC & CPU optimization abilities"
1916 cat > $TMPC << EOF
1917 int main(void) { return 0; }
1919 if test "$_runtime_cpudetection" = no ; then
1920 cc_check -march=native && proc=native
1921 if test "$proc" = "k8"; then
1922 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1924 if test "$proc" = "athlon-xp"; then
1925 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1927 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1928 cc_check -march=$proc $cpuopt=$proc || proc=k6
1930 if test "$proc" = "k6" || test "$proc" = "c3"; then
1931 if ! cc_check -march=$proc $cpuopt=$proc; then
1932 if cc_check -march=i586 $cpuopt=i686; then
1933 proc=i586-i686
1934 else
1935 proc=i586
1939 if test "$proc" = "prescott" ; then
1940 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1942 if test "$proc" = "core2" ; then
1943 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1945 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
1946 cc_check -march=$proc $cpuopt=$proc || proc=i686
1948 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1949 cc_check -march=$proc $cpuopt=$proc || proc=i586
1951 if test "$proc" = "i586"; then
1952 cc_check -march=$proc $cpuopt=$proc || proc=i486
1954 if test "$proc" = "i486" ; then
1955 cc_check -march=$proc $cpuopt=$proc || proc=i386
1957 if test "$proc" = "i386" ; then
1958 cc_check -march=$proc $cpuopt=$proc || proc=error
1960 if test "$proc" = "error" ; then
1961 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1962 _mcpu=""
1963 _march=""
1964 _optimizing=""
1965 elif test "$proc" = "i586-i686"; then
1966 _march="-march=i586"
1967 _mcpu="$cpuopt=i686"
1968 _optimizing="$proc"
1969 else
1970 _march="-march=$proc"
1971 _mcpu="$cpuopt=$proc"
1972 _optimizing="$proc"
1974 else # if test "$_runtime_cpudetection" = no
1975 _mcpu="$cpuopt=generic"
1976 # at least i486 required, for bswap instruction
1977 _march="-march=i486"
1978 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1979 cc_check $_mcpu || _mcpu=""
1980 cc_check $_march $_mcpu || _march=""
1983 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1984 ## autodetected mcpu/march parameters
1985 if test "$_target" ; then
1986 # TODO: it may be a good idea to check GCC and fall back in all cases
1987 if test "$host_arch" = "i586-i686"; then
1988 _march="-march=i586"
1989 _mcpu="$cpuopt=i686"
1990 else
1991 _march="-march=$host_arch"
1992 _mcpu="$cpuopt=$host_arch"
1995 proc="$host_arch"
1997 case "$proc" in
1998 i386) iproc=386 ;;
1999 i486) iproc=486 ;;
2000 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
2001 i686|athlon*|pentium*) iproc=686 ;;
2002 *) iproc=586 ;;
2003 esac
2006 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
2007 _fast_cmov="yes"
2008 else
2009 _fast_cmov="no"
2011 test $_fast_clz = "auto" && _fast_clz=yes
2013 echores "$proc"
2016 ia64)
2017 _arch='IA64'
2018 _target_arch='ARCH_IA64 = yes'
2019 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2020 iproc='ia64'
2023 x86_64|amd64)
2024 _arch='X86 X86_64'
2025 _target_subarch='ARCH_X86_64 = yes'
2026 _target_arch="ARCH_X86 = yes"
2027 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2028 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2029 iproc='x86_64'
2031 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
2032 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
2033 cpuopt=-mtune
2034 else
2035 cpuopt=-mcpu
2037 if test "$_runtime_cpudetection" = no ; then
2038 case "$pvendor" in
2039 AuthenticAMD)
2040 case "$pfamily" in
2041 15) proc=k8
2042 test $_fast_clz = "auto" && _fast_clz=no
2044 *) proc=amdfam10;;
2045 esac
2047 GenuineIntel)
2048 case "$pfamily" in
2049 6) proc=core2;;
2051 # 64-bit prescotts exist, but as far as GCC is concerned they
2052 # have the same capabilities as a nocona.
2053 proc=nocona
2054 test $_fast_cmov = "auto" && _fast_cmov=no
2055 test $_fast_clz = "auto" && _fast_clz=no
2057 esac
2060 proc=error;;
2061 esac
2062 fi # test "$_runtime_cpudetection" = no
2064 echocheck "GCC & CPU optimization abilities"
2065 cat > $TMPC << EOF
2066 int main(void) { return 0; }
2068 # This is a stripped-down version of the i386 fallback.
2069 if test "$_runtime_cpudetection" = no ; then
2070 cc_check -march=native && proc=native
2071 # --- AMD processors ---
2072 if test "$proc" = "k8"; then
2073 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2075 # This will fail if gcc version < 3.3, which is ok because earlier
2076 # versions don't really support 64-bit on amd64.
2077 # Is this a valid assumption? -Corey
2078 if test "$proc" = "athlon-xp"; then
2079 cc_check -march=$proc $cpuopt=$proc || proc=error
2081 # --- Intel processors ---
2082 if test "$proc" = "core2"; then
2083 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
2085 if test "$proc" = "x86-64"; then
2086 cc_check -march=$proc $cpuopt=$proc || proc=nocona
2088 if test "$proc" = "nocona"; then
2089 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
2091 if test "$proc" = "pentium4"; then
2092 cc_check -march=$proc $cpuopt=$proc || proc=error
2095 _march="-march=$proc"
2096 _mcpu="$cpuopt=$proc"
2097 if test "$proc" = "error" ; then
2098 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2099 _mcpu=""
2100 _march=""
2102 else # if test "$_runtime_cpudetection" = no
2103 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2104 _march="-march=x86-64"
2105 _mcpu="$cpuopt=generic"
2106 cc_check $_mcpu || _mcpu="x86-64"
2107 cc_check $_mcpu || _mcpu=""
2108 cc_check $_march $_mcpu || _march=""
2111 _optimizing="$proc"
2112 test $_fast_cmov = "auto" && _fast_cmov=yes
2113 test $_fast_clz = "auto" && _fast_clz=yes
2115 echores "$proc"
2118 sparc|sparc64)
2119 _arch='SPARC'
2120 _target_arch='ARCH_SPARC = yes'
2121 iproc='sparc'
2122 if test "$host_arch" = "sparc64" ; then
2123 _vis='yes'
2124 proc='ultrasparc'
2125 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2126 elif sunos ; then
2127 echocheck "CPU type"
2128 karch=$(uname -m)
2129 case "$(echo $karch)" in
2130 sun4) proc=v7 ;;
2131 sun4c) proc=v7 ;;
2132 sun4d) proc=v8 ;;
2133 sun4m) proc=v8 ;;
2134 sun4u) proc=ultrasparc _vis='yes' ;;
2135 sun4v) proc=v9 ;;
2136 *) proc=v8 ;;
2137 esac
2138 echores "$proc"
2139 else
2140 proc=v8
2142 _mcpu="-mcpu=$proc"
2143 _optimizing="$proc"
2146 arm*)
2147 _arch='ARM'
2148 _target_arch='ARCH_ARM = yes'
2149 iproc='arm'
2152 avr32)
2153 _arch='AVR32'
2154 _target_arch='ARCH_AVR32 = yes'
2155 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2156 iproc='avr32'
2157 test $_fast_clz = "auto" && _fast_clz=yes
2160 sh|sh4)
2161 _arch='SH4'
2162 _target_arch='ARCH_SH4 = yes'
2163 iproc='sh4'
2166 ppc|ppc64|powerpc|powerpc64)
2167 _arch='PPC'
2168 def_dcbzl='#define HAVE_DCBZL 0'
2169 _target_arch='ARCH_PPC = yes'
2170 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2171 iproc='ppc'
2173 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2174 _arch='PPC PPC64'
2175 _target_subarch='ARCH_PPC64 = yes'
2176 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2178 echocheck "CPU type"
2179 case $system_name in
2180 Linux)
2181 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2182 if test -n "$($_cpuinfo | grep altivec)"; then
2183 test $_altivec = auto && _altivec=yes
2186 Darwin)
2187 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2188 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2189 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2190 test $_altivec = auto && _altivec=yes
2193 NetBSD)
2194 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2195 case $cc_version in
2196 2*|3.0*|3.1*|3.2*|3.3*)
2199 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2200 test $_altivec = auto && _altivec=yes
2203 esac
2205 AIX)
2206 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2208 esac
2209 if test "$_altivec" = yes; then
2210 echores "$proc altivec"
2211 else
2212 _altivec=no
2213 echores "$proc"
2216 echocheck "GCC & CPU optimization abilities"
2218 if test -n "$proc"; then
2219 case "$proc" in
2220 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2221 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2222 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2223 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2224 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2225 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2226 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2227 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2228 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2229 *) ;;
2230 esac
2231 # gcc 3.1(.1) and up supports 7400 and 7450
2232 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2233 case "$proc" in
2234 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2235 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2236 *) ;;
2237 esac
2239 # gcc 3.2 and up supports 970
2240 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2241 case "$proc" in
2242 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2243 def_dcbzl='#define HAVE_DCBZL 1' ;;
2244 *) ;;
2245 esac
2247 # gcc 3.3 and up supports POWER4
2248 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2249 case "$proc" in
2250 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2251 *) ;;
2252 esac
2254 # gcc 3.4 and up supports 440*
2255 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2256 case "$proc" in
2257 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2258 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2259 *) ;;
2260 esac
2262 # gcc 4.0 and up supports POWER5
2263 if test "$_cc_major" -ge "4"; then
2264 case "$proc" in
2265 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2266 *) ;;
2267 esac
2271 if test -n "$_mcpu"; then
2272 _optimizing=$(echo $_mcpu | cut -c 8-)
2273 echores "$_optimizing"
2274 else
2275 echores "none"
2278 test $_fast_clz = "auto" && _fast_clz=yes
2282 alpha*)
2283 _arch='ALPHA'
2284 _target_arch='ARCH_ALPHA = yes'
2285 iproc='alpha'
2287 echocheck "CPU type"
2288 cat > $TMPC << EOF
2289 int main(void) {
2290 unsigned long ver, mask;
2291 __asm__ ("implver %0" : "=r" (ver));
2292 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2293 printf("%ld-%x\n", ver, ~mask);
2294 return 0;
2297 $_cc -o "$TMPEXE" "$TMPC"
2298 case $("$TMPEXE") in
2300 0-0) proc="ev4"; _mvi="0";;
2301 1-0) proc="ev5"; _mvi="0";;
2302 1-1) proc="ev56"; _mvi="0";;
2303 1-101) proc="pca56"; _mvi="1";;
2304 2-303) proc="ev6"; _mvi="1";;
2305 2-307) proc="ev67"; _mvi="1";;
2306 2-1307) proc="ev68"; _mvi="1";;
2307 esac
2308 echores "$proc"
2310 echocheck "GCC & CPU optimization abilities"
2311 if test "$proc" = "ev68" ; then
2312 cc_check -mcpu=$proc || proc=ev67
2314 if test "$proc" = "ev67" ; then
2315 cc_check -mcpu=$proc || proc=ev6
2317 _mcpu="-mcpu=$proc"
2318 echores "$proc"
2320 test $_fast_clz = "auto" && _fast_clz=yes
2322 _optimizing="$proc"
2325 mips)
2326 _arch='SGI_MIPS'
2327 _target_arch='ARCH_SGI_MIPS = yes'
2328 iproc='sgi-mips'
2330 if irix ; then
2331 echocheck "CPU type"
2332 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2333 case "$(echo $proc)" in
2334 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2335 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2336 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2337 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2338 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2339 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2340 esac
2341 # gcc < 3.x does not support -mtune.
2342 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2343 _mcpu=''
2345 echores "$proc"
2348 test $_fast_clz = "auto" && _fast_clz=yes
2352 hppa)
2353 _arch='PA_RISC'
2354 _target_arch='ARCH_PA_RISC = yes'
2355 iproc='PA-RISC'
2358 s390)
2359 _arch='S390'
2360 _target_arch='ARCH_S390 = yes'
2361 iproc='390'
2364 s390x)
2365 _arch='S390X'
2366 _target_arch='ARCH_S390X = yes'
2367 iproc='390x'
2370 vax)
2371 _arch='VAX'
2372 _target_arch='ARCH_VAX = yes'
2373 iproc='vax'
2376 xtensa)
2377 _arch='XTENSA'
2378 _target_arch='ARCH_XTENSA = yes'
2379 iproc='xtensa'
2382 generic)
2383 _arch='GENERIC'
2384 _target_arch='ARCH_GENERIC = yes'
2388 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2389 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2390 die "unsupported architecture $host_arch"
2392 esac # case "$host_arch" in
2394 if test "$_runtime_cpudetection" = yes ; then
2395 if x86 ; then
2396 test "$_cmov" != no && _cmov=yes
2397 x86_32 && _cmov=no
2398 test "$_mmx" != no && _mmx=yes
2399 test "$_3dnow" != no && _3dnow=yes
2400 test "$_3dnowext" != no && _3dnowext=yes
2401 test "$_mmxext" != no && _mmxext=yes
2402 test "$_sse" != no && _sse=yes
2403 test "$_sse2" != no && _sse2=yes
2404 test "$_ssse3" != no && _ssse3=yes
2405 test "$_mtrr" != no && _mtrr=yes
2407 if ppc; then
2408 _altivec=yes
2413 # endian testing
2414 echocheck "byte order"
2415 if test "$_big_endian" = auto ; then
2416 cat > $TMPC <<EOF
2417 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2418 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2419 int main(void) { return (int)ascii_name; }
2421 if cc_check ; then
2422 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2423 _big_endian=yes
2424 else
2425 _big_endian=no
2427 else
2428 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2431 if test "$_big_endian" = yes ; then
2432 _byte_order='big-endian'
2433 def_words_endian='#define WORDS_BIGENDIAN 1'
2434 def_bigendian='#define HAVE_BIGENDIAN 1'
2435 def_av_bigendian='#define AV_HAVE_BIGENDIAN 1'
2436 else
2437 _byte_order='little-endian'
2438 def_words_endian='#undef WORDS_BIGENDIAN'
2439 def_bigendian='#define HAVE_BIGENDIAN 0'
2440 def_av_bigendian='#define AV_HAVE_BIGENDIAN 0'
2442 echores "$_byte_order"
2445 echocheck "extern symbol prefix"
2446 cat > $TMPC << EOF
2447 int ff_extern;
2449 cc_check -c || die "Symbol mangling check failed."
2450 sym=$($_nm -P -g $TMPEXE)
2451 extern_prefix=${sym%%ff_extern*}
2452 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2453 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2454 echores $extern_prefix
2457 echocheck "assembler support of -pipe option"
2458 cat > $TMPC << EOF
2459 int main(void) { return 0; }
2461 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2462 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2465 echocheck "compiler support of named assembler arguments"
2466 _named_asm_args=yes
2467 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2468 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2469 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2470 _named_asm_args=no
2471 def_named_asm_args="#undef NAMED_ASM_ARGS"
2473 echores $_named_asm_args
2476 if darwin && test "$cc_vendor" = "gnu" ; then
2477 echocheck "GCC support of -mstackrealign"
2478 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2479 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2480 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2481 # wrong code with this flag, but this can be worked around by adding
2482 # -fno-unit-at-a-time as described in the blog post at
2483 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2484 cat > $TMPC << EOF
2485 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2486 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2488 cc_check -O4 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2489 test -z "$cflags_stackrealign" && cc_check -O4 -mstackrealign -fno-unit-at-a-time \
2490 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2491 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2492 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2495 # Checking for CFLAGS
2496 _install_strip="-s"
2497 if test "$_profile" != "" || test "$_debug" != "" ; then
2498 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2499 _install_strip=
2500 elif test -z "$CFLAGS" ; then
2501 if test "$cc_vendor" = "intel" ; then
2502 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2503 elif test "$cc_vendor" = "sun" ; then
2504 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2505 elif test "$cc_vendor" != "gnu" ; then
2506 CFLAGS="-O2 $_march $_mcpu $_pipe"
2507 else
2508 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2509 extra_ldflags="$extra_ldflags -ffast-math"
2511 else
2512 _warn_CFLAGS=yes
2515 cat > $TMPC << EOF
2516 int main(void) { return 0; }
2518 if test "$cc_vendor" = "gnu" ; then
2519 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2520 cc_check -Wdeclaration-after-statement && CFLAGS="-Wdeclaration-after-statement $CFLAGS"
2521 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2522 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2523 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2524 else
2525 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2528 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2531 if test -n "$LDFLAGS" ; then
2532 extra_ldflags="$extra_ldflags $LDFLAGS"
2533 _warn_CFLAGS=yes
2534 elif test "$cc_vendor" = "intel" ; then
2535 extra_ldflags="$extra_ldflags -i-static"
2537 if test -n "$CPPFLAGS" ; then
2538 extra_cflags="$extra_cflags $CPPFLAGS"
2539 _warn_CFLAGS=yes
2544 if x86_32 ; then
2545 # Checking assembler (_as) compatibility...
2546 # Added workaround for older as that reads from stdin by default - atmos
2547 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2548 echocheck "assembler ($_as $as_version)"
2550 _pref_as_version='2.9.1'
2551 echo 'nop' > $TMPS
2552 if test "$_mmx" = yes ; then
2553 echo 'emms' >> $TMPS
2555 if test "$_3dnow" = yes ; then
2556 _pref_as_version='2.10.1'
2557 echo 'femms' >> $TMPS
2559 if test "$_3dnowext" = yes ; then
2560 _pref_as_version='2.10.1'
2561 echo 'pswapd %mm0, %mm0' >> $TMPS
2563 if test "$_mmxext" = yes ; then
2564 _pref_as_version='2.10.1'
2565 echo 'movntq %mm0, (%eax)' >> $TMPS
2567 if test "$_sse" = yes ; then
2568 _pref_as_version='2.10.1'
2569 echo 'xorps %xmm0, %xmm0' >> $TMPS
2571 #if test "$_sse2" = yes ; then
2572 # _pref_as_version='2.11'
2573 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2575 if test "$_cmov" = yes ; then
2576 _pref_as_version='2.10.1'
2577 echo 'cmovb %eax, %ebx' >> $TMPS
2579 if test "$_ssse3" = yes ; then
2580 _pref_as_version='2.16.92'
2581 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2583 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2585 if test "$as_verc_fail" != yes ; then
2586 echores "ok"
2587 else
2588 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2589 echores "failed"
2590 die "obsolete binutils version"
2593 fi #if x86_32
2595 echocheck ".align is a power of two"
2596 if test "$_asmalign_pot" = auto ; then
2597 _asmalign_pot=no
2598 cat > $TMPC << EOF
2599 int main(void) { __asm__ (".align 3"); return 0; }
2601 cc_check && _asmalign_pot=yes
2603 if test "$_asmalign_pot" = "yes" ; then
2604 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2605 else
2606 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2608 echores $_asmalign_pot
2610 if x86 ; then
2611 echocheck "10 assembler operands"
2612 ten_operands=no
2613 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2614 cat > $TMPC << EOF
2615 int main(void) {
2616 int x=0;
2617 __asm__ volatile(
2619 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2621 return 0;
2624 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2625 echores $ten_operands
2627 echocheck "ebx availability"
2628 ebx_available=no
2629 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2630 cat > $TMPC << EOF
2631 int main(void) {
2632 int x;
2633 __asm__ volatile(
2634 "xor %0, %0"
2635 :"=b"(x)
2636 // just adding ebx to clobber list seems unreliable with some
2637 // compilers, e.g. Haiku's gcc 2.95
2639 // and the above check does not work for OSX 64 bit...
2640 __asm__ volatile("":::"%ebx");
2641 return 0;
2644 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2645 echores $ebx_available
2647 echocheck "PIC"
2648 pic=no
2649 cat > $TMPC << EOF
2650 int main(void) {
2651 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2652 #error PIC not enabled
2653 #endif
2654 return 0;
2657 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2658 echores $pic
2660 echocheck "yasm"
2661 if test -z "$YASMFLAGS" ; then
2662 if darwin ; then
2663 x86_64 && objformat="macho64" || objformat="macho"
2664 elif win32 ; then
2665 objformat="win32"
2666 else
2667 objformat="elf"
2669 # currently tested for Linux x86, x86_64
2670 YASMFLAGS="-f $objformat"
2671 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2672 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2673 case "$objformat" in
2674 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2675 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2676 esac
2677 else
2678 _warn_CFLAGS=yes
2681 echo "pabsw xmm0, xmm0" > $TMPS
2682 yasm_check || _yasm=""
2683 if test $_yasm ; then
2684 test "$_mmx" = "yes" && fft_mmx="yes"
2685 def_yasm='#define HAVE_YASM 1'
2686 _have_yasm="yes"
2687 echores "$_yasm"
2688 else
2689 def_yasm='#define HAVE_YASM 0'
2690 fft_mmx="no"
2691 _have_yasm="no"
2692 echores "no"
2695 echocheck "bswap"
2696 def_bswap='#define HAVE_BSWAP 0'
2697 echo 'bswap %eax' > $TMPS
2698 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2699 echores "$bswap"
2700 fi #if x86
2703 #FIXME: This should happen before the check for CFLAGS..
2704 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2705 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2707 # check if AltiVec is supported by the compiler, and how to enable it
2708 echocheck "GCC AltiVec flags"
2709 cat > $TMPC << EOF
2710 int main(void) { return 0; }
2712 if $(cc_check -maltivec -mabi=altivec) ; then
2713 _altivec_gcc_flags="-maltivec -mabi=altivec"
2714 # check if <altivec.h> should be included
2715 cat > $TMPC << EOF
2716 #include <altivec.h>
2717 int main(void) { return 0; }
2719 if $(cc_check $_altivec_gcc_flags) ; then
2720 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2721 inc_altivec_h='#include <altivec.h>'
2722 else
2723 cat > $TMPC << EOF
2724 int main(void) { return 0; }
2726 if $(cc_check -faltivec) ; then
2727 _altivec_gcc_flags="-faltivec"
2728 else
2729 _altivec=no
2730 _altivec_gcc_flags="none, AltiVec disabled"
2734 echores "$_altivec_gcc_flags"
2736 # check if the compiler supports braces for vector declarations
2737 cat > $TMPC << EOF
2738 $inc_altivec_h
2739 int main(void) { (vector int) {1}; return 0; }
2741 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2743 # Disable runtime cpudetection if we cannot generate AltiVec code or
2744 # AltiVec is disabled by the user.
2745 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2746 && _runtime_cpudetection=no
2748 # Show that we are optimizing for AltiVec (if enabled and supported).
2749 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2750 && _optimizing="$_optimizing altivec"
2752 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2753 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2756 if ppc ; then
2757 def_xform_asm='#define HAVE_XFORM_ASM 0'
2758 xform_asm=no
2759 echocheck "XFORM ASM support"
2760 cat > $TMPC << EOF
2761 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2763 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2764 echores "$xform_asm"
2767 if arm ; then
2768 echocheck "ARM pld instruction"
2769 cat > $TMPC << EOF
2770 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2772 pld=no
2773 cc_check && pld=yes
2774 echores "$pld"
2776 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2777 if test $_armv5te = "auto" ; then
2778 cat > $TMPC << EOF
2779 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2781 _armv5te=no
2782 cc_check && _armv5te=yes
2784 echores "$_armv5te"
2786 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2788 echocheck "ARMv6 (SIMD instructions)"
2789 if test $_armv6 = "auto" ; then
2790 cat > $TMPC << EOF
2791 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2793 _armv6=no
2794 cc_check && _armv6=yes
2796 echores "$_armv6"
2798 echocheck "ARMv6t2 (SIMD instructions)"
2799 if test $_armv6t2 = "auto" ; then
2800 cat > $TMPC << EOF
2801 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2803 _armv6t2=no
2804 cc_check && _armv6t2=yes
2806 echores "$_armv6"
2808 echocheck "ARM VFP"
2809 if test $_armvfp = "auto" ; then
2810 cat > $TMPC << EOF
2811 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2813 _armvfp=no
2814 cc_check && _armvfp=yes
2816 echores "$_armvfp"
2818 echocheck "ARM NEON"
2819 if test $neon = "auto" ; then
2820 cat > $TMPC << EOF
2821 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2823 neon=no
2824 cc_check && neon=yes
2826 echores "$neon"
2828 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2829 if test $_iwmmxt = "auto" ; then
2830 cat > $TMPC << EOF
2831 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2833 _iwmmxt=no
2834 cc_check && _iwmmxt=yes
2836 echores "$_iwmmxt"
2839 _cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2840 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2841 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2842 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2843 test "$_3dnow" = yes && _cpuexts="AMD3DNOW $_cpuexts"
2844 test "$_3dnowext" = yes && _cpuexts="AMD3DNOWEXT $_cpuexts"
2845 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2846 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2847 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2848 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2849 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2850 test "$_fast_clz" = yes && _cpuexts="FAST_CLZ $_cpuexts"
2851 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2852 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2853 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2854 test "$_armv6t2" = yes && _cpuexts="ARMV6T2 $_cpuexts"
2855 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2856 test "$neon" = yes && _cpuexts="NEON $_cpuexts"
2857 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2858 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2859 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2861 # Checking kernel version...
2862 if x86_32 && linux ; then
2863 _k_verc_problem=no
2864 kernel_version=$(uname -r 2>&1)
2865 echocheck "$system_name kernel version"
2866 case "$kernel_version" in
2867 '') kernel_version="?.??"; _k_verc_fail=yes;;
2868 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2869 _k_verc_problem=yes;;
2870 esac
2871 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2872 _k_verc_fail=yes
2874 if test "$_k_verc_fail" ; then
2875 echores "$kernel_version, fail"
2876 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2877 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2878 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2879 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2880 echo "2.2.x you must upgrade it to get SSE support!"
2881 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2882 else
2883 echores "$kernel_version, ok"
2887 ######################
2888 # MAIN TESTS GO HERE #
2889 ######################
2892 echocheck "-lposix"
2893 cat > $TMPC <<EOF
2894 int main(void) { return 0; }
2896 if cc_check -lposix ; then
2897 extra_ldflags="$extra_ldflags -lposix"
2898 echores "yes"
2899 else
2900 echores "no"
2903 echocheck "-lm"
2904 cat > $TMPC <<EOF
2905 int main(void) { return 0; }
2907 if cc_check -lm ; then
2908 _ld_lm="-lm"
2909 echores "yes"
2910 else
2911 _ld_lm=""
2912 echores "no"
2916 echocheck "langinfo"
2917 if test "$_langinfo" = auto ; then
2918 cat > $TMPC <<EOF
2919 #include <langinfo.h>
2920 int main(void) { nl_langinfo(CODESET); return 0; }
2922 _langinfo=no
2923 cc_check && _langinfo=yes
2925 if test "$_langinfo" = yes ; then
2926 def_langinfo='#define HAVE_LANGINFO 1'
2927 else
2928 def_langinfo='#undef HAVE_LANGINFO'
2930 echores "$_langinfo"
2933 echocheck "language"
2934 # Set preferred languages, "all" uses English as main language.
2935 test -z "$language" && language=$LINGUAS
2936 test -z "$language_doc" && language_doc=$language
2937 test -z "$language_man" && language_man=$language
2938 test -z "$language_msg" && language_msg=$language
2939 language_doc=$(echo $language_doc | tr , " ")
2940 language_man=$(echo $language_man | tr , " ")
2941 language_msg=$(echo $language_msg | tr , " ")
2943 test "$language_doc" = "all" && language_doc=$doc_lang_all
2944 test "$language_man" = "all" && language_man=$man_lang_all
2945 test "$language_msg" = "all" && language_msg=en
2947 # Prune non-existing translations from language lists.
2948 # Set message translation to the first available language.
2949 # Fall back on English.
2950 for lang in $language_doc ; do
2951 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2952 done
2953 language_doc=$tmp_language_doc
2954 test -z "$language_doc" && language_doc=en
2956 for lang in $language_man ; do
2957 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2958 done
2959 language_man=$tmp_language_man
2960 test -z "$language_man" && language_man=en
2962 for lang in $language_msg ; do
2963 test -f "help/help_mp-${lang}.h" && tmp_language_msg=$lang && break
2964 done
2965 language_msg=$tmp_language_msg
2966 test -z "$language_msg" && language_msg=en
2967 _mp_help="help/help_mp-${language_msg}.h"
2968 echores "messages: $language_msg - man pages: $language_man - documentation: $language_doc"
2971 echocheck "enable sighandler"
2972 if test "$_sighandler" = yes ; then
2973 def_sighandler='#define CONFIG_SIGHANDLER 1'
2974 else
2975 def_sighandler='#undef CONFIG_SIGHANDLER'
2977 echores "$_sighandler"
2979 echocheck "runtime cpudetection"
2980 if test "$_runtime_cpudetection" = yes ; then
2981 _optimizing="Runtime CPU-Detection enabled"
2982 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2983 else
2984 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2986 echores "$_runtime_cpudetection"
2989 echocheck "restrict keyword"
2990 for restrict_keyword in restrict __restrict __restrict__ ; do
2991 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2992 if cc_check; then
2993 def_restrict_keyword=$restrict_keyword
2994 break;
2996 done
2997 if [ -n "$def_restrict_keyword" ]; then
2998 echores "$def_restrict_keyword"
2999 else
3000 echores "none"
3002 # Avoid infinite recursion loop ("#define restrict restrict")
3003 if [ "$def_restrict_keyword" != "restrict" ]; then
3004 def_restrict_keyword="#define restrict $def_restrict_keyword"
3005 else
3006 def_restrict_keyword=""
3010 echocheck "__builtin_expect"
3011 # GCC branch prediction hint
3012 cat > $TMPC << EOF
3013 int foo(int a) {
3014 a = __builtin_expect(a, 10);
3015 return a == 10 ? 0 : 1;
3017 int main(void) { return foo(10) && foo(0); }
3019 _builtin_expect=no
3020 cc_check && _builtin_expect=yes
3021 if test "$_builtin_expect" = yes ; then
3022 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
3023 else
3024 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
3026 echores "$_builtin_expect"
3029 echocheck "kstat"
3030 cat > $TMPC << EOF
3031 #include <kstat.h>
3032 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
3034 _kstat=no
3035 cc_check -lkstat && _kstat=yes
3036 if test "$_kstat" = yes ; then
3037 def_kstat="#define HAVE_LIBKSTAT 1"
3038 extra_ldflags="$extra_ldflags -lkstat"
3039 else
3040 def_kstat="#undef HAVE_LIBKSTAT"
3042 echores "$_kstat"
3045 echocheck "posix4"
3046 # required for nanosleep on some systems
3047 cat > $TMPC << EOF
3048 #include <time.h>
3049 int main(void) { (void) nanosleep(0, 0); return 0; }
3051 _posix4=no
3052 cc_check -lposix4 && _posix4=yes
3053 if test "$_posix4" = yes ; then
3054 extra_ldflags="$extra_ldflags -lposix4"
3056 echores "$_posix4"
3058 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
3059 echocheck $func
3060 cat > $TMPC << EOF
3061 #include <math.h>
3062 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
3064 eval _$func=no
3065 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
3066 if eval test "x\$_$func" = "xyes"; then
3067 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
3068 echores yes
3069 else
3070 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
3071 echores no
3073 done
3076 echocheck "mkstemp"
3077 cat > $TMPC << EOF
3078 #include <stdlib.h>
3079 int main(void) { char a; mkstemp(&a); return 0; }
3081 _mkstemp=no
3082 cc_check && _mkstemp=yes
3083 if test "$_mkstemp" = yes ; then
3084 def_mkstemp='#define HAVE_MKSTEMP 1'
3085 else
3086 def_mkstemp='#undef HAVE_MKSTEMP'
3088 echores "$_mkstemp"
3091 echocheck "nanosleep"
3092 # also check for nanosleep
3093 cat > $TMPC << EOF
3094 #include <time.h>
3095 int main(void) { (void) nanosleep(0, 0); return 0; }
3097 _nanosleep=no
3098 cc_check && _nanosleep=yes
3099 if test "$_nanosleep" = yes ; then
3100 def_nanosleep='#define HAVE_NANOSLEEP 1'
3101 else
3102 def_nanosleep='#undef HAVE_NANOSLEEP'
3104 echores "$_nanosleep"
3107 echocheck "socklib"
3108 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3109 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3110 cat > $TMPC << EOF
3111 #include <netdb.h>
3112 #include <sys/socket.h>
3113 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3115 _socklib=no
3116 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3117 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3118 done
3119 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3120 if test $_winsock2_h = auto ; then
3121 _winsock2_h=no
3122 cat > $TMPC << EOF
3123 #include <winsock2.h>
3124 int main(void) { (void) gethostbyname(0); return 0; }
3126 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3128 test "$_ld_sock" && _res_comment="using $_ld_sock"
3129 echores "$_socklib"
3132 if test $_winsock2_h = yes ; then
3133 _ld_sock="-lws2_32"
3134 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3135 cc_check_winsock2_h='-DHAVE_WINSOCK2_H=1'
3136 else
3137 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3138 cc_check_winsock2_h='-DHAVE_WINSOCK2_H=0'
3142 echocheck "netdb.h, struct addrinfo"
3143 if test "$_struct_addrinfo" = auto; then
3144 _struct_addrinfo=no
3145 cat > $TMPC << EOF
3146 #if HAVE_WINSOCK2_H
3147 #include <winsock2.h>
3148 #else
3149 #include <sys/types.h>
3150 #include <sys/socket.h>
3151 #include <netdb.h>
3152 #endif
3153 int main(void) { struct addrinfo *ai; return 0; }
3155 cc_check $cc_check_winsock2_h && _struct_addrinfo=yes
3157 echores "$_struct_addrinfo"
3159 if test "$_struct_addrinfo" = yes; then
3160 def_addrinfo="#define HAVE_STRUCT_ADDRINFO 1"
3161 else
3162 def_addrinfo="#define HAVE_STRUCT_ADDRINFO 0"
3166 echocheck "netdb.h, getaddrinfo()"
3167 if test "$_getaddrinfo" = auto; then
3168 _getaddrinfo=no
3169 cat > $TMPC << EOF
3170 #if HAVE_WINSOCK2_H
3171 #include <winsock2.h>
3172 #else
3173 #include <sys/types.h>
3174 #include <sys/socket.h>
3175 #include <netdb.h>
3176 #endif
3177 int main(void) { (void) getaddrinfo(0, 0, 0, 0); return 0; }
3179 cc_check $cc_check_winsock2_h && _getaddrinfo=yes
3181 echores "$_getaddrinfo"
3183 if test "$_getaddrinfo" = yes; then
3184 def_getaddrinfo="#define HAVE_GETADDRINFO 1"
3185 else
3186 def_getaddrinfo="#define HAVE_GETADDRINFO 0"
3190 echocheck "sockaddr_storage"
3191 if test "$_struct_sockaddr_storage" = auto; then
3192 _struct_sockaddr_storage=no
3193 cat > $TMPC << EOF
3194 #if HAVE_WINSOCK2_H
3195 #include <winsock2.h>
3196 #else
3197 #include <sys/socket.h>
3198 #endif
3199 int main(void) { struct sockaddr_storage sas; return 0; }
3201 cc_check $cc_check_winsock2_h && _struct_sockaddr_storage=yes
3203 echores "$_struct_sockaddr_storage"
3205 if test "$_struct_sockaddr_storage" = yes; then
3206 def_sockaddr_storage="#define HAVE_STRUCT_SOCKADDR_STORAGE 1"
3207 else
3208 def_sockaddr_storage="#define HAVE_STRUCT_SOCKADDR_STORAGE 0"
3212 echocheck "arpa/inet.h"
3213 arpa_inet_h=no
3214 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3215 cat > $TMPC << EOF
3216 #include <arpa/inet.h>
3217 int main(void) { return 0; }
3219 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3220 echores "$arpa_inet_h"
3223 echocheck "inet_pton()"
3224 def_inet_pton='#define HAVE_INET_PTON 0'
3225 inet_pton=no
3226 cat > $TMPC << EOF
3227 #include <sys/types.h>
3228 #include <sys/socket.h>
3229 #include <arpa/inet.h>
3230 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3232 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3233 cc_check $_ld_tmp && inet_pton=yes && break
3234 done
3235 if test $inet_pton = yes ; then
3236 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3237 def_inet_pton='#define HAVE_INET_PTON 1'
3239 echores "$inet_pton"
3242 echocheck "inet_aton()"
3243 def_inet_aton='#define HAVE_INET_ATON 0'
3244 inet_aton=no
3245 cat > $TMPC << EOF
3246 #include <sys/types.h>
3247 #include <sys/socket.h>
3248 #include <arpa/inet.h>
3249 int main(void) { (void) inet_aton(0, 0); return 0; }
3251 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3252 cc_check $_ld_tmp && inet_aton=yes && break
3253 done
3254 if test $inet_aton = yes ; then
3255 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3256 def_inet_aton='#define HAVE_INET_ATON 1'
3258 echores "$inet_aton"
3261 echocheck "socklen_t"
3262 _socklen_t=no
3263 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3264 cat > $TMPC << EOF
3265 #include <$header>
3266 int main(void) { socklen_t v = 0; return v; }
3268 cc_check && _socklen_t=yes && break
3269 done
3270 if test "$_socklen_t" = yes ; then
3271 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3272 else
3273 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3275 echores "$_socklen_t"
3278 echocheck "closesocket()"
3279 _closesocket=no
3280 cat > $TMPC << EOF
3281 #include <winsock2.h>
3282 int main(void) { closesocket(~0); return 0; }
3284 cc_check $_ld_sock && _closesocket=yes
3285 if test "$_closesocket" = yes ; then
3286 def_closesocket='#define HAVE_CLOSESOCKET 1'
3287 else
3288 def_closesocket='#define HAVE_CLOSESOCKET 0'
3290 echores "$_closesocket"
3293 echocheck "network"
3294 test $_winsock2_h = no && test $inet_pton = no &&
3295 test $inet_aton = no && _network=no
3296 if test "$_network" = yes ; then
3297 def_network='#define CONFIG_NETWORK 1'
3298 extra_ldflags="$extra_ldflags $_ld_sock"
3299 _inputmodules="network $_inputmodules"
3300 else
3301 _noinputmodules="network $_noinputmodules"
3302 def_network='#undef CONFIG_NETWORK'
3303 _ftp=no
3305 echores "$_network"
3308 echocheck "inet6"
3309 if test "$_inet6" = auto ; then
3310 cat > $TMPC << EOF
3311 #include <sys/types.h>
3312 #if !defined(_WIN32) || defined(__CYGWIN__)
3313 #include <sys/socket.h>
3314 #include <netinet/in.h>
3315 #else
3316 #include <ws2tcpip.h>
3317 #endif
3318 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3320 _inet6=no
3321 if cc_check $_ld_sock ; then
3322 _inet6=yes
3325 if test "$_inet6" = yes ; then
3326 def_inet6='#define HAVE_AF_INET6 1'
3327 else
3328 def_inet6='#undef HAVE_AF_INET6'
3330 echores "$_inet6"
3333 echocheck "gethostbyname2"
3334 if test "$_gethostbyname2" = auto ; then
3335 cat > $TMPC << EOF
3336 #include <sys/types.h>
3337 #include <sys/socket.h>
3338 #include <netdb.h>
3339 int main(void) { gethostbyname2("", AF_INET); return 0; }
3341 _gethostbyname2=no
3342 if cc_check ; then
3343 _gethostbyname2=yes
3346 if test "$_gethostbyname2" = yes ; then
3347 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3348 else
3349 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3351 echores "$_gethostbyname2"
3354 echocheck "inttypes.h (required)"
3355 cat > $TMPC << EOF
3356 #include <inttypes.h>
3357 int main(void) { return 0; }
3359 _inttypes=no
3360 cc_check && _inttypes=yes
3361 echores "$_inttypes"
3363 if test "$_inttypes" = no ; then
3364 echocheck "bitypes.h (inttypes.h predecessor)"
3365 cat > $TMPC << EOF
3366 #include <sys/bitypes.h>
3367 int main(void) { return 0; }
3369 cc_check && _inttypes=yes
3370 if test "$_inttypes" = yes ; then
3371 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."
3372 else
3373 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3378 echocheck "int_fastXY_t in inttypes.h"
3379 cat > $TMPC << EOF
3380 #include <inttypes.h>
3381 int main(void) {
3382 volatile int_fast16_t v= 0;
3383 return v; }
3385 _fast_inttypes=no
3386 cc_check && _fast_inttypes=yes
3387 if test "$_fast_inttypes" = no ; then
3388 def_fast_inttypes='
3389 typedef signed char int_fast8_t;
3390 typedef signed int int_fast16_t;
3391 typedef signed int int_fast32_t;
3392 typedef signed long long int_fast64_t;
3393 typedef unsigned char uint_fast8_t;
3394 typedef unsigned int uint_fast16_t;
3395 typedef unsigned int uint_fast32_t;
3396 typedef unsigned long long uint_fast64_t;'
3398 echores "$_fast_inttypes"
3401 echocheck "malloc.h"
3402 cat > $TMPC << EOF
3403 #include <malloc.h>
3404 int main(void) { (void) malloc(0); return 0; }
3406 _malloc=no
3407 cc_check && _malloc=yes
3408 if test "$_malloc" = yes ; then
3409 def_malloc_h='#define HAVE_MALLOC_H 1'
3410 else
3411 def_malloc_h='#define HAVE_MALLOC_H 0'
3413 # malloc.h emits a warning in FreeBSD and OpenBSD
3414 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3415 echores "$_malloc"
3418 echocheck "memalign()"
3419 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3420 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3421 cat > $TMPC << EOF
3422 #include <malloc.h>
3423 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3425 _memalign=no
3426 cc_check && _memalign=yes
3427 if test "$_memalign" = yes ; then
3428 def_memalign='#define HAVE_MEMALIGN 1'
3429 else
3430 def_memalign='#define HAVE_MEMALIGN 0'
3431 def_map_memalign='#define memalign(a,b) malloc(b)'
3432 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3434 echores "$_memalign"
3437 echocheck "posix_memalign()"
3438 posix_memalign=no
3439 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3440 cat > $TMPC << EOF
3441 #define _XOPEN_SOURCE 600
3442 #include <stdlib.h>
3443 int main(void) { posix_memalign(NULL, 0, 0); }
3445 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3446 echores "$posix_memalign"
3449 echocheck "alloca.h"
3450 cat > $TMPC << EOF
3451 #include <alloca.h>
3452 int main(void) { (void) alloca(0); return 0; }
3454 _alloca=no
3455 cc_check && _alloca=yes
3456 if cc_check ; then
3457 def_alloca_h='#define HAVE_ALLOCA_H 1'
3458 else
3459 def_alloca_h='#undef HAVE_ALLOCA_H'
3461 echores "$_alloca"
3464 echocheck "fastmemcpy"
3465 if test "$_fastmemcpy" = yes ; then
3466 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3467 else
3468 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3470 echores "$_fastmemcpy"
3473 echocheck "hard-coded tables"
3474 if test "$hardcoded_tables" = yes ; then
3475 def_hardcoded_tables='#define CONFIG_HARDCODED_TABLES 1'
3476 mak_hardcoded_tables='CONFIG_HARDCODED_TABLES = yes'
3477 else
3478 def_hardcoded_tables='#define CONFIG_HARDCODED_TABLES 0'
3480 echores "$hardcoded_tables"
3483 echocheck "mman.h"
3484 cat > $TMPC << EOF
3485 #include <sys/types.h>
3486 #include <sys/mman.h>
3487 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3489 _mman=no
3490 cc_check && _mman=yes
3491 if test "$_mman" = yes ; then
3492 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3493 else
3494 def_mman_h='#undef HAVE_SYS_MMAN_H'
3495 os2 && _need_mmap=yes
3497 echores "$_mman"
3499 cat > $TMPC << EOF
3500 #include <sys/types.h>
3501 #include <sys/mman.h>
3502 int main(void) { void *p = MAP_FAILED; return 0; }
3504 _mman_has_map_failed=no
3505 cc_check && _mman_has_map_failed=yes
3506 if test "$_mman_has_map_failed" = yes ; then
3507 def_mman_has_map_failed=''
3508 else
3509 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3512 echocheck "dynamic loader"
3513 cat > $TMPC << EOF
3514 #include <stddef.h>
3515 #include <dlfcn.h>
3516 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3518 _dl=no
3519 for _ld_tmp in "" "-ldl" ; do
3520 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3521 done
3522 if test "$_dl" = yes ; then
3523 def_dl='#define HAVE_LIBDL 1'
3524 else
3525 def_dl='#undef HAVE_LIBDL'
3527 echores "$_dl"
3530 echocheck "dynamic a/v plugins support"
3531 if test "$_dl" = no ; then
3532 _dynamic_plugins=no
3534 if test "$_dynamic_plugins" = yes ; then
3535 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3536 else
3537 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3539 echores "$_dynamic_plugins"
3542 def_threads='#define HAVE_THREADS 0'
3544 echocheck "pthread"
3545 if linux ; then
3546 THREAD_CFLAGS=-D_REENTRANT
3547 elif freebsd || netbsd || openbsd || bsdos ; then
3548 THREAD_CFLAGS=-D_THREAD_SAFE
3550 if test "$_pthreads" = auto ; then
3551 cat > $TMPC << EOF
3552 #include <pthread.h>
3553 void* func(void *arg) { return arg; }
3554 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3556 _pthreads=no
3557 if ! hpux ; then
3558 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3559 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3560 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3561 done
3564 if test "$_pthreads" = yes ; then
3565 test $_ld_pthread && _res_comment="using $_ld_pthread"
3566 def_pthreads='#define HAVE_PTHREADS 1'
3567 def_threads='#define HAVE_THREADS 1'
3568 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3569 else
3570 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3571 def_pthreads='#undef HAVE_PTHREADS'
3572 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3573 mingw32 || _win32dll=no
3575 echores "$_pthreads"
3577 if cygwin ; then
3578 if test "$_pthreads" = yes ; then
3579 def_pthread_cache="#define PTHREAD_CACHE 1"
3580 else
3581 _stream_cache=no
3582 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3586 echocheck "w32threads"
3587 if test "$_pthreads" = yes ; then
3588 _res_comment="using pthread instead"
3589 _w32threads=no
3591 if test "$_w32threads" = auto ; then
3592 _w32threads=no
3593 mingw32 && _w32threads=yes
3595 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3596 echores "$_w32threads"
3598 echocheck "rpath"
3599 netbsd &&_rpath=yes
3600 if test "$_rpath" = yes ; then
3601 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3602 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3603 done
3604 extra_ldflags=$tmp
3606 echores "$_rpath"
3608 echocheck "iconv"
3609 if test "$_iconv" = auto ; then
3610 cat > $TMPC << EOF
3611 #include <stdio.h>
3612 #include <unistd.h>
3613 #include <iconv.h>
3614 #define INBUFSIZE 1024
3615 #define OUTBUFSIZE 4096
3617 char inbuffer[INBUFSIZE];
3618 char outbuffer[OUTBUFSIZE];
3620 int main(void) {
3621 size_t numread;
3622 iconv_t icdsc;
3623 char *tocode="UTF-8";
3624 char *fromcode="cp1250";
3625 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3626 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3627 char *iptr=inbuffer;
3628 char *optr=outbuffer;
3629 size_t inleft=numread;
3630 size_t outleft=OUTBUFSIZE;
3631 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3632 != (size_t)(-1)) {
3633 write(1, outbuffer, OUTBUFSIZE - outleft);
3636 if (iconv_close(icdsc) == -1)
3639 return 0;
3642 _iconv=no
3643 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3644 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3645 _iconv=yes && break
3646 done
3648 if test "$_iconv" = yes ; then
3649 def_iconv='#define CONFIG_ICONV 1'
3650 else
3651 def_iconv='#undef CONFIG_ICONV'
3653 echores "$_iconv"
3656 echocheck "soundcard.h"
3657 _soundcard_h=no
3658 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3659 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3660 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3661 cat > $TMPC << EOF
3662 #include <$_soundcard_header>
3663 int main(void) { return 0; }
3665 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3666 done
3668 if test "$_soundcard_h" = yes ; then
3669 if test $_soundcard_header = "sys/soundcard.h"; then
3670 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3671 else
3672 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3675 echores "$_soundcard_h"
3678 echocheck "sys/dvdio.h"
3679 cat > $TMPC << EOF
3680 #include <unistd.h>
3681 #include <sys/dvdio.h>
3682 int main(void) { return 0; }
3684 _dvdio=no
3685 cc_check && _dvdio=yes
3686 if test "$_dvdio" = yes ; then
3687 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3688 else
3689 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3691 echores "$_dvdio"
3694 echocheck "sys/cdio.h"
3695 cat > $TMPC << EOF
3696 #include <unistd.h>
3697 #include <sys/cdio.h>
3698 int main(void) { return 0; }
3700 _cdio=no
3701 cc_check && _cdio=yes
3702 if test "$_cdio" = yes ; then
3703 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3704 else
3705 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3707 echores "$_cdio"
3710 echocheck "linux/cdrom.h"
3711 cat > $TMPC << EOF
3712 #include <sys/types.h>
3713 #include <linux/cdrom.h>
3714 int main(void) { return 0; }
3716 _cdrom=no
3717 cc_check && _cdrom=yes
3718 if test "$_cdrom" = yes ; then
3719 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3720 else
3721 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3723 echores "$_cdrom"
3726 echocheck "dvd.h"
3727 cat > $TMPC << EOF
3728 #include <dvd.h>
3729 int main(void) { return 0; }
3731 _dvd=no
3732 cc_check && _dvd=yes
3733 if test "$_dvd" = yes ; then
3734 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3735 else
3736 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3738 echores "$_dvd"
3741 if bsdos; then
3742 echocheck "BSDI dvd.h"
3743 cat > $TMPC << EOF
3744 #include <dvd.h>
3745 int main(void) { return 0; }
3747 _bsdi_dvd=no
3748 cc_check && _bsdi_dvd=yes
3749 if test "$_bsdi_dvd" = yes ; then
3750 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3751 else
3752 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3754 echores "$_bsdi_dvd"
3755 fi #if bsdos
3758 if hpux; then
3759 # also used by AIX, but AIX does not support VCD and/or libdvdread
3760 echocheck "HP-UX SCSI header"
3761 cat > $TMPC << EOF
3762 #include <sys/scsi.h>
3763 int main(void) { return 0; }
3765 _hpux_scsi_h=no
3766 cc_check && _hpux_scsi_h=yes
3767 if test "$_hpux_scsi_h" = yes ; then
3768 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3769 else
3770 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3772 echores "$_hpux_scsi_h"
3773 fi #if hpux
3776 if sunos; then
3777 echocheck "userspace SCSI headers (Solaris)"
3778 cat > $TMPC << EOF
3779 #include <unistd.h>
3780 #include <stropts.h>
3781 #include <sys/scsi/scsi_types.h>
3782 #include <sys/scsi/impl/uscsi.h>
3783 int main(void) { return 0; }
3785 _sol_scsi_h=no
3786 cc_check && _sol_scsi_h=yes
3787 if test "$_sol_scsi_h" = yes ; then
3788 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3789 else
3790 def_sol_scsi_h='#undef SOLARIS_USCSI'
3792 echores "$_sol_scsi_h"
3793 fi #if sunos
3796 echocheck "termcap"
3797 if test "$_termcap" = auto ; then
3798 cat > $TMPC <<EOF
3799 #include <stddef.h>
3800 #include <term.h>
3801 int main(void) { tgetent(NULL, NULL); return 0; }
3803 _termcap=no
3804 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3805 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3806 && _termcap=yes && break
3807 done
3809 if test "$_termcap" = yes ; then
3810 def_termcap='#define HAVE_TERMCAP 1'
3811 test $_ld_tmp && _res_comment="using $_ld_tmp"
3812 else
3813 def_termcap='#undef HAVE_TERMCAP'
3815 echores "$_termcap"
3818 echocheck "termios"
3819 def_termios='#undef HAVE_TERMIOS'
3820 def_termios_h='#undef HAVE_TERMIOS_H'
3821 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3822 if test "$_termios" = auto ; then
3823 _termios=no
3824 for _termios_header in "sys/termios.h" "termios.h"; do
3825 cat > $TMPC <<EOF
3826 #include <$_termios_header>
3827 int main(void) { return 0; }
3829 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3830 done
3833 if test "$_termios" = yes ; then
3834 def_termios='#define HAVE_TERMIOS 1'
3835 if test "$_termios_header" = "termios.h" ; then
3836 def_termios_h='#define HAVE_TERMIOS_H 1'
3837 else
3838 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3841 echores "$_termios"
3844 echocheck "shm"
3845 if test "$_shm" = auto ; then
3846 cat > $TMPC << EOF
3847 #include <sys/types.h>
3848 #include <sys/shm.h>
3849 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3851 _shm=no
3852 cc_check && _shm=yes
3854 if test "$_shm" = yes ; then
3855 def_shm='#define HAVE_SHM 1'
3856 else
3857 def_shm='#undef HAVE_SHM'
3859 echores "$_shm"
3862 echocheck "strsep()"
3863 cat > $TMPC << EOF
3864 #include <string.h>
3865 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3867 _strsep=no
3868 cc_check && _strsep=yes
3869 if test "$_strsep" = yes ; then
3870 def_strsep='#define HAVE_STRSEP 1'
3871 _need_strsep=no
3872 else
3873 def_strsep='#undef HAVE_STRSEP'
3874 _need_strsep=yes
3876 echores "$_strsep"
3879 echocheck "vsscanf()"
3880 cat > $TMPC << EOF
3881 #define _ISOC99_SOURCE
3882 #include <stdarg.h>
3883 #include <stdio.h>
3884 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3886 _vsscanf=no
3887 cc_check && _vsscanf=yes
3888 if test "$_vsscanf" = yes ; then
3889 def_vsscanf='#define HAVE_VSSCANF 1'
3890 _need_vsscanf=no
3891 else
3892 def_vsscanf='#undef HAVE_VSSCANF'
3893 _need_vsscanf=yes
3895 echores "$_vsscanf"
3898 echocheck "swab()"
3899 cat > $TMPC << EOF
3900 #define _XOPEN_SOURCE 600
3901 #include <unistd.h>
3902 int main(void) { swab(0, 0, 0); return 0; }
3904 _swab=no
3905 cc_check && _swab=yes
3906 if test "$_swab" = yes ; then
3907 def_swab='#define HAVE_SWAB 1'
3908 _need_swab=no
3909 else
3910 def_swab='#undef HAVE_SWAB'
3911 _need_swab=yes
3913 echores "$_swab"
3915 echocheck "POSIX select()"
3916 cat > $TMPC << EOF
3917 #include <stdio.h>
3918 #include <stdlib.h>
3919 #include <sys/types.h>
3920 #include <string.h>
3921 #include <sys/time.h>
3922 #include <unistd.h>
3923 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3925 _posix_select=no
3926 def_posix_select='#undef HAVE_POSIX_SELECT'
3927 #select() of kLIBC (OS/2) supports socket only
3928 ! os2 && cc_check && _posix_select=yes \
3929 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3930 echores "$_posix_select"
3933 echocheck "audio select()"
3934 if test "$_select" = no ; then
3935 def_select='#undef HAVE_AUDIO_SELECT'
3936 elif test "$_select" = yes ; then
3937 def_select='#define HAVE_AUDIO_SELECT 1'
3939 echores "$_select"
3942 echocheck "gettimeofday()"
3943 cat > $TMPC << EOF
3944 #include <stdio.h>
3945 #include <sys/time.h>
3946 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3948 _gettimeofday=no
3949 cc_check && _gettimeofday=yes
3950 if test "$_gettimeofday" = yes ; then
3951 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3952 _need_gettimeofday=no
3953 else
3954 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3955 _need_gettimeofday=yes
3957 echores "$_gettimeofday"
3960 echocheck "glob()"
3961 cat > $TMPC << EOF
3962 #include <stdio.h>
3963 #include <glob.h>
3964 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3966 _glob=no
3967 cc_check && _glob=yes
3968 if test "$_glob" = yes ; then
3969 def_glob='#define HAVE_GLOB 1'
3970 _need_glob=no
3971 else
3972 def_glob='#undef HAVE_GLOB'
3973 _need_glob=yes
3975 echores "$_glob"
3978 echocheck "setenv()"
3979 cat > $TMPC << EOF
3980 #include <stdlib.h>
3981 int main(void) { setenv("","",0); return 0; }
3983 _setenv=no
3984 cc_check && _setenv=yes
3985 if test "$_setenv" = yes ; then
3986 def_setenv='#define HAVE_SETENV 1'
3987 _need_setenv=no
3988 else
3989 def_setenv='#undef HAVE_SETENV'
3990 _need_setenv=yes
3992 echores "$_setenv"
3995 if sunos; then
3996 echocheck "sysi86()"
3997 cat > $TMPC << EOF
3998 #include <sys/sysi86.h>
3999 int main(void) { sysi86(0); return 0; }
4001 _sysi86=no
4002 cc_check && _sysi86=yes
4003 if test "$_sysi86" = yes ; then
4004 def_sysi86='#define HAVE_SYSI86 1'
4005 cat > $TMPC << EOF
4006 #include <sys/sysi86.h>
4007 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
4009 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
4010 else
4011 def_sysi86='#undef HAVE_SYSI86'
4013 echores "$_sysi86"
4014 fi #if sunos
4017 echocheck "sys/sysinfo.h"
4018 cat > $TMPC << EOF
4019 #include <sys/sysinfo.h>
4020 int main(void) {
4021 struct sysinfo s_info;
4022 sysinfo(&s_info);
4023 return 0;
4026 _sys_sysinfo=no
4027 cc_check && _sys_sysinfo=yes
4028 if test "$_sys_sysinfo" = yes ; then
4029 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
4030 else
4031 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
4033 echores "$_sys_sysinfo"
4036 if darwin; then
4038 echocheck "Mac OS X Finder Support"
4039 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
4040 if test "$_macosx_finder" = yes ; then
4041 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
4042 extra_ldflags="$extra_ldflags -framework Carbon"
4044 echores "$_macosx_finder"
4046 echocheck "Mac OS X Bundle file locations"
4047 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
4048 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
4049 if test "$_macosx_bundle" = yes ; then
4050 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
4051 extra_ldflags="$extra_ldflags -framework Carbon"
4053 echores "$_macosx_bundle"
4055 echocheck "Apple Remote"
4056 if test "$_apple_remote" = auto ; then
4057 _apple_remote=no
4058 cat > $TMPC <<EOF
4059 #include <stdio.h>
4060 #include <IOKit/IOCFPlugIn.h>
4061 int main(void) {
4062 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
4063 CFMutableDictionaryRef hidMatchDictionary;
4064 IOReturn ioReturnValue;
4066 // Set up a matching dictionary to search the I/O Registry by class.
4067 // name for all HID class devices
4068 hidMatchDictionary = IOServiceMatching("AppleIRController");
4070 // Now search I/O Registry for matching devices.
4071 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
4072 hidMatchDictionary, &hidObjectIterator);
4074 // If search is unsuccessful, return nonzero.
4075 if (ioReturnValue != kIOReturnSuccess ||
4076 !IOIteratorIsValid(hidObjectIterator)) {
4077 return 1;
4079 return 0;
4082 cc_check -framework IOKit && tmp_run && _apple_remote=yes
4084 if test "$_apple_remote" = yes ; then
4085 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
4086 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
4087 else
4088 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
4090 echores "$_apple_remote"
4092 fi #if darwin
4094 if linux; then
4096 echocheck "Apple IR"
4097 if test "$_apple_ir" = auto ; then
4098 _apple_ir=no
4099 cat > $TMPC <<EOF
4100 #include <linux/types.h>
4101 #include <linux/input.h>
4102 int main(void) {
4103 struct input_event ev;
4104 struct input_id id;
4105 return 0;
4108 cc_check && _apple_ir=yes
4110 if test "$_apple_ir" = yes ; then
4111 def_apple_ir='#define CONFIG_APPLE_IR 1'
4112 else
4113 def_apple_ir='#undef CONFIG_APPLE_IR'
4115 echores "$_apple_ir"
4116 fi #if linux
4118 echocheck "pkg-config"
4119 _pkg_config=pkg-config
4120 if $($_pkg_config --version > /dev/null 2>&1); then
4121 if test "$_ld_static"; then
4122 _pkg_config="$_pkg_config --static"
4124 echores "yes"
4125 else
4126 _pkg_config=false
4127 echores "no"
4131 echocheck "Samba support (libsmbclient)"
4132 if test "$_smb" = yes; then
4133 extra_ldflags="$extra_ldflags -lsmbclient"
4135 if test "$_smb" = auto; then
4136 _smb=no
4137 cat > $TMPC << EOF
4138 #include <libsmbclient.h>
4139 int main(void) { smbc_opendir("smb://"); return 0; }
4141 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
4142 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
4143 _smb=yes && break
4144 done
4147 if test "$_smb" = yes; then
4148 def_smb="#define CONFIG_LIBSMBCLIENT 1"
4149 _inputmodules="smb $_inputmodules"
4150 else
4151 def_smb="#undef CONFIG_LIBSMBCLIENT"
4152 _noinputmodules="smb $_noinputmodules"
4154 echores "$_smb"
4157 #########
4158 # VIDEO #
4159 #########
4162 echocheck "tdfxfb"
4163 if test "$_tdfxfb" = yes ; then
4164 def_tdfxfb='#define CONFIG_TDFXFB 1'
4165 _vomodules="tdfxfb $_vomodules"
4166 else
4167 def_tdfxfb='#undef CONFIG_TDFXFB'
4168 _novomodules="tdfxfb $_novomodules"
4170 echores "$_tdfxfb"
4172 echocheck "s3fb"
4173 if test "$_s3fb" = yes ; then
4174 def_s3fb='#define CONFIG_S3FB 1'
4175 _vomodules="s3fb $_vomodules"
4176 else
4177 def_s3fb='#undef CONFIG_S3FB'
4178 _novomodules="s3fb $_novomodules"
4180 echores "$_s3fb"
4182 echocheck "wii"
4183 if test "$_wii" = yes ; then
4184 def_wii='#define CONFIG_WII 1'
4185 _vomodules="wii $_vomodules"
4186 else
4187 def_wii='#undef CONFIG_WII'
4188 _novomodules="wii $_novomodules"
4190 echores "$_wii"
4192 echocheck "tdfxvid"
4193 if test "$_tdfxvid" = yes ; then
4194 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4195 _vomodules="tdfx_vid $_vomodules"
4196 else
4197 def_tdfxvid='#undef CONFIG_TDFX_VID'
4198 _novomodules="tdfx_vid $_novomodules"
4200 echores "$_tdfxvid"
4202 echocheck "xvr100"
4203 if test "$_xvr100" = auto ; then
4204 cat > $TMPC << EOF
4205 #include <unistd.h>
4206 #include <sys/fbio.h>
4207 #include <sys/visual_io.h>
4208 int main(void) {
4209 struct vis_identifier ident;
4210 struct fbgattr attr;
4211 ioctl(0, VIS_GETIDENTIFIER, &ident);
4212 ioctl(0, FBIOGATTR, &attr);
4213 return 0;
4216 _xvr100=no
4217 cc_check && _xvr100=yes
4219 if test "$_xvr100" = yes ; then
4220 def_xvr100='#define CONFIG_XVR100 1'
4221 _vomodules="xvr100 $_vomodules"
4222 else
4223 def_tdfxvid='#undef CONFIG_XVR100'
4224 _novomodules="xvr100 $_novomodules"
4226 echores "$_xvr100"
4228 echocheck "tga"
4229 if test "$_tga" = yes ; then
4230 def_tga='#define CONFIG_TGA 1'
4231 _vomodules="tga $_vomodules"
4232 else
4233 def_tga='#undef CONFIG_TGA'
4234 _novomodules="tga $_novomodules"
4236 echores "$_tga"
4239 echocheck "md5sum support"
4240 if test "$_md5sum" = yes; then
4241 def_md5sum="#define CONFIG_MD5SUM 1"
4242 _vomodules="md5sum $_vomodules"
4243 else
4244 def_md5sum="#undef CONFIG_MD5SUM"
4245 _novomodules="md5sum $_novomodules"
4247 echores "$_md5sum"
4250 echocheck "yuv4mpeg support"
4251 if test "$_yuv4mpeg" = yes; then
4252 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4253 _vomodules="yuv4mpeg $_vomodules"
4254 else
4255 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4256 _novomodules="yuv4mpeg $_novomodules"
4258 echores "$_yuv4mpeg"
4261 echocheck "bl"
4262 if test "$_bl" = yes ; then
4263 def_bl='#define CONFIG_BL 1'
4264 _vomodules="bl $_vomodules"
4265 else
4266 def_bl='#undef CONFIG_BL'
4267 _novomodules="bl $_novomodules"
4269 echores "$_bl"
4272 echocheck "DirectFB"
4273 if test "$_directfb" = auto ; then
4274 _directfb=no
4275 cat > $TMPC <<EOF
4276 #include <directfb.h>
4277 int main(void) { DirectFBInit(0, 0); return 0; }
4279 for _inc_tmp in "" -I/usr/local/include/directfb \
4280 -I/usr/include/directfb -I/usr/local/include; do
4281 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4282 extra_cflags="$extra_cflags $_inc_tmp" && break
4283 done
4286 dfb_version() {
4287 expr $1 \* 65536 + $2 \* 256 + $3
4290 if test "$_directfb" = yes; then
4291 cat > $TMPC << EOF
4292 #include <directfb_version.h>
4294 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4297 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4298 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4299 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4300 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4301 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4302 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4303 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4304 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4305 _res_comment="$_directfb_version"
4306 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4307 else
4308 def_directfb_version='#undef DIRECTFBVERSION'
4309 _directfb=no
4310 _res_comment="version >=0.9.13 required"
4312 else
4313 _directfb=no
4314 _res_comment="failed to get version"
4317 echores "$_directfb"
4319 if test "$_directfb" = yes ; then
4320 def_directfb='#define CONFIG_DIRECTFB 1'
4321 _vomodules="directfb $_vomodules"
4322 libs_mplayer="$libs_mplayer -ldirectfb"
4323 else
4324 def_directfb='#undef CONFIG_DIRECTFB'
4325 _novomodules="directfb $_novomodules"
4327 if test "$_dfbmga" = yes; then
4328 _vomodules="dfbmga $_vomodules"
4329 def_dfbmga='#define CONFIG_DFBMGA 1'
4330 else
4331 _novomodules="dfbmga $_novomodules"
4332 def_dfbmga='#undef CONFIG_DFBMGA'
4336 echocheck "X11 headers presence"
4337 _x11_headers="no"
4338 _res_comment="check if the dev(el) packages are installed"
4339 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4340 if test -f "$I/X11/Xlib.h" ; then
4341 _x11_headers="yes"
4342 _res_comment=""
4343 break
4345 done
4346 if test $_cross_compile = no; then
4347 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4348 /usr/include/X11R6 /usr/openwin/include ; do
4349 if test -f "$I/X11/Xlib.h" ; then
4350 extra_cflags="$extra_cflags -I$I"
4351 _x11_headers="yes"
4352 _res_comment="using $I"
4353 break
4355 done
4357 echores "$_x11_headers"
4360 echocheck "X11"
4361 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4362 cat > $TMPC <<EOF
4363 #include <X11/Xlib.h>
4364 #include <X11/Xutil.h>
4365 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4367 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4368 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4369 -L/usr/lib ; do
4370 if netbsd; then
4371 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4372 else
4373 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4375 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4376 && _x11=yes && break
4377 done
4379 if test "$_x11" = yes ; then
4380 def_x11='#define CONFIG_X11 1'
4381 _vomodules="x11 xover $_vomodules"
4382 else
4383 _x11=no
4384 def_x11='#undef CONFIG_X11'
4385 _novomodules="x11 $_novomodules"
4386 _res_comment="check if the dev(el) packages are installed"
4387 # disable stuff that depends on X
4388 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4390 echores "$_x11"
4392 echocheck "Xss screensaver extensions"
4393 if test "$_xss" = auto ; then
4394 cat > $TMPC << EOF
4395 #include <X11/Xlib.h>
4396 #include <X11/extensions/scrnsaver.h>
4397 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4399 _xss=no
4400 cc_check -lXss && _xss=yes
4402 if test "$_xss" = yes ; then
4403 def_xss='#define CONFIG_XSS 1'
4404 libs_mplayer="$libs_mplayer -lXss"
4405 else
4406 def_xss='#undef CONFIG_XSS'
4408 echores "$_xss"
4410 echocheck "DPMS"
4411 _xdpms3=no
4412 _xdpms4=no
4413 if test "$_x11" = yes ; then
4414 cat > $TMPC <<EOF
4415 #include <X11/Xmd.h>
4416 #include <X11/Xlib.h>
4417 #include <X11/Xutil.h>
4418 #include <X11/Xatom.h>
4419 #include <X11/extensions/dpms.h>
4420 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4422 cc_check -lXdpms && _xdpms3=yes
4423 cat > $TMPC <<EOF
4424 #include <X11/Xlib.h>
4425 #include <X11/extensions/dpms.h>
4426 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4428 cc_check -lXext && _xdpms4=yes
4430 if test "$_xdpms4" = yes ; then
4431 def_xdpms='#define CONFIG_XDPMS 1'
4432 _res_comment="using Xdpms 4"
4433 echores "yes"
4434 elif test "$_xdpms3" = yes ; then
4435 def_xdpms='#define CONFIG_XDPMS 1'
4436 libs_mplayer="$libs_mplayer -lXdpms"
4437 _res_comment="using Xdpms 3"
4438 echores "yes"
4439 else
4440 def_xdpms='#undef CONFIG_XDPMS'
4441 echores "no"
4445 echocheck "Xv"
4446 if test "$_xv" = auto ; then
4447 cat > $TMPC <<EOF
4448 #include <X11/Xlib.h>
4449 #include <X11/extensions/Xvlib.h>
4450 int main(void) {
4451 (void) XvGetPortAttribute(0, 0, 0, 0);
4452 (void) XvQueryPortAttributes(0, 0, 0);
4453 return 0; }
4455 _xv=no
4456 cc_check -lXv && _xv=yes
4459 if test "$_xv" = yes ; then
4460 def_xv='#define CONFIG_XV 1'
4461 libs_mplayer="$libs_mplayer -lXv"
4462 _vomodules="xv $_vomodules"
4463 else
4464 def_xv='#undef CONFIG_XV'
4465 _novomodules="xv $_novomodules"
4467 echores "$_xv"
4470 echocheck "XvMC"
4471 if test "$_xv" = yes && test "$_xvmc" != no ; then
4472 _xvmc=no
4473 cat > $TMPC <<EOF
4474 #include <X11/Xlib.h>
4475 #include <X11/extensions/Xvlib.h>
4476 #include <X11/extensions/XvMClib.h>
4477 int main(void) {
4478 (void) XvMCQueryExtension(0,0,0);
4479 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4480 return 0; }
4482 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4483 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4484 done
4486 if test "$_xvmc" = yes ; then
4487 def_xvmc='#define CONFIG_XVMC 1'
4488 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4489 _vomodules="xvmc $_vomodules"
4490 _res_comment="using $_xvmclib"
4491 else
4492 def_xvmc='#define CONFIG_XVMC 0'
4493 _novomodules="xvmc $_novomodules"
4494 _libavdecoders=$(echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER//)
4496 echores "$_xvmc"
4499 echocheck "VDPAU"
4500 if test "$_vdpau" = auto ; then
4501 _vdpau=no
4502 if test "$_dl" = yes ; then
4503 cat > $TMPC <<EOF
4504 #include <vdpau/vdpau_x11.h>
4505 int main(void) {
4506 (void) vdp_device_create_x11(0, 0, 0, 0);
4507 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4509 cc_check -lvdpau && _vdpau=yes
4512 if test "$_vdpau" = yes ; then
4513 def_vdpau='#define CONFIG_VDPAU 1'
4514 libs_mplayer="$libs_mplayer -lvdpau"
4515 _vomodules="vdpau $_vomodules"
4516 else
4517 def_vdpau='#define CONFIG_VDPAU 0'
4518 _novomodules="vdpau $_novomodules"
4519 _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//)
4521 echores "$_vdpau"
4524 echocheck "Xinerama"
4525 if test "$_xinerama" = auto ; then
4526 cat > $TMPC <<EOF
4527 #include <X11/Xlib.h>
4528 #include <X11/extensions/Xinerama.h>
4529 int main(void) { (void) XineramaIsActive(0); return 0; }
4531 _xinerama=no
4532 cc_check -lXinerama && _xinerama=yes
4535 if test "$_xinerama" = yes ; then
4536 def_xinerama='#define CONFIG_XINERAMA 1'
4537 libs_mplayer="$libs_mplayer -lXinerama"
4538 else
4539 def_xinerama='#undef CONFIG_XINERAMA'
4541 echores "$_xinerama"
4544 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4545 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4546 # named 'X extensions' or something similar.
4547 # This check may be useful for future mplayer versions (to change resolution)
4548 # If you run into problems, remove '-lXxf86vm'.
4549 echocheck "Xxf86vm"
4550 if test "$_vm" = auto ; then
4551 cat > $TMPC <<EOF
4552 #include <X11/Xlib.h>
4553 #include <X11/extensions/xf86vmode.h>
4554 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4556 _vm=no
4557 cc_check -lXxf86vm && _vm=yes
4559 if test "$_vm" = yes ; then
4560 def_vm='#define CONFIG_XF86VM 1'
4561 libs_mplayer="$libs_mplayer -lXxf86vm"
4562 else
4563 def_vm='#undef CONFIG_XF86VM'
4565 echores "$_vm"
4567 # Check for the presence of special keycodes, like audio control buttons
4568 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4569 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4570 # have these new keycodes.
4571 echocheck "XF86keysym"
4572 if test "$_xf86keysym" = auto; then
4573 _xf86keysym=no
4574 cat > $TMPC <<EOF
4575 #include <X11/Xlib.h>
4576 #include <X11/XF86keysym.h>
4577 int main(void) { return XF86XK_AudioPause; }
4579 cc_check && _xf86keysym=yes
4581 if test "$_xf86keysym" = yes ; then
4582 def_xf86keysym='#define CONFIG_XF86XK 1'
4583 else
4584 def_xf86keysym='#undef CONFIG_XF86XK'
4586 echores "$_xf86keysym"
4588 echocheck "DGA"
4589 if test "$_dga2" = auto && test "$_x11" = yes ; then
4590 cat > $TMPC << EOF
4591 #include <X11/Xlib.h>
4592 #include <X11/extensions/xf86dga.h>
4593 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4595 _dga2=no
4596 cc_check -lXxf86dga && _dga2=yes
4598 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4599 cat > $TMPC << EOF
4600 #include <X11/Xlib.h>
4601 #include <X11/extensions/xf86dga.h>
4602 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4604 _dga1=no
4605 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4608 _dga=no
4609 def_dga='#undef CONFIG_DGA'
4610 def_dga1='#undef CONFIG_DGA1'
4611 def_dga2='#undef CONFIG_DGA2'
4612 if test "$_dga1" = yes ; then
4613 _dga=yes
4614 def_dga1='#define CONFIG_DGA1 1'
4615 _res_comment="using DGA 1.0"
4616 elif test "$_dga2" = yes ; then
4617 _dga=yes
4618 def_dga2='#define CONFIG_DGA2 1'
4619 _res_comment="using DGA 2.0"
4621 if test "$_dga" = yes ; then
4622 def_dga='#define CONFIG_DGA 1'
4623 libs_mplayer="$libs_mplayer -lXxf86dga"
4624 _vomodules="dga $_vomodules"
4625 else
4626 _novomodules="dga $_novomodules"
4628 echores "$_dga"
4631 echocheck "3dfx"
4632 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4633 def_3dfx='#define CONFIG_3DFX 1'
4634 _vomodules="3dfx $_vomodules"
4635 else
4636 def_3dfx='#undef CONFIG_3DFX'
4637 _novomodules="3dfx $_novomodules"
4639 echores "$_3dfx"
4642 echocheck "VIDIX"
4643 def_vidix='#undef CONFIG_VIDIX'
4644 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4645 _vidix_drv_cyberblade=no
4646 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4647 _vidix_drv_ivtv=no
4648 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4649 _vidix_drv_mach64=no
4650 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4651 _vidix_drv_mga=no
4652 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4653 _vidix_drv_mga_crtc2=no
4654 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4655 _vidix_drv_nvidia=no
4656 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4657 _vidix_drv_pm2=no
4658 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4659 _vidix_drv_pm3=no
4660 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4661 _vidix_drv_radeon=no
4662 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4663 _vidix_drv_rage128=no
4664 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4665 _vidix_drv_s3=no
4666 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4667 _vidix_drv_sh_veu=no
4668 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4669 _vidix_drv_sis=no
4670 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4671 _vidix_drv_unichrome=no
4672 if test "$_vidix" = auto ; then
4673 _vidix=no
4674 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4675 && _vidix=yes
4676 x86_64 && win32 && _vidix=no
4677 (ppc || alpha) && linux && _vidix=yes
4679 echores "$_vidix"
4681 if test "$_vidix" = yes ; then
4682 def_vidix='#define CONFIG_VIDIX 1'
4683 _vomodules="cvidix $_vomodules"
4684 # FIXME: ivtv driver temporarily disabled until we have a proper test
4685 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4686 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4688 # some vidix drivers are architecture and os specific, discard them elsewhere
4689 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4690 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4692 for driver in $_vidix_drivers ; do
4693 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4694 eval _vidix_drv_${driver}=yes
4695 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4696 done
4698 echocheck "VIDIX PCI device name database"
4699 echores "$_vidix_pcidb"
4700 if test "$_vidix_pcidb" = yes ; then
4701 _vidix_pcidb_val=1
4702 else
4703 _vidix_pcidb_val=0
4706 echocheck "VIDIX dhahelper support"
4707 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4708 echores "$_dhahelper"
4710 echocheck "VIDIX svgalib_helper support"
4711 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4712 echores "$_svgalib_helper"
4714 else
4715 _novomodules="cvidix $_novomodules"
4718 if test "$_vidix" = yes && win32; then
4719 winvidix=yes
4720 _vomodules="winvidix $_vomodules"
4721 libs_mplayer="$libs_mplayer -lgdi32"
4722 else
4723 _novomodules="winvidix $_novomodules"
4725 if test "$_vidix" = yes && test "$_x11" = yes; then
4726 xvidix=yes
4727 _vomodules="xvidix $_vomodules"
4728 else
4729 _novomodules="xvidix $_novomodules"
4732 echocheck "/dev/mga_vid"
4733 if test "$_mga" = auto ; then
4734 _mga=no
4735 test -c /dev/mga_vid && _mga=yes
4737 if test "$_mga" = yes ; then
4738 def_mga='#define CONFIG_MGA 1'
4739 _vomodules="mga $_vomodules"
4740 else
4741 def_mga='#undef CONFIG_MGA'
4742 _novomodules="mga $_novomodules"
4744 echores "$_mga"
4746 echocheck "xmga"
4747 if test "$_xmga" = auto ; then
4748 _xmga=no
4749 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
4751 if test "$_xmga" = yes ; then
4752 def_xmga='#define CONFIG_XMGA 1'
4753 _vomodules="xmga $_vomodules"
4754 else
4755 def_xmga='#undef CONFIG_XMGA'
4756 _novomodules="xmga $_novomodules"
4758 echores "$_xmga"
4761 echocheck "GGI"
4762 if test "$_ggi" = auto ; then
4763 cat > $TMPC << EOF
4764 #include <ggi/ggi.h>
4765 int main(void) { ggiInit(); return 0; }
4767 _ggi=no
4768 cc_check -lggi && _ggi=yes
4770 if test "$_ggi" = yes ; then
4771 def_ggi='#define CONFIG_GGI 1'
4772 libs_mplayer="$libs_mplayer -lggi"
4773 _vomodules="ggi $_vomodules"
4774 else
4775 def_ggi='#undef CONFIG_GGI'
4776 _novomodules="ggi $_novomodules"
4778 echores "$_ggi"
4780 echocheck "GGI extension: libggiwmh"
4781 if test "$_ggiwmh" = auto ; then
4782 _ggiwmh=no
4783 cat > $TMPC << EOF
4784 #include <ggi/ggi.h>
4785 #include <ggi/wmh.h>
4786 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4788 cc_check -lggi -lggiwmh && _ggiwmh=yes
4790 # needed to get right output on obscure combination
4791 # like --disable-ggi --enable-ggiwmh
4792 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4793 def_ggiwmh='#define CONFIG_GGIWMH 1'
4794 libs_mplayer="$libs_mplayer -lggiwmh"
4795 else
4796 _ggiwmh=no
4797 def_ggiwmh='#undef CONFIG_GGIWMH'
4799 echores "$_ggiwmh"
4802 echocheck "AA"
4803 if test "$_aa" = auto ; then
4804 cat > $TMPC << EOF
4805 #include <aalib.h>
4806 extern struct aa_hardware_params aa_defparams;
4807 extern struct aa_renderparams aa_defrenderparams;
4808 int main(void) {
4809 aa_context *c;
4810 aa_renderparams *p;
4811 (void) aa_init(0, 0, 0);
4812 c = aa_autoinit(&aa_defparams);
4813 p = aa_getrenderparams();
4814 aa_autoinitkbd(c,0);
4815 return 0; }
4817 _aa=no
4818 for _ld_tmp in "-laa" ; do
4819 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4820 done
4822 if test "$_aa" = yes ; then
4823 def_aa='#define CONFIG_AA 1'
4824 if cygwin ; then
4825 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4827 _vomodules="aa $_vomodules"
4828 else
4829 def_aa='#undef CONFIG_AA'
4830 _novomodules="aa $_novomodules"
4832 echores "$_aa"
4835 echocheck "CACA"
4836 if test "$_caca" = auto ; then
4837 _caca=no
4838 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4839 cat > $TMPC << EOF
4840 #include <caca.h>
4841 #ifdef CACA_API_VERSION_1
4842 #include <caca0.h>
4843 #endif
4844 int main(void) { (void) caca_init(); return 0; }
4846 cc_check $(caca-config --libs) && _caca=yes
4849 if test "$_caca" = yes ; then
4850 def_caca='#define CONFIG_CACA 1'
4851 extra_cflags="$extra_cflags $(caca-config --cflags)"
4852 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4853 _vomodules="caca $_vomodules"
4854 else
4855 def_caca='#undef CONFIG_CACA'
4856 _novomodules="caca $_novomodules"
4858 echores "$_caca"
4861 echocheck "SVGAlib"
4862 if test "$_svga" = auto ; then
4863 cat > $TMPC << EOF
4864 #include <vga.h>
4865 int main(void) { return 0; }
4867 _svga=no
4868 cc_check -lvga $_ld_lm && _svga=yes
4870 if test "$_svga" = yes ; then
4871 def_svga='#define CONFIG_SVGALIB 1'
4872 libs_mplayer="$libs_mplayer -lvga"
4873 _vomodules="svga $_vomodules"
4874 else
4875 def_svga='#undef CONFIG_SVGALIB'
4876 _novomodules="svga $_novomodules"
4878 echores "$_svga"
4881 echocheck "FBDev"
4882 if test "$_fbdev" = auto ; then
4883 _fbdev=no
4884 linux && _fbdev=yes
4886 if test "$_fbdev" = yes ; then
4887 def_fbdev='#define CONFIG_FBDEV 1'
4888 _vomodules="fbdev $_vomodules"
4889 else
4890 def_fbdev='#undef CONFIG_FBDEV'
4891 _novomodules="fbdev $_novomodules"
4893 echores "$_fbdev"
4897 echocheck "DVB"
4898 if test "$_dvb" = auto ; then
4899 _dvb=no
4900 cat >$TMPC << EOF
4901 #include <poll.h>
4902 #include <sys/ioctl.h>
4903 #include <stdio.h>
4904 #include <time.h>
4905 #include <unistd.h>
4906 #include <ost/dmx.h>
4907 #include <ost/frontend.h>
4908 #include <ost/sec.h>
4909 #include <ost/video.h>
4910 #include <ost/audio.h>
4911 int main(void) {return 0;}
4913 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4914 cc_check $_inc_tmp && _dvb=yes && \
4915 extra_cflags="$extra_cflags $_inc_tmp" && break
4916 done
4918 echores "$_dvb"
4919 if test "$_dvb" = yes ; then
4920 def_dvb='#define CONFIG_DVB 1'
4921 def_dvbin='#define CONFIG_DVBIN 1'
4922 _aomodules="mpegpes(dvb) $_aomodules"
4923 _vomodules="mpegpes(dvb) $_vomodules"
4926 echocheck "DVB HEAD"
4927 if test "$_dvbhead" = auto ; then
4928 _dvbhead=no
4930 cat >$TMPC << EOF
4931 #include <poll.h>
4932 #include <sys/ioctl.h>
4933 #include <stdio.h>
4934 #include <time.h>
4935 #include <unistd.h>
4936 #include <linux/dvb/dmx.h>
4937 #include <linux/dvb/frontend.h>
4938 #include <linux/dvb/video.h>
4939 #include <linux/dvb/audio.h>
4940 int main(void) {return 0;}
4942 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4943 cc_check $_inc_tmp && _dvbhead=yes && \
4944 extra_cflags="$extra_cflags $_inc_tmp" && break
4945 done
4947 echores "$_dvbhead"
4948 if test "$_dvbhead" = yes ; then
4949 def_dvb='#define CONFIG_DVB 1'
4950 def_dvb_head='#define CONFIG_DVB_HEAD 1'
4951 def_dvbin='#define CONFIG_DVBIN 1'
4952 _aomodules="mpegpes(dvb) $_aomodules"
4953 _vomodules="mpegpes(dvb) $_vomodules"
4956 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4957 def_dvb='#undef CONFIG_DVB'
4958 def_dvb_head='#undef CONFIG_DVB_HEAD'
4959 def_dvbin='#undef CONFIG_DVBIN '
4960 _aomodules="mpegpes(file) $_aomodules"
4961 _vomodules="mpegpes(file) $_vomodules"
4964 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4965 _dvbin=yes
4966 _inputmodules="dvb $_inputmodules"
4967 else
4968 _dvbin=no
4969 _noinputmodules="dvb $_noinputmodules"
4973 if darwin; then
4975 echocheck "QuickTime"
4976 if test "$quicktime" = auto ; then
4977 cat > $TMPC <<EOF
4978 #include <QuickTime/QuickTime.h>
4979 int main(void) {
4980 ImageDescription *desc;
4981 EnterMovies();
4982 ExitMovies();
4983 return 0;
4986 quicktime=no
4987 cc_check -framework QuickTime && quicktime=yes
4989 if test "$quicktime" = yes ; then
4990 extra_ldflags="$extra_ldflags -framework QuickTime"
4991 def_quicktime='#define CONFIG_QUICKTIME 1'
4992 else
4993 def_quicktime='#undef CONFIG_QUICKTIME'
4994 _quartz=no
4996 echores $quicktime
4998 echocheck "Quartz"
4999 if test "$_quartz" = auto ; then
5000 cat > $TMPC <<EOF
5001 #include <Carbon/Carbon.h>
5002 int main(void) {
5003 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
5004 return 0;
5007 _quartz=no
5008 cc_check -framework Carbon && _quartz=yes
5010 if test "$_quartz" = yes ; then
5011 libs_mplayer="$libs_mplayer -framework Carbon"
5012 def_quartz='#define CONFIG_QUARTZ 1'
5013 _vomodules="quartz $_vomodules"
5014 else
5015 def_quartz='#undef CONFIG_QUARTZ'
5016 _novomodules="quartz $_novomodules"
5018 echores $_quartz
5020 echocheck "CoreVideo"
5021 if test "$_corevideo" = auto ; then
5022 cat > $TMPC <<EOF
5023 #include <Carbon/Carbon.h>
5024 #include <CoreServices/CoreServices.h>
5025 #include <OpenGL/OpenGL.h>
5026 #include <QuartzCore/CoreVideo.h>
5027 int main(void) { return 0; }
5029 _corevideo=no
5030 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
5032 if test "$_corevideo" = yes ; then
5033 _vomodules="corevideo $_vomodules"
5034 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
5035 def_corevideo='#define CONFIG_COREVIDEO 1'
5036 else
5037 _novomodules="corevideo $_novomodules"
5038 def_corevideo='#undef CONFIG_COREVIDEO'
5040 echores "$_corevideo"
5042 fi #if darwin
5045 # make sure this stays below CoreVideo to avoid issues due to namespace
5046 # conflicts between -lGL and -framework OpenGL
5047 echocheck "OpenGL"
5048 #Note: this test is run even with --enable-gl since we autodetect linker flags
5049 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
5050 cat > $TMPC << EOF
5051 #ifdef GL_WIN32
5052 #include <windows.h>
5053 #include <GL/gl.h>
5054 #else
5055 #include <GL/gl.h>
5056 #include <X11/Xlib.h>
5057 #include <GL/glx.h>
5058 #endif
5059 int main(void) {
5060 #ifdef GL_WIN32
5061 HDC dc;
5062 wglCreateContext(dc);
5063 #else
5064 glXCreateContext(NULL, NULL, NULL, True);
5065 #endif
5066 glFinish();
5067 return 0;
5070 _gl=no
5071 for _ld_tmp in -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5072 if cc_check $_ld_tmp $_ld_lm ; then
5073 _gl=yes
5074 _gl_x11=yes
5075 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5076 break
5078 done
5079 if cc_check -DGL_WIN32 -lopengl32 ; then
5080 _gl=yes
5081 _gl_win32=yes
5082 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5084 else
5085 _gl=no
5087 if test "$_gl" = yes ; then
5088 def_gl='#define CONFIG_GL 1'
5089 _res_comment="backends:"
5090 if test "$_gl_win32" = yes ; then
5091 def_gl_win32='#define CONFIG_GL_WIN32 1'
5092 _res_comment="$_res_comment win32"
5094 if test "$_gl_x11" = yes ; then
5095 def_gl_x11='#define CONFIG_GL_X11 1'
5096 _res_comment="$_res_comment x11"
5098 _vomodules="opengl $_vomodules"
5099 else
5100 def_gl='#undef CONFIG_GL'
5101 def_gl_win32='#undef CONFIG_GL_WIN32'
5102 def_gl_x11='#undef CONFIG_GL_X11'
5103 _novomodules="opengl $_novomodules"
5105 echores "$_gl"
5108 echocheck "MatrixView"
5109 if test "$_gl" = no ; then
5110 matrixview=no
5112 if test "$matrixview" = yes ; then
5113 _vomodules="matrixview $_vomodules"
5114 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5115 else
5116 _novomodules="matrixview $_novomodules"
5117 def_matrixview='#undef CONFIG_MATRIXVIEW'
5119 echores "$matrixview"
5122 echocheck "PNG support"
5123 if test "$_png" = auto ; then
5124 _png=no
5125 if irix ; then
5126 # Don't check for -lpng on irix since it has its own libpng
5127 # incompatible with the GNU libpng
5128 _res_comment="disabled on irix (not GNU libpng)"
5129 else
5130 cat > $TMPC << EOF
5131 #include <png.h>
5132 #include <string.h>
5133 int main(void) {
5134 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
5135 printf("libpng: %s\n", png_libpng_ver);
5136 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
5139 cc_check -lpng -lz $_ld_lm && _png=yes
5142 echores "$_png"
5143 if test "$_png" = yes ; then
5144 def_png='#define CONFIG_PNG 1'
5145 extra_ldflags="$extra_ldflags -lpng -lz"
5146 else
5147 def_png='#undef CONFIG_PNG'
5150 echocheck "MNG support"
5151 if test "$_mng" = auto ; then
5152 _mng=no
5153 cat > $TMPC << EOF
5154 #include <libmng.h>
5155 int main(void) {
5156 const char * p_ver = mng_version_text();
5157 return !p_ver || p_ver[0] == 0;
5160 if cc_check -lmng -lz $_ld_lm ; then
5161 _mng=yes
5164 echores "$_mng"
5165 if test "$_mng" = yes ; then
5166 def_mng='#define CONFIG_MNG 1'
5167 extra_ldflags="$extra_ldflags -lmng -lz"
5168 else
5169 def_mng='#undef CONFIG_MNG'
5172 echocheck "JPEG support"
5173 if test "$_jpeg" = auto ; then
5174 _jpeg=no
5175 cat > $TMPC << EOF
5176 #include <stdio.h>
5177 #include <stdlib.h>
5178 #include <setjmp.h>
5179 #include <string.h>
5180 #include <jpeglib.h>
5181 int main(void) { return 0; }
5183 cc_check -ljpeg $_ld_lm && _jpeg=yes
5185 echores "$_jpeg"
5187 if test "$_jpeg" = yes ; then
5188 def_jpeg='#define CONFIG_JPEG 1'
5189 _vomodules="jpeg $_vomodules"
5190 extra_ldflags="$extra_ldflags -ljpeg"
5191 else
5192 def_jpeg='#undef CONFIG_JPEG'
5193 _novomodules="jpeg $_novomodules"
5197 echocheck "OpenJPEG (JPEG2000) support"
5198 if test "$libopenjpeg" = auto ; then
5199 libopenjpeg=no
5200 cat > $TMPC << EOF
5201 #define OPJ_STATIC
5202 #include <openjpeg.h>
5203 int main(void) { opj_dparameters_t dec_params; opj_set_default_decoder_parameters(&dec_params); return 0; }
5205 cc_check -lopenjpeg $_ld_lm && libopenjpeg=yes
5207 echores "$libopenjpeg"
5208 if test "$libopenjpeg" = yes ; then
5209 def_libopenjpeg='#define CONFIG_LIBOPENJPEG 1'
5210 extra_ldflags="$extra_ldflags -lopenjpeg"
5211 _libavdecoders="$_libavdecoders LIBOPENJPEG_DECODER"
5212 _libavencoders="$_libavencoders LIBOPENJPEG_ENCODER"
5213 _codecmodules="OpenJPEG $_codecmodules"
5214 else
5215 def_libopenjpeg='#define CONFIG_LIBOPENJPEG 0'
5216 _nocodecmodules="OpenJPEG $_nocodecmodules"
5220 echocheck "PNM support"
5221 if test "$_pnm" = yes; then
5222 def_pnm="#define CONFIG_PNM 1"
5223 _vomodules="pnm $_vomodules"
5224 else
5225 def_pnm="#undef CONFIG_PNM"
5226 _novomodules="pnm $_novomodules"
5228 echores "$_pnm"
5232 echocheck "GIF support"
5233 # This is to appease people who want to force gif support.
5234 # If it is forced to yes, then we still do checks to determine
5235 # which gif library to use.
5236 if test "$_gif" = yes ; then
5237 _force_gif=yes
5238 _gif=auto
5241 if test "$_gif" = auto ; then
5242 _gif=no
5243 cat > $TMPC << EOF
5244 #include <gif_lib.h>
5245 int main(void) { return 0; }
5247 for _ld_gif in "-lungif" "-lgif" ; do
5248 cc_check $_ld_gif && _gif=yes && break
5249 done
5252 # If no library was found, and the user wants support forced,
5253 # then we force it on with libgif, as this is the safest
5254 # assumption IMHO. (libungif & libregif both create symbolic
5255 # links to libgif. We also assume that no x11 support is needed,
5256 # because if you are forcing this, then you _should_ know what
5257 # you are doing. [ Besides, package maintainers should never
5258 # have compiled x11 deps into libungif in the first place. ] )
5259 # </rant>
5260 # --Joey
5261 if test "$_force_gif" = yes && test "$_gif" = no ; then
5262 _gif=yes
5263 _ld_gif="-lgif"
5266 if test "$_gif" = yes ; then
5267 def_gif='#define CONFIG_GIF 1'
5268 _codecmodules="gif $_codecmodules"
5269 _vomodules="gif89a $_vomodules"
5270 _res_comment="old version, some encoding functions disabled"
5271 def_gif_4='#undef CONFIG_GIF_4'
5272 extra_ldflags="$extra_ldflags $_ld_gif"
5274 cat > $TMPC << EOF
5275 #include <signal.h>
5276 #include <gif_lib.h>
5277 void catch() { exit(1); }
5278 int main(void) {
5279 signal(SIGSEGV, catch); // catch segfault
5280 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
5281 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
5282 return 0;
5285 if cc_check "$_ld_gif" ; then
5286 def_gif_4='#define CONFIG_GIF_4 1'
5287 _res_comment=""
5289 else
5290 def_gif='#undef CONFIG_GIF'
5291 def_gif_4='#undef CONFIG_GIF_4'
5292 _novomodules="gif89a $_novomodules"
5293 _nocodecmodules="gif $_nocodecmodules"
5295 echores "$_gif"
5298 case "$_gif" in yes*)
5299 echocheck "broken giflib workaround"
5300 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5302 cat > $TMPC << EOF
5303 #include <gif_lib.h>
5304 int main(void) {
5305 GifFileType gif;
5306 printf("UserData is at address %p\n", gif.UserData);
5307 return 0;
5310 if cc_check "$_ld_gif" ; then
5311 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5312 echores "disabled"
5313 else
5314 echores "enabled"
5317 esac
5320 echocheck "VESA support"
5321 if test "$_vesa" = auto ; then
5322 cat > $TMPC << EOF
5323 #include <vbe.h>
5324 int main(void) { vbeVersion(); return 0; }
5326 _vesa=no
5327 cc_check -lvbe -llrmi && _vesa=yes
5329 if test "$_vesa" = yes ; then
5330 def_vesa='#define CONFIG_VESA 1'
5331 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5332 _vomodules="vesa $_vomodules"
5333 else
5334 def_vesa='#undef CONFIG_VESA'
5335 _novomodules="vesa $_novomodules"
5337 echores "$_vesa"
5339 #################
5340 # VIDEO + AUDIO #
5341 #################
5344 echocheck "SDL"
5345 _inc_tmp=""
5346 _ld_tmp=""
5347 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5348 if test -z "$_sdlconfig" ; then
5349 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5350 _sdlconfig="sdl-config"
5351 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5352 _sdlconfig="sdl11-config"
5353 else
5354 _sdlconfig=false
5357 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5358 cat > $TMPC << EOF
5359 #ifdef CONFIG_SDL_SDL_H
5360 #include <SDL/SDL.h>
5361 #else
5362 #include <SDL.h>
5363 #endif
5364 #ifndef __APPLE__
5365 // we allow SDL hacking our main() only on OSX
5366 #undef main
5367 #endif
5368 int main(int argc, char *argv[]) {
5369 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5370 return 0;
5373 _sdl=no
5374 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5375 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5376 _sdl=yes
5377 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5378 break
5380 done
5381 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5382 _res_comment="using $_sdlconfig"
5383 if cygwin ; then
5384 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5385 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5386 elif mingw32 ; then
5387 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5388 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5389 else
5390 _inc_tmp="$($_sdlconfig --cflags)"
5391 _ld_tmp="$($_sdlconfig --libs)"
5393 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5394 _sdlversion=$($_sdlconfig --version | sed 's/[^0-9]//g')
5395 if test "$_sdlversion" -gt 116 ; then
5396 if test "$_sdlversion" -lt 121 ; then
5397 def_sdlbuggy='#define BUGGY_SDL'
5398 else
5399 def_sdlbuggy='#undef BUGGY_SDL'
5401 _sdl=yes
5406 if test "$_sdl" = yes ; then
5407 def_sdl='#define CONFIG_SDL 1'
5408 extra_cflags="$extra_cflags $_inc_tmp"
5409 libs_mplayer="$libs_mplayer $_ld_tmp"
5410 _vomodules="sdl $_vomodules"
5411 _aomodules="sdl $_aomodules"
5412 else
5413 def_sdl='#undef CONFIG_SDL'
5414 _novomodules="sdl $_novomodules"
5415 _noaomodules="sdl $_noaomodules"
5417 echores "$_sdl"
5420 if os2 ; then
5421 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5422 if test "$_kva" = auto; then
5423 cat > $TMPC << EOF
5424 #include <os2.h>
5425 #include <kva.h>
5426 int main( void ) { return 0; }
5428 _kva=no;
5429 cc_check -lkva && _kva=yes
5431 if test "$_kva" = yes ; then
5432 def_kva='#define CONFIG_KVA 1'
5433 libs_mplayer="$libs_mplayer -lkva"
5434 _vomodules="kva $_vomodules"
5435 else
5436 def_kva='#undef CONFIG_KVA'
5437 _novomodules="kva $_novomodules"
5439 echores "$_kva"
5440 fi #if os2
5443 if win32; then
5445 echocheck "Windows waveout"
5446 if test "$_win32waveout" = auto ; then
5447 cat > $TMPC << EOF
5448 #include <windows.h>
5449 #include <mmsystem.h>
5450 int main(void) { return 0; }
5452 _win32waveout=no
5453 cc_check -lwinmm && _win32waveout=yes
5455 if test "$_win32waveout" = yes ; then
5456 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5457 libs_mplayer="$libs_mplayer -lwinmm"
5458 _aomodules="win32 $_aomodules"
5459 else
5460 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5461 _noaomodules="win32 $_noaomodules"
5463 echores "$_win32waveout"
5465 echocheck "Direct3D"
5466 if test "$_direct3d" = auto ; then
5467 cat > $TMPC << EOF
5468 #include <windows.h>
5469 #include <d3d9.h>
5470 int main(void) { return 0; }
5472 _direct3d=no
5473 cc_check && _direct3d=yes
5475 if test "$_direct3d" = yes ; then
5476 def_direct3d='#define CONFIG_DIRECT3D 1'
5477 _vomodules="direct3d $_vomodules"
5478 else
5479 def_direct3d='#undef CONFIG_DIRECT3D'
5480 _novomodules="direct3d $_novomodules"
5482 echores "$_direct3d"
5484 echocheck "Directx"
5485 if test "$_directx" = auto ; then
5486 cat > $TMPC << EOF
5487 #include <windows.h>
5488 #include <ddraw.h>
5489 #include <dsound.h>
5490 int main(void) { return 0; }
5492 _directx=no
5493 cc_check -lgdi32 && _directx=yes
5495 if test "$_directx" = yes ; then
5496 def_directx='#define CONFIG_DIRECTX 1'
5497 libs_mplayer="$libs_mplayer -lgdi32"
5498 _vomodules="directx $_vomodules"
5499 _aomodules="dsound $_aomodules"
5500 else
5501 def_directx='#undef CONFIG_DIRECTX'
5502 _novomodules="directx $_novomodules"
5503 _noaomodules="dsound $_noaomodules"
5505 echores "$_directx"
5507 fi #if win32; then
5510 echocheck "DXR2"
5511 if test "$_dxr2" = auto; then
5512 _dxr2=no
5513 cat > $TMPC << EOF
5514 #include <dxr2ioctl.h>
5515 int main(void) { return 0; }
5517 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5518 cc_check $_inc_tmp && _dxr2=yes && \
5519 extra_cflags="$extra_cflags $_inc_tmp" && break
5520 done
5522 if test "$_dxr2" = yes; then
5523 def_dxr2='#define CONFIG_DXR2 1'
5524 _aomodules="dxr2 $_aomodules"
5525 _vomodules="dxr2 $_vomodules"
5526 else
5527 def_dxr2='#undef CONFIG_DXR2'
5528 _noaomodules="dxr2 $_noaomodules"
5529 _novomodules="dxr2 $_novomodules"
5531 echores "$_dxr2"
5533 echocheck "DXR3/H+"
5534 if test "$_dxr3" = auto ; then
5535 cat > $TMPC << EOF
5536 #include <linux/em8300.h>
5537 int main(void) { return 0; }
5539 _dxr3=no
5540 cc_check && _dxr3=yes
5542 if test "$_dxr3" = yes ; then
5543 def_dxr3='#define CONFIG_DXR3 1'
5544 _vomodules="dxr3 $_vomodules"
5545 else
5546 def_dxr3='#undef CONFIG_DXR3'
5547 _novomodules="dxr3 $_novomodules"
5549 echores "$_dxr3"
5552 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5553 if test "$_ivtv" = auto ; then
5554 cat > $TMPC << EOF
5555 #include <stdlib.h>
5556 #include <inttypes.h>
5557 #include <linux/types.h>
5558 #include <linux/videodev2.h>
5559 #include <linux/ivtv.h>
5560 #include <sys/ioctl.h>
5561 int main(void) {
5562 struct ivtv_cfg_stop_decode sd;
5563 struct ivtv_cfg_start_decode sd1;
5564 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5565 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5566 return 0; }
5568 _ivtv=no
5569 cc_check && _ivtv=yes
5571 if test "$_ivtv" = yes ; then
5572 def_ivtv='#define CONFIG_IVTV 1'
5573 _vomodules="ivtv $_vomodules"
5574 _aomodules="ivtv $_aomodules"
5575 else
5576 def_ivtv='#undef CONFIG_IVTV'
5577 _novomodules="ivtv $_novomodules"
5578 _noaomodules="ivtv $_noaomodules"
5580 echores "$_ivtv"
5583 echocheck "V4L2 MPEG Decoder"
5584 if test "$_v4l2" = auto ; then
5585 cat > $TMPC << EOF
5586 #include <stdlib.h>
5587 #include <inttypes.h>
5588 #include <linux/types.h>
5589 #include <linux/videodev2.h>
5590 #include <linux/version.h>
5591 int main(void) {
5592 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5593 #error kernel headers too old, need 2.6.22
5594 #endif
5595 struct v4l2_ext_controls ctrls;
5596 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5597 return 0;
5600 _v4l2=no
5601 cc_check && _v4l2=yes
5603 if test "$_v4l2" = yes ; then
5604 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5605 _vomodules="v4l2 $_vomodules"
5606 _aomodules="v4l2 $_aomodules"
5607 else
5608 def_v4l2='#undef CONFIG_V4L2_DECODER'
5609 _novomodules="v4l2 $_novomodules"
5610 _noaomodules="v4l2 $_noaomodules"
5612 echores "$_v4l2"
5616 #########
5617 # AUDIO #
5618 #########
5621 echocheck "OSS Audio"
5622 if test "$_ossaudio" = auto ; then
5623 cat > $TMPC << EOF
5624 #include <sys/ioctl.h>
5625 #include <$_soundcard_header>
5626 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5628 _ossaudio=no
5629 cc_check && _ossaudio=yes
5631 if test "$_ossaudio" = yes ; then
5632 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5633 _aomodules="oss $_aomodules"
5634 if test "$_linux_devfs" = yes; then
5635 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5636 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5637 else
5638 cat > $TMPC << EOF
5639 #include <sys/ioctl.h>
5640 #include <$_soundcard_header>
5641 #ifdef OPEN_SOUND_SYSTEM
5642 int main(void) { return 0; }
5643 #else
5644 #error Not the real thing
5645 #endif
5647 _real_ossaudio=no
5648 cc_check && _real_ossaudio=yes
5649 if test "$_real_ossaudio" = yes; then
5650 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5651 elif netbsd || openbsd ; then
5652 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5653 extra_ldflags="$extra_ldflags -lossaudio"
5654 else
5655 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5657 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5659 else
5660 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5661 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5662 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5663 _noaomodules="oss $_noaomodules"
5665 echores "$_ossaudio"
5668 echocheck "aRts"
5669 if test "$_arts" = auto ; then
5670 _arts=no
5671 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5673 cat > $TMPC << EOF
5674 #include <artsc.h>
5675 int main(void) { return 0; }
5677 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5682 if test "$_arts" = yes ; then
5683 def_arts='#define CONFIG_ARTS 1'
5684 _aomodules="arts $_aomodules"
5685 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5686 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5687 else
5688 _noaomodules="arts $_noaomodules"
5690 echores "$_arts"
5693 echocheck "EsounD"
5694 if test "$_esd" = auto ; then
5695 _esd=no
5696 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5698 cat > $TMPC << EOF
5699 #include <esd.h>
5700 int main(void) { int fd = esd_open_sound("test"); return fd; }
5702 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5706 echores "$_esd"
5708 if test "$_esd" = yes ; then
5709 def_esd='#define CONFIG_ESD 1'
5710 _aomodules="esd $_aomodules"
5711 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5712 extra_cflags="$extra_cflags $(esd-config --cflags)"
5714 echocheck "esd_get_latency()"
5715 cat > $TMPC << EOF
5716 #include <esd.h>
5717 int main(void) { return esd_get_latency(0); }
5719 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5720 echores "$_esd_latency"
5721 else
5722 def_esd='#undef CONFIG_ESD'
5723 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5724 _noaomodules="esd $_noaomodules"
5728 echocheck "NAS"
5729 if test "$_nas" = auto ; then
5730 cat > $TMPC << EOF
5731 #include <audio/audiolib.h>
5732 int main(void) { return 0; }
5734 _nas=no
5735 cc_check $_ld_lm -laudio -lXt && _nas=yes
5737 if test "$_nas" = yes ; then
5738 def_nas='#define CONFIG_NAS 1'
5739 libs_mplayer="$libs_mplayer -laudio -lXt"
5740 _aomodules="nas $_aomodules"
5741 else
5742 _noaomodules="nas $_noaomodules"
5743 def_nas='#undef CONFIG_NAS'
5745 echores "$_nas"
5748 echocheck "pulse"
5749 if test "$_pulse" = auto ; then
5750 _pulse=no
5751 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5753 cat > $TMPC << EOF
5754 #include <pulse/pulseaudio.h>
5755 int main(void) { return 0; }
5757 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5761 echores "$_pulse"
5763 if test "$_pulse" = yes ; then
5764 def_pulse='#define CONFIG_PULSE 1'
5765 _aomodules="pulse $_aomodules"
5766 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5767 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5768 else
5769 def_pulse='#undef CONFIG_PULSE'
5770 _noaomodules="pulse $_noaomodules"
5774 echocheck "JACK"
5775 if test "$_jack" = auto ; then
5776 _jack=yes
5778 cat > $TMPC << EOF
5779 #include <jack/jack.h>
5780 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5782 if cc_check -ljack ; then
5783 libs_mplayer="$libs_mplayer -ljack"
5784 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5785 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5786 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5787 else
5788 _jack=no
5792 if test "$_jack" = yes ; then
5793 def_jack='#define CONFIG_JACK 1'
5794 _aomodules="jack $_aomodules"
5795 else
5796 _noaomodules="jack $_noaomodules"
5798 echores "$_jack"
5800 echocheck "OpenAL"
5801 if test "$_openal" = auto ; then
5802 _openal=no
5803 cat > $TMPC << EOF
5804 #ifdef OPENAL_AL_H
5805 #include <OpenAL/al.h>
5806 #else
5807 #include <AL/al.h>
5808 #endif
5809 int main(void) {
5810 alSourceQueueBuffers(0, 0, 0);
5811 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5812 return 0;
5815 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5816 cc_check $I && _openal=yes && break
5817 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5818 done
5819 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5821 if test "$_openal" = yes ; then
5822 def_openal='#define CONFIG_OPENAL 1'
5823 _aomodules="openal $_aomodules"
5824 else
5825 _noaomodules="openal $_noaomodules"
5827 echores "$_openal"
5829 echocheck "ALSA audio"
5830 if test "$_alloca" != yes ; then
5831 _alsa=no
5832 _res_comment="alloca missing"
5834 if test "$_alsa" != no ; then
5835 _alsa=no
5836 cat > $TMPC << EOF
5837 #include <sys/time.h>
5838 #include <sys/asoundlib.h>
5839 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5840 #error "alsa version != 0.5.x"
5841 #endif
5842 int main(void) { return 0; }
5844 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5846 cat > $TMPC << EOF
5847 #include <sys/time.h>
5848 #include <sys/asoundlib.h>
5849 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5850 #error "alsa version != 0.9.x"
5851 #endif
5852 int main(void) { return 0; }
5854 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5855 cat > $TMPC << EOF
5856 #include <sys/time.h>
5857 #include <alsa/asoundlib.h>
5858 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5859 #error "alsa version != 0.9.x"
5860 #endif
5861 int main(void) { return 0; }
5863 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5865 cat > $TMPC << EOF
5866 #include <sys/time.h>
5867 #include <sys/asoundlib.h>
5868 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5869 #error "alsa version != 1.0.x"
5870 #endif
5871 int main(void) { return 0; }
5873 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5874 cat > $TMPC << EOF
5875 #include <sys/time.h>
5876 #include <alsa/asoundlib.h>
5877 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5878 #error "alsa version != 1.0.x"
5879 #endif
5880 int main(void) { return 0; }
5882 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5884 def_alsa='#undef CONFIG_ALSA'
5885 def_alsa5='#undef CONFIG_ALSA5'
5886 def_alsa9='#undef CONFIG_ALSA9'
5887 def_alsa1x='#undef CONFIG_ALSA1X'
5888 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5889 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5890 if test "$_alsaver" ; then
5891 _alsa=yes
5892 if test "$_alsaver" = '0.5.x' ; then
5893 _alsa5=yes
5894 _aomodules="alsa5 $_aomodules"
5895 def_alsa5='#define CONFIG_ALSA5 1'
5896 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5897 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5898 elif test "$_alsaver" = '0.9.x-sys' ; then
5899 _alsa9=yes
5900 _aomodules="alsa $_aomodules"
5901 def_alsa='#define CONFIG_ALSA 1'
5902 def_alsa9='#define CONFIG_ALSA9 1'
5903 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5904 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5905 elif test "$_alsaver" = '0.9.x-alsa' ; then
5906 _alsa9=yes
5907 _aomodules="alsa $_aomodules"
5908 def_alsa='#define CONFIG_ALSA 1'
5909 def_alsa9='#define CONFIG_ALSA9 1'
5910 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5911 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5912 elif test "$_alsaver" = '1.0.x-sys' ; then
5913 _alsa1x=yes
5914 _aomodules="alsa $_aomodules"
5915 def_alsa='#define CONFIG_ALSA 1'
5916 def_alsa1x="#define CONFIG_ALSA1X 1"
5917 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5918 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5919 elif test "$_alsaver" = '1.0.x-alsa' ; then
5920 _alsa1x=yes
5921 _aomodules="alsa $_aomodules"
5922 def_alsa='#define CONFIG_ALSA 1'
5923 def_alsa1x="#define CONFIG_ALSA1X 1"
5924 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5925 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5926 else
5927 _alsa=no
5928 _res_comment="unknown version"
5930 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5931 else
5932 _noaomodules="alsa $_noaomodules"
5934 echores "$_alsa"
5937 echocheck "Sun audio"
5938 if test "$_sunaudio" = auto ; then
5939 cat > $TMPC << EOF
5940 #include <sys/types.h>
5941 #include <sys/audioio.h>
5942 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5944 _sunaudio=no
5945 cc_check && _sunaudio=yes
5947 if test "$_sunaudio" = yes ; then
5948 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5949 _aomodules="sun $_aomodules"
5950 else
5951 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5952 _noaomodules="sun $_noaomodules"
5954 echores "$_sunaudio"
5957 def_mlib='#define CONFIG_MLIB 0'
5958 if sunos; then
5959 echocheck "Sun mediaLib"
5960 if test "$_mlib" = auto ; then
5961 _mlib=no
5962 cat > $TMPC << EOF
5963 #include <mlib.h>
5964 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5966 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5968 echores "$_mlib"
5969 fi #if sunos
5972 if darwin; then
5973 echocheck "CoreAudio"
5974 if test "$_coreaudio" = auto ; then
5975 cat > $TMPC <<EOF
5976 #include <CoreAudio/CoreAudio.h>
5977 #include <AudioToolbox/AudioToolbox.h>
5978 #include <AudioUnit/AudioUnit.h>
5979 int main(void) { return 0; }
5981 _coreaudio=no
5982 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5984 if test "$_coreaudio" = yes ; then
5985 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5986 def_coreaudio='#define CONFIG_COREAUDIO 1'
5987 _aomodules="coreaudio $_aomodules"
5988 else
5989 def_coreaudio='#undef CONFIG_COREAUDIO'
5990 _noaomodules="coreaudio $_noaomodules"
5992 echores $_coreaudio
5993 fi #if darwin
5996 if irix; then
5997 echocheck "SGI audio"
5998 if test "$_sgiaudio" = auto ; then
5999 # check for SGI audio
6000 cat > $TMPC << EOF
6001 #include <dmedia/audio.h>
6002 int main(void) { return 0; }
6004 _sgiaudio=no
6005 cc_check && _sgiaudio=yes
6007 if test "$_sgiaudio" = "yes" ; then
6008 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
6009 libs_mplayer="$libs_mplayer -laudio"
6010 _aomodules="sgi $_aomodules"
6011 else
6012 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
6013 _noaomodules="sgi $_noaomodules"
6015 echores "$_sgiaudio"
6016 fi #if irix
6019 if os2 ; then
6020 echocheck "DART"
6021 if test "$_dart" = auto; then
6022 cat > $TMPC << EOF
6023 #include <os2.h>
6024 #include <dart.h>
6025 int main( void ) { return 0; }
6027 _dart=no;
6028 cc_check -ldart && _dart=yes
6030 if test "$_dart" = yes ; then
6031 def_dart='#define CONFIG_DART 1'
6032 libs_mplayer="$libs_mplayer -ldart"
6033 _aomodules="dart $_aomodules"
6034 else
6035 def_dart='#undef CONFIG_DART'
6036 _noaomodules="dart $_noaomodules"
6038 echores "$_dart"
6039 fi #if os2
6042 # set default CD/DVD devices
6043 if win32 || os2 ; then
6044 default_cdrom_device="D:"
6045 elif darwin ; then
6046 default_cdrom_device="/dev/disk1"
6047 elif dragonfly ; then
6048 default_cdrom_device="/dev/cd0"
6049 elif freebsd ; then
6050 default_cdrom_device="/dev/acd0"
6051 elif openbsd ; then
6052 default_cdrom_device="/dev/rcd0a"
6053 elif sunos ; then
6054 default_cdrom_device="/vol/dev/aliases/cdrom0"
6055 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
6056 # file system and the volfs service.
6057 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
6058 elif amigaos ; then
6059 default_cdrom_device="a1ide.device:2"
6060 else
6061 default_cdrom_device="/dev/cdrom"
6064 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
6065 default_dvd_device=$default_cdrom_device
6066 elif darwin ; then
6067 default_dvd_device="/dev/rdiskN"
6068 else
6069 default_dvd_device="/dev/dvd"
6073 echocheck "VCD support"
6074 if test "$_vcd" = auto; then
6075 _vcd=no
6076 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos; then
6077 _vcd=yes
6078 elif mingw32; then
6079 cat > $TMPC << EOF
6080 #include <ddk/ntddcdrm.h>
6081 int main(void) { return 0; }
6083 cc_check && _vcd=yes
6086 if test "$_vcd" = yes; then
6087 _inputmodules="vcd $_inputmodules"
6088 def_vcd='#define CONFIG_VCD 1'
6089 else
6090 def_vcd='#undef CONFIG_VCD'
6091 _noinputmodules="vcd $_noinputmodules"
6092 _res_comment="not supported on this OS"
6094 echores "$_vcd"
6098 echocheck "dvdread"
6099 if test "$_dvdread_internal" = auto ; then
6100 _dvdread_internal=no
6101 _dvdread=no
6102 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
6103 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
6104 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
6105 || darwin || win32 || os2; then
6106 _dvdread_internal=yes
6107 _dvdread=yes
6108 extra_cflags="-Ilibdvdread4 $extra_cflags"
6110 elif test "$_dvdread" = auto ; then
6111 _dvdread=no
6112 if test "$_dl" = yes; then
6113 cat > $TMPC << EOF
6114 #include <inttypes.h>
6115 #include <dvdread/dvd_reader.h>
6116 #include <dvdread/ifo_types.h>
6117 #include <dvdread/ifo_read.h>
6118 #include <dvdread/nav_read.h>
6119 int main(void) { return 0; }
6121 _dvdreadcflags=$($_dvdreadconfig --cflags)
6122 _dvdreadlibs=$($_dvdreadconfig --libs)
6123 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
6124 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
6125 _dvdread=yes
6126 extra_cflags="$extra_cflags $_dvdreadcflags"
6127 extra_ldflags="$extra_ldflags $_dvdreadlibs"
6128 _res_comment="external"
6133 if test "$_dvdread_internal" = yes; then
6134 def_dvdread='#define CONFIG_DVDREAD 1'
6135 _inputmodules="dvdread(internal) $_inputmodules"
6136 _largefiles=yes
6137 _res_comment="internal"
6138 elif test "$_dvdread" = yes; then
6139 def_dvdread='#define CONFIG_DVDREAD 1'
6140 _largefiles=yes
6141 extra_ldflags="$extra_ldflags -ldvdread"
6142 _inputmodules="dvdread(external) $_inputmodules"
6143 _res_comment="external"
6144 else
6145 def_dvdread='#undef CONFIG_DVDREAD'
6146 _noinputmodules="dvdread $_noinputmodules"
6148 echores "$_dvdread"
6151 echocheck "internal libdvdcss"
6152 if test "$_libdvdcss_internal" = auto ; then
6153 _libdvdcss_internal=no
6154 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
6155 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
6157 if test "$_libdvdcss_internal" = yes ; then
6158 if linux || netbsd || openbsd || bsdos ; then
6159 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
6160 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
6161 elif freebsd || dragonfly ; then
6162 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
6163 elif darwin ; then
6164 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
6165 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
6166 elif cygwin ; then
6167 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
6168 elif beos ; then
6169 cflags_libdvdcss="-DSYS_BEOS"
6170 elif os2 ; then
6171 cflags_libdvdcss="-DSYS_OS2"
6173 cflags_libdvdcss_dvdread="-Ilibdvdcss"
6174 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
6175 _inputmodules="libdvdcss(internal) $_inputmodules"
6176 _largefiles=yes
6177 else
6178 _noinputmodules="libdvdcss(internal) $_noinputmodules"
6180 echores "$_libdvdcss_internal"
6183 echocheck "cdparanoia"
6184 if test "$_cdparanoia" = auto ; then
6185 cat > $TMPC <<EOF
6186 #include <cdda_interface.h>
6187 #include <cdda_paranoia.h>
6188 // This need a better test. How ?
6189 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
6191 _cdparanoia=no
6192 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
6193 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
6194 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
6195 done
6197 if test "$_cdparanoia" = yes ; then
6198 _cdda='yes'
6199 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
6200 openbsd && extra_ldflags="$extra_ldflags -lutil"
6202 echores "$_cdparanoia"
6205 echocheck "libcdio"
6206 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
6207 cat > $TMPC << EOF
6208 #include <stdio.h>
6209 #include <cdio/version.h>
6210 #include <cdio/cdda.h>
6211 #include <cdio/paranoia.h>
6212 int main(void) {
6213 void *test = cdda_verbose_set;
6214 printf("%s\n", CDIO_VERSION);
6215 return test == (void *)1;
6218 _libcdio=no
6219 for _ld_tmp in "" "-lwinmm" ; do
6220 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
6221 cc_check $_ld_tmp $_ld_lm \
6222 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6223 done
6224 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6225 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6226 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6227 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6228 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6231 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6232 _cdda='yes'
6233 def_libcdio='#define CONFIG_LIBCDIO 1'
6234 def_havelibcdio='yes'
6235 else
6236 if test "$_cdparanoia" = yes ; then
6237 _res_comment="using cdparanoia"
6239 def_libcdio='#undef CONFIG_LIBCDIO'
6240 def_havelibcdio='no'
6242 echores "$_libcdio"
6244 if test "$_cdda" = yes ; then
6245 test $_cddb = auto && test $_network = yes && _cddb=yes
6246 def_cdparanoia='#define CONFIG_CDDA 1'
6247 _inputmodules="cdda $_inputmodules"
6248 else
6249 def_cdparanoia='#undef CONFIG_CDDA'
6250 _noinputmodules="cdda $_noinputmodules"
6253 if test "$_cddb" = yes ; then
6254 def_cddb='#define CONFIG_CDDB 1'
6255 _inputmodules="cddb $_inputmodules"
6256 else
6257 _cddb=no
6258 def_cddb='#undef CONFIG_CDDB'
6259 _noinputmodules="cddb $_noinputmodules"
6262 echocheck "bitmap font support"
6263 if test "$_bitmap_font" = yes ; then
6264 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6265 else
6266 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6268 echores "$_bitmap_font"
6271 echocheck "freetype >= 2.0.9"
6273 # freetype depends on iconv
6274 if test "$_iconv" = no ; then
6275 _freetype=no
6276 _res_comment="iconv support needed"
6279 if test "$_freetype" = auto ; then
6280 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6281 cat > $TMPC << EOF
6282 #include <stdio.h>
6283 #include <ft2build.h>
6284 #include FT_FREETYPE_H
6285 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6286 #error "Need FreeType 2.0.9 or newer"
6287 #endif
6288 int main(void) {
6289 FT_Library library;
6290 FT_Int major=-1,minor=-1,patch=-1;
6291 int err=FT_Init_FreeType(&library);
6292 return 0;
6295 _freetype=no
6296 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6297 else
6298 _freetype=no
6301 if test "$_freetype" = yes ; then
6302 def_freetype='#define CONFIG_FREETYPE 1'
6303 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6304 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6305 else
6306 def_freetype='#undef CONFIG_FREETYPE'
6308 echores "$_freetype"
6310 if test "$_freetype" = no ; then
6311 _fontconfig=no
6312 _res_comment="FreeType support needed"
6314 echocheck "fontconfig"
6315 if test "$_fontconfig" = auto ; then
6316 cat > $TMPC << EOF
6317 #include <stdio.h>
6318 #include <stdlib.h>
6319 #include <fontconfig/fontconfig.h>
6320 int main(void) {
6321 int err = FcInit();
6322 if (err == FcFalse) {
6323 printf("Couldn't initialize fontconfig lib\n");
6324 exit(err);
6326 return 0;
6329 _fontconfig=no
6330 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6331 _ld_tmp="-lfontconfig $_ld_tmp"
6332 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6333 done
6334 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6335 _inc_tmp=$($_pkg_config --cflags fontconfig)
6336 _ld_tmp=$($_pkg_config --libs fontconfig)
6337 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6338 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6341 if test "$_fontconfig" = yes ; then
6342 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6343 else
6344 def_fontconfig='#undef CONFIG_FONTCONFIG'
6346 echores "$_fontconfig"
6349 echocheck "SSA/ASS support"
6350 # libass depends on FreeType
6351 if test "$_freetype" = no ; then
6352 _ass=no
6353 ass_internal=no
6354 _res_comment="FreeType support needed"
6357 if test "$_ass" = auto ; then
6358 cat > $TMPC << EOF
6359 #include <ft2build.h>
6360 #include FT_FREETYPE_H
6361 #if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 2) || ((FREETYPE_MINOR == 2) && (FREETYPE_PATCH < 1)))
6362 #error "Need FreeType 2.2.1 or newer"
6363 #endif
6364 int main(void) { return 0; }
6366 _ass=no
6367 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _ass=yes
6368 if test "$_ass" = no ; then
6369 ass_internal=no
6370 _res_comment="FreeType >= 2.2.1 needed"
6371 elif test "$ass_internal" = no ; then
6372 _res_comment="external"
6373 extra_ldflags="$extra_ldflags -lass"
6376 if test "$_ass" = yes ; then
6377 def_ass='#define CONFIG_ASS 1'
6378 else
6379 def_ass='#undef CONFIG_ASS'
6381 if test "$ass_internal" = yes ; then
6382 def_ass_internal='#define CONFIG_ASS_INTERNAL 1'
6383 else
6384 def_ass_internal='#undef CONFIG_ASS_INTERNAL'
6386 echores "$_ass"
6389 echocheck "fribidi with charsets"
6390 _inc_tmp=""
6391 _ld_tmp=""
6392 if test "$_fribidi" = auto ; then
6393 cat > $TMPC << EOF
6394 #include <stdio.h>
6395 #include <stdlib.h>
6396 /* workaround for fribidi 0.10.4 and below */
6397 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6398 #include <fribidi/fribidi.h>
6399 int main(void) {
6400 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6401 printf("Fribidi headers are not consistents with the library!\n");
6402 exit(1);
6404 return 0;
6407 _fribidi=no
6408 _inc_tmp=""
6409 _ld_tmp="-lfribidi"
6410 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6411 if $_fribidiconfig --version > /dev/null 2>&1 &&
6412 test "$_fribidi" = no ; then
6413 _inc_tmp="$($_fribidiconfig --cflags)"
6414 _ld_tmp="$($_fribidiconfig --libs)"
6415 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6418 if test "$_fribidi" = yes ; then
6419 def_fribidi='#define CONFIG_FRIBIDI 1'
6420 extra_cflags="$extra_cflags $_inc_tmp"
6421 extra_ldflags="$extra_ldflags $_ld_tmp"
6422 else
6423 def_fribidi='#undef CONFIG_FRIBIDI'
6425 echores "$_fribidi"
6428 echocheck "ENCA"
6429 if test "$_enca" = auto ; then
6430 cat > $TMPC << EOF
6431 #include <sys/types.h>
6432 #include <enca.h>
6433 int main(void) {
6434 const char **langs;
6435 size_t langcnt;
6436 langs = enca_get_languages(&langcnt);
6437 return 0;
6440 _enca=no
6441 cc_check -lenca $_ld_lm && _enca=yes
6443 if test "$_enca" = yes ; then
6444 def_enca='#define CONFIG_ENCA 1'
6445 extra_ldflags="$extra_ldflags -lenca"
6446 else
6447 def_enca='#undef CONFIG_ENCA'
6449 echores "$_enca"
6452 echocheck "zlib"
6453 cat > $TMPC << EOF
6454 #include <zlib.h>
6455 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6457 _zlib=no
6458 cc_check -lz && _zlib=yes
6459 if test "$_zlib" = yes ; then
6460 def_zlib='#define CONFIG_ZLIB 1'
6461 extra_ldflags="$extra_ldflags -lz"
6462 else
6463 def_zlib='#define CONFIG_ZLIB 0'
6464 _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//)
6465 _libavencoders=$(echo $_libavencoders | sed -e s/FLASHSV_ENCODER// -e s/PNG_ENCODER// -e s/ZMBV_ENCODER// -e s/ZLIB_ENCODER//)
6467 echores "$_zlib"
6470 echocheck "bzlib"
6471 bzlib=no
6472 def_bzlib='#define CONFIG_BZLIB 0'
6473 cat > $TMPC << EOF
6474 #include <bzlib.h>
6475 int main(void) { BZ2_bzlibVersion(); return 0; }
6477 cc_check -lbz2 && bzlib=yes
6478 if test "$bzlib" = yes ; then
6479 def_bzlib='#define CONFIG_BZLIB 1'
6480 extra_ldflags="$extra_ldflags -lbz2"
6482 echores "$bzlib"
6485 echocheck "RTC"
6486 if test "$_rtc" = auto ; then
6487 cat > $TMPC << EOF
6488 #include <sys/ioctl.h>
6489 #ifdef __linux__
6490 #include <linux/rtc.h>
6491 #else
6492 #include <rtc.h>
6493 #define RTC_PIE_ON RTCIO_PIE_ON
6494 #endif
6495 int main(void) { return RTC_PIE_ON; }
6497 _rtc=no
6498 cc_check && _rtc=yes
6499 ppc && _rtc=no
6501 if test "$_rtc" = yes ; then
6502 def_rtc='#define HAVE_RTC 1'
6503 else
6504 def_rtc='#undef HAVE_RTC'
6506 echores "$_rtc"
6509 echocheck "liblzo2 support"
6510 if test "$_liblzo" = auto ; then
6511 _liblzo=no
6512 cat > $TMPC << EOF
6513 #include <lzo/lzo1x.h>
6514 int main(void) { lzo_init();return 0; }
6516 cc_check -llzo2 && _liblzo=yes
6518 if test "$_liblzo" = yes ; then
6519 def_liblzo='#define CONFIG_LIBLZO 1'
6520 extra_ldflags="$extra_ldflags -llzo2"
6521 _codecmodules="liblzo $_codecmodules"
6522 else
6523 def_liblzo='#undef CONFIG_LIBLZO'
6524 _nocodecmodules="liblzo $_nocodecmodules"
6526 echores "$_liblzo"
6529 echocheck "mad support"
6530 if test "$_mad" = auto ; then
6531 _mad=no
6532 cat > $TMPC << EOF
6533 #include <mad.h>
6534 int main(void) { return 0; }
6536 cc_check -lmad && _mad=yes
6538 if test "$_mad" = yes ; then
6539 def_mad='#define CONFIG_LIBMAD 1'
6540 extra_ldflags="$extra_ldflags -lmad"
6541 _codecmodules="libmad $_codecmodules"
6542 else
6543 def_mad='#undef CONFIG_LIBMAD'
6544 _nocodecmodules="libmad $_nocodecmodules"
6546 echores "$_mad"
6548 echocheck "Twolame"
6549 if test "$_twolame" = auto ; then
6550 cat > $TMPC <<EOF
6551 #include <twolame.h>
6552 int main(void) { twolame_init(); return 0; }
6554 _twolame=no
6555 cc_check -ltwolame $_ld_lm && _twolame=yes
6557 if test "$_twolame" = yes ; then
6558 def_twolame='#define CONFIG_TWOLAME 1'
6559 libs_mencoder="$libs_mencoder -ltwolame"
6560 _codecmodules="twolame $_codecmodules"
6561 else
6562 def_twolame='#undef CONFIG_TWOLAME'
6563 _nocodecmodules="twolame $_nocodecmodules"
6565 echores "$_twolame"
6567 echocheck "Toolame"
6568 if test "$_toolame" = auto ; then
6569 _toolame=no
6570 if test "$_twolame" = yes ; then
6571 _res_comment="disabled by twolame"
6572 else
6573 cat > $TMPC <<EOF
6574 #include <toolame.h>
6575 int main(void) { toolame_init(); return 0; }
6577 cc_check -ltoolame $_ld_lm && _toolame=yes
6580 if test "$_toolame" = yes ; then
6581 def_toolame='#define CONFIG_TOOLAME 1'
6582 libs_mencoder="$libs_mencoder -ltoolame"
6583 _codecmodules="toolame $_codecmodules"
6584 else
6585 def_toolame='#undef CONFIG_TOOLAME'
6586 _nocodecmodules="toolame $_nocodecmodules"
6588 if test "$_toolamedir" ; then
6589 _res_comment="using $_toolamedir"
6591 echores "$_toolame"
6593 echocheck "OggVorbis support"
6594 if test "$_tremor_internal" = yes; then
6595 _libvorbis=no
6596 elif test "$_tremor" = auto; then
6597 _tremor=no
6598 cat > $TMPC << EOF
6599 #include <tremor/ivorbiscodec.h>
6600 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6602 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6604 if test "$_libvorbis" = auto; then
6605 _libvorbis=no
6606 cat > $TMPC << EOF
6607 #include <vorbis/codec.h>
6608 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6610 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6612 if test "$_tremor_internal" = yes ; then
6613 _vorbis=yes
6614 def_vorbis='#define CONFIG_OGGVORBIS 1'
6615 def_tremor='#define CONFIG_TREMOR 1'
6616 _codecmodules="tremor(internal) $_codecmodules"
6617 _res_comment="internal Tremor"
6618 if test "$_tremor_low" = yes ; then
6619 cflags_tremor_low="-D_LOW_ACCURACY_"
6620 _res_comment="internal low accuracy Tremor"
6622 elif test "$_tremor" = yes ; then
6623 _vorbis=yes
6624 def_vorbis='#define CONFIG_OGGVORBIS 1'
6625 def_tremor='#define CONFIG_TREMOR 1'
6626 _codecmodules="tremor(external) $_codecmodules"
6627 _res_comment="external Tremor"
6628 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6629 elif test "$_libvorbis" = yes ; then
6630 _vorbis=yes
6631 def_vorbis='#define CONFIG_OGGVORBIS 1'
6632 _codecmodules="libvorbis $_codecmodules"
6633 _res_comment="libvorbis"
6634 extra_ldflags="$extra_ldflags -lvorbis -logg"
6635 else
6636 _vorbis=no
6637 _nocodecmodules="libvorbis $_nocodecmodules"
6639 echores "$_vorbis"
6641 echocheck "libspeex (version >= 1.1 required)"
6642 if test "$_speex" = auto ; then
6643 _speex=no
6644 cat > $TMPC << EOF
6645 #include <speex/speex.h>
6646 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6648 cc_check -lspeex $_ld_lm && _speex=yes
6650 if test "$_speex" = yes ; then
6651 def_speex='#define CONFIG_SPEEX 1'
6652 extra_ldflags="$extra_ldflags -lspeex"
6653 _codecmodules="speex $_codecmodules"
6654 else
6655 def_speex='#undef CONFIG_SPEEX'
6656 _nocodecmodules="speex $_nocodecmodules"
6658 echores "$_speex"
6660 echocheck "OggTheora support"
6661 if test "$_theora" = auto ; then
6662 _theora=no
6663 cat > $TMPC << EOF
6664 #include <theora/theora.h>
6665 #include <string.h>
6666 int main(void) {
6667 /* Theora is in flux, make sure that all interface routines and datatypes
6668 * exist and work the way we expect it, so we don't break MPlayer. */
6669 ogg_packet op;
6670 theora_comment tc;
6671 theora_info inf;
6672 theora_state st;
6673 yuv_buffer yuv;
6674 int r;
6675 double t;
6677 theora_info_init(&inf);
6678 theora_comment_init(&tc);
6680 return 0;
6682 /* we don't want to execute this kind of nonsense; just for making sure
6683 * that compilation works... */
6684 memset(&op, 0, sizeof(op));
6685 r = theora_decode_header(&inf, &tc, &op);
6686 r = theora_decode_init(&st, &inf);
6687 t = theora_granule_time(&st, op.granulepos);
6688 r = theora_decode_packetin(&st, &op);
6689 r = theora_decode_YUVout(&st, &yuv);
6690 theora_clear(&st);
6692 return 0;
6695 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6696 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6697 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6698 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6699 if test _theora = no; then
6700 _ld_theora="-ltheora -logg"
6701 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6703 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6704 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6705 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6706 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6707 extra_ldflags="$extra_ldflags $_ld_theora" &&
6708 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6709 if test _theora = no; then
6710 _ld_theora="-ltheora -logg"
6711 cc_check tremor/bitwise.c $_ld_theora &&
6712 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6716 if test "$_theora" = yes ; then
6717 def_theora='#define CONFIG_OGGTHEORA 1'
6718 _codecmodules="libtheora $_codecmodules"
6719 # when --enable-theora is forced, we'd better provide a probably sane
6720 # $_ld_theora than nothing
6721 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6722 else
6723 def_theora='#undef CONFIG_OGGTHEORA'
6724 _nocodecmodules="libtheora $_nocodecmodules"
6726 echores "$_theora"
6728 echocheck "internal mp3lib support"
6729 if test "$_mp3lib" = auto ; then
6730 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6732 if test "$_mp3lib" = yes ; then
6733 def_mp3lib='#define CONFIG_MP3LIB 1'
6734 _codecmodules="mp3lib(internal) $_codecmodules"
6735 else
6736 def_mp3lib='#undef CONFIG_MP3LIB'
6737 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6739 echores "$_mp3lib"
6741 echocheck "liba52 support"
6742 if test "$_liba52_internal" = auto ; then
6743 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
6745 def_liba52='#undef CONFIG_LIBA52'
6746 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6747 if test "$_liba52_internal" = yes ; then
6748 _liba52=yes
6749 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6750 _res_comment="internal"
6751 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6752 _liba52=no
6753 cat > $TMPC << EOF
6754 #include <inttypes.h>
6755 #include <a52dec/a52.h>
6756 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6758 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6760 if test "$_liba52" = yes ; then
6761 def_liba52='#define CONFIG_LIBA52 1'
6762 _codecmodules="liba52($_res_comment) $_codecmodules"
6763 else
6764 _nocodecmodules="liba52 $_nocodecmodules"
6766 echores "$_liba52"
6768 echocheck "internal libmpeg2 support"
6769 if test "$_libmpeg2" = auto ; then
6770 _libmpeg2=yes
6771 if alpha && test cc_vendor=gnu; then
6772 case $cc_version in
6773 2*|3.0*|3.1*) # cannot compile MVI instructions
6774 _libmpeg2=no
6775 _res_comment="broken gcc"
6777 esac
6780 if test "$_libmpeg2" = yes ; then
6781 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6782 _codecmodules="libmpeg2(internal) $_codecmodules"
6783 else
6784 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6785 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6787 echores "$_libmpeg2"
6789 echocheck "libdca support"
6790 if test "$_libdca" = auto ; then
6791 _libdca=no
6792 cat > $TMPC << EOF
6793 #include <inttypes.h>
6794 #include <dts.h>
6795 int main(void) { dts_init(0); return 0; }
6797 for _ld_dca in -ldca -ldts ; do
6798 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6799 && _libdca=yes && break
6800 done
6802 if test "$_libdca" = yes ; then
6803 def_libdca='#define CONFIG_LIBDCA 1'
6804 _codecmodules="libdca $_codecmodules"
6805 else
6806 def_libdca='#undef CONFIG_LIBDCA'
6807 _nocodecmodules="libdca $_nocodecmodules"
6809 echores "$_libdca"
6811 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6812 if test "$_musepack" = auto ; then
6813 _musepack=no
6814 cat > $TMPC << EOF
6815 #include <stddef.h>
6816 #include <mpcdec/mpcdec.h>
6817 int main(void) {
6818 mpc_streaminfo info;
6819 mpc_decoder decoder;
6820 mpc_decoder_set_streaminfo(&decoder, &info);
6821 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6822 return 0;
6825 cc_check -lmpcdec $_ld_lm && _musepack=yes
6827 if test "$_musepack" = yes ; then
6828 def_musepack='#define CONFIG_MUSEPACK 1'
6829 extra_ldflags="$extra_ldflags -lmpcdec"
6830 _codecmodules="musepack $_codecmodules"
6831 else
6832 def_musepack='#undef CONFIG_MUSEPACK'
6833 _nocodecmodules="musepack $_nocodecmodules"
6835 echores "$_musepack"
6838 echocheck "FAAC support"
6839 if test "$_faac" = auto ; then
6840 cat > $TMPC <<EOF
6841 #include <inttypes.h>
6842 #include <faac.h>
6843 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6845 _faac=no
6846 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6847 cc_check -O4 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6848 done
6850 if test "$_faac" = yes ; then
6851 def_faac="#define CONFIG_FAAC 1"
6852 test "$_faac_lavc" = auto && _faac_lavc=yes
6853 if test "$_faac_lavc" = yes ; then
6854 def_faac_lavc="#define CONFIG_LIBFAAC 1"
6855 libs_mplayer="$libs_mplayer $_ld_faac"
6856 _libavencoders="$_libavencoders LIBFAAC_ENCODER"
6858 _codecmodules="faac $_codecmodules"
6859 else
6860 _faac_lavc=no
6861 def_faac="#undef CONFIG_FAAC"
6862 def_faac_lavc="#define CONFIG_LIBFAAC 0"
6863 _nocodecmodules="faac $_nocodecmodules"
6865 _res_comment="in libavcodec: $_faac_lavc"
6866 echores "$_faac"
6869 echocheck "FAAD2 support"
6870 if test "$_faad_internal" = auto ; then
6871 if x86_32 && test cc_vendor=gnu; then
6872 case $cc_version in
6873 3.1*|3.2) # ICE/insn with these versions
6874 _faad_internal=no
6875 _res_comment="broken gcc"
6878 _faad=yes
6879 _faad_internal=yes
6881 esac
6882 else
6883 _faad=yes
6884 _faad_internal=yes
6887 if test "$_faad" = auto ; then
6888 cat > $TMPC << EOF
6889 #include <faad.h>
6890 #ifndef FAAD_MIN_STREAMSIZE
6891 #error Too old version
6892 #endif
6893 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6894 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6896 cc_check -lfaad $_ld_lm && _faad=yes
6899 def_faad='#undef CONFIG_FAAD'
6900 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6901 if test "$_faad_internal" = yes ; then
6902 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6903 _res_comment="internal floating-point"
6904 if test "$_faad_fixed" = yes ; then
6905 # The FIXED_POINT implementation of FAAD2 improves performance
6906 # on some platforms, especially for SBR files.
6907 cflags_faad_fixed="-DFIXED_POINT"
6908 _res_comment="internal fixed-point"
6910 elif test "$_faad" = yes ; then
6911 extra_ldflags="$extra_ldflags -lfaad"
6914 if test "$_faad" = yes ; then
6915 def_faad='#define CONFIG_FAAD 1'
6916 if test "$_faad_internal" = yes ; then
6917 _codecmodules="faad2(internal) $_codecmodules"
6918 else
6919 _codecmodules="faad2 $_codecmodules"
6921 else
6922 _faad=no
6923 _nocodecmodules="faad2 $_nocodecmodules"
6925 echores "$_faad"
6928 echocheck "LADSPA plugin support"
6929 if test "$_ladspa" = auto ; then
6930 cat > $TMPC <<EOF
6931 #include <stdio.h>
6932 #include <ladspa.h>
6933 int main(void) {
6934 const LADSPA_Descriptor *ld = NULL;
6935 return 0;
6938 _ladspa=no
6939 cc_check && _ladspa=yes
6941 if test "$_ladspa" = yes; then
6942 def_ladspa="#define CONFIG_LADSPA 1"
6943 else
6944 def_ladspa="#undef CONFIG_LADSPA"
6946 echores "$_ladspa"
6949 echocheck "libbs2b audio filter support"
6950 if test "$_libbs2b" = auto ; then
6951 cat > $TMPC <<EOF
6952 #include <bs2b.h>
6953 #if BS2B_VERSION_MAJOR < 3
6954 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6955 #endif
6956 int main(void) {
6957 t_bs2bdp filter;
6958 filter=bs2b_open();
6959 bs2b_close(filter);
6960 return 0;
6963 _libbs2b=no
6964 if $_pkg_config --exists libbs2b ; then
6965 _inc_tmp=$($_pkg_config --cflags libbs2b)
6966 _ld_tmp=$($_pkg_config --libs libbs2b)
6967 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6968 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6969 else
6970 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6971 -I/usr/local/include/bs2b ; do
6972 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6973 extra_ldflags="$extra_ldflags -lbs2b"
6974 extra_cflags="$extra_cflags $_inc_tmp"
6975 _libbs2b=yes
6976 break
6978 done
6981 def_libbs2b="#undef CONFIG_LIBBS2B"
6982 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6983 echores "$_libbs2b"
6986 if test -z "$_codecsdir" ; then
6987 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6988 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6989 if test -d "$dir" ; then
6990 _codecsdir="$dir"
6991 break;
6993 done
6995 # Fall back on default directory.
6996 if test -z "$_codecsdir" ; then
6997 _codecsdir="$_libdir/codecs"
6998 mingw32 && _codecsdir="codecs"
6999 os2 && _codecsdir="codecs"
7003 echocheck "Win32 codecs"
7004 if test "$_win32dll" = auto ; then
7005 _win32dll=no
7006 if x86_32 && ! qnx; then
7007 _win32dll=yes
7010 if test "$_win32dll" = yes ; then
7011 def_win32dll='#define CONFIG_WIN32DLL 1'
7012 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
7013 _res_comment="using $_win32codecsdir"
7014 if ! win32 ; then
7015 def_win32_loader='#define WIN32_LOADER 1'
7016 _win32_emulation=yes
7017 else
7018 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
7019 _res_comment="using native windows"
7021 _codecmodules="win32 $_codecmodules"
7022 else
7023 def_win32dll='#undef CONFIG_WIN32DLL'
7024 def_win32_loader='#undef WIN32_LOADER'
7025 _nocodecmodules="win32 $_nocodecmodules"
7027 echores "$_win32dll"
7030 echocheck "XAnim codecs"
7031 if test "$_xanim" = auto ; then
7032 _xanim=no
7033 _res_comment="dynamic loader support needed"
7034 if test "$_dl" = yes ; then
7035 _xanim=yes
7038 if test "$_xanim" = yes ; then
7039 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
7040 def_xanim='#define CONFIG_XANIM 1'
7041 def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
7042 _codecmodules="xanim $_codecmodules"
7043 _res_comment="using $_xanimcodecsdir"
7044 else
7045 def_xanim='#undef CONFIG_XANIM'
7046 def_xanim_path='#undef XACODEC_PATH'
7047 _nocodecmodules="xanim $_nocodecmodules"
7049 echores "$_xanim"
7052 echocheck "RealPlayer codecs"
7053 if test "$_real" = auto ; then
7054 _real=no
7055 _res_comment="dynamic loader support needed"
7056 if test "$_dl" = yes || test "$_win32dll" = yes &&
7057 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32) ; then
7058 _real=yes
7061 if test "$_real" = yes ; then
7062 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
7063 def_real='#define CONFIG_REALCODECS 1'
7064 def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
7065 _codecmodules="real $_codecmodules"
7066 _res_comment="using $_realcodecsdir"
7067 else
7068 def_real='#undef CONFIG_REALCODECS'
7069 def_real_path="#undef REALCODEC_PATH"
7070 _nocodecmodules="real $_nocodecmodules"
7072 echores "$_real"
7075 echocheck "QuickTime codecs"
7076 _qtx_emulation=no
7077 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
7078 if test "$_qtx" = auto ; then
7079 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
7081 if test "$_qtx" = yes ; then
7082 def_qtx='#define CONFIG_QTX_CODECS 1'
7083 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
7084 _codecmodules="qtx $_codecmodules"
7085 darwin || win32 || _qtx_emulation=yes
7086 else
7087 def_qtx='#undef CONFIG_QTX_CODECS'
7088 _nocodecmodules="qtx $_nocodecmodules"
7090 echores "$_qtx"
7092 echocheck "Nemesi Streaming Media libraries"
7093 if test "$_nemesi" = auto && test "$_network" = yes ; then
7094 _nemesi=no
7095 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
7096 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
7097 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
7098 _nemesi=yes
7101 if test "$_nemesi" = yes; then
7102 _native_rtsp=no
7103 def_nemesi='#define CONFIG_LIBNEMESI 1'
7104 _inputmodules="nemesi $_inputmodules"
7105 else
7106 _native_rtsp="$_network"
7107 _nemesi=no
7108 def_nemesi='#undef CONFIG_LIBNEMESI'
7109 _noinputmodules="nemesi $_noinputmodules"
7111 echores "$_nemesi"
7113 echocheck "LIVE555 Streaming Media libraries"
7114 if test "$_live" = auto && test "$_network" = yes ; then
7115 cat > $TMPCPP << EOF
7116 #include <liveMedia.hh>
7117 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
7118 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
7119 #endif
7120 int main(void) { return 0; }
7123 _live=no
7124 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
7125 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
7126 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
7127 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
7128 $_livelibdir/groupsock/libgroupsock.a \
7129 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
7130 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
7131 $extra_ldflags -lstdc++" \
7132 extra_cxxflags="-I$_livelibdir/liveMedia/include \
7133 -I$_livelibdir/UsageEnvironment/include \
7134 -I$_livelibdir/BasicUsageEnvironment/include \
7135 -I$_livelibdir/groupsock/include" && \
7136 _live=yes && break
7137 done
7138 if test "$_live" != yes ; then
7139 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
7140 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
7141 _live_dist=yes
7145 if test "$_live" = yes && test "$_network" = yes; then
7146 test $_livelibdir && _res_comment="using $_livelibdir"
7147 def_live='#define CONFIG_LIVE555 1'
7148 _inputmodules="live555 $_inputmodules"
7149 elif test "$_live_dist" = yes && test "$_network" = yes; then
7150 _res_comment="using distribution version"
7151 _live="yes"
7152 def_live='#define CONFIG_LIVE555 1'
7153 extra_ldflags="$extra_ldflags $ld_tmp"
7154 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
7155 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
7156 _inputmodules="live555 $_inputmodules"
7157 else
7158 _live=no
7159 def_live='#undef CONFIG_LIVE555'
7160 _noinputmodules="live555 $_noinputmodules"
7162 echores "$_live"
7165 echocheck "FFmpeg libavutil"
7166 if test "$_libavutil_a" = auto ; then
7167 if test -d libavutil ; then
7168 _libavutil_a=yes
7169 _res_comment="static"
7170 else
7171 die "MPlayer will not compile without libavutil in the source tree."
7173 elif test "$_libavutil_so" = auto ; then
7174 _libavutil_so=no
7175 cat > $TMPC << EOF
7176 #include <libavutil/common.h>
7177 int main(void) { av_gcd(1,1); return 0; }
7179 if $_pkg_config --exists libavutil ; then
7180 _inc_libavutil=$($_pkg_config --cflags libavutil)
7181 _ld_tmp=$($_pkg_config --libs libavutil)
7182 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7183 && _libavutil_so=yes
7184 elif cc_check -lavutil $_ld_lm ; then
7185 extra_ldflags="$extra_ldflags -lavutil"
7186 _libavutil_so=yes
7187 _res_comment="using libavutil.so, but static libavutil is recommended"
7190 _libavutil=no
7191 def_libavutil='#undef CONFIG_LIBAVUTIL'
7192 def_libavutil_a='#undef CONFIG_LIBAVUTIL_A'
7193 def_libavutil_so='#undef CONFIG_LIBAVUTIL_SO'
7194 test "$_libavutil_a" = yes || test "$_libavutil_so" = yes && _libavutil=yes
7195 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
7196 test "$_libavutil_a" = yes && def_libavutil_a='#define CONFIG_LIBAVUTIL_A 1'
7197 test "$_libavutil_so" = yes && def_libavutil_so='#define CONFIG_LIBAVUTIL_SO 1'
7198 # neither static nor shared libavutil is available, but it is mandatory ...
7199 if test "$_libavutil" = no ; then
7200 die "You need static or shared libavutil, MPlayer will not compile without!"
7202 echores "$_libavutil"
7204 echocheck "FFmpeg libavcodec"
7205 if test "$_libavcodec_a" = auto ; then
7206 _libavcodec_a=no
7207 if test -d libavcodec && test -f libavcodec/utils.c ; then
7208 _libavcodec_a="yes"
7209 _res_comment="static"
7211 elif test "$_libavcodec_so" = auto ; then
7212 _libavcodec_so=no
7213 _res_comment="libavcodec.so is discouraged over static libavcodec"
7214 cat > $TMPC << EOF
7215 #include <libavcodec/avcodec.h>
7216 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
7218 if $_pkg_config --exists libavcodec ; then
7219 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
7220 _ld_tmp=$($_pkg_config --libs libavcodec)
7221 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7222 && _libavcodec_so=yes
7223 elif cc_check -lavcodec $_ld_lm ; then
7224 extra_ldflags="$extra_ldflags -lavcodec"
7225 _libavcodec_so=yes
7226 _res_comment="using libavcodec.so, but static libavcodec is recommended"
7229 _libavcodec=no
7230 def_libavcodec='#undef CONFIG_LIBAVCODEC'
7231 def_libavcodec_a='#undef CONFIG_LIBAVCODEC_A'
7232 def_libavcodec_so='#undef CONFIG_LIBAVCODEC_SO'
7233 test "$_libavcodec_a" = yes || test "$_libavcodec_so" = yes && _libavcodec=yes
7234 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
7235 test "$_libavcodec_a" = yes && def_libavcodec_a='#define CONFIG_LIBAVCODEC_A 1'
7236 test "$_libavcodec_so" = yes && def_libavcodec_so='#define CONFIG_LIBAVCODEC_SO 1'
7237 test "$_libavcodec_mpegaudio_hp" = yes \
7238 && def_libavcodec_mpegaudio_hp='#define CONFIG_MPEGAUDIO_HP 1' \
7239 && mak_libavcodec_mpegaudio_hp='CONFIG_MPEGAUDIO_HP = yes'
7240 if test "$_libavcodec_a" = yes ; then
7241 _codecmodules="libavcodec(internal) $_codecmodules"
7242 elif test "$_libavcodec_so" = yes ; then
7243 _codecmodules="libavcodec.so $_codecmodules"
7244 else
7245 _nocodecmodules="libavcodec $_nocodecmodules"
7247 echores "$_libavcodec"
7249 echocheck "FFmpeg libavformat"
7250 if test "$_libavformat_a" = auto ; then
7251 _libavformat_a=no
7252 if test -d libavformat && test -f libavformat/utils.c ; then
7253 _libavformat_a=yes
7254 _res_comment="static"
7256 elif test "$_libavformat_so" = auto ; then
7257 _libavformat_so=no
7258 cat > $TMPC <<EOF
7259 #include <libavformat/avformat.h>
7260 #include <libavcodec/opt.h>
7261 int main(void) { av_alloc_format_context(); return 0; }
7263 if $_pkg_config --exists libavformat ; then
7264 _inc_libavformat=$($_pkg_config --cflags libavformat)
7265 _ld_tmp=$($_pkg_config --libs libavformat)
7266 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7267 && _libavformat_so=yes
7268 elif cc_check $_ld_lm -lavformat ; then
7269 extra_ldflags="$extra_ldflags -lavformat"
7270 _libavformat_so=yes
7271 _res_comment="using libavformat.so, but static libavformat is recommended"
7274 _libavformat=no
7275 def_libavformat='#undef CONFIG_LIBAVFORMAT'
7276 def_libavformat_a='#undef CONFIG_LIBAVFORMAT_A'
7277 def_libavformat_so='#undef CONFIG_LIBAVFORMAT_SO'
7278 test "$_libavformat_a" = yes || test "$_libavformat_so" = yes && _libavformat=yes
7279 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
7280 test "$_libavformat_a" = yes && def_libavformat_a='#define CONFIG_LIBAVFORMAT_A 1'
7281 test "$_libavformat_so" = yes \
7282 && def_libavformat_so='#define CONFIG_LIBAVFORMAT_SO 1'
7283 echores "$_libavformat"
7285 echocheck "FFmpeg libpostproc"
7286 if test "$_libpostproc_a" = auto ; then
7287 _libpostproc_a=no
7288 if test -d libpostproc && test -f libpostproc/postprocess.h ; then
7289 _libpostproc_a='yes'
7290 _res_comment="static"
7292 elif test "$_libpostproc_so" = auto ; then
7293 _libpostproc_so=no
7294 cat > $TMPC << EOF
7295 #include <inttypes.h>
7296 #include <libpostproc/postprocess.h>
7297 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
7299 if cc_check -lpostproc $_ld_lm ; then
7300 extra_ldflags="$extra_ldflags -lpostproc"
7301 _libpostproc_so=yes
7302 _res_comment="using libpostproc.so, but static libpostproc is recommended"
7305 _libpostproc=no
7306 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
7307 def_libpostproc_a='#undef CONFIG_LIBPOSTPROC_A'
7308 def_libpostproc_so='#undef CONFIG_LIBPOSTPROC_SO'
7309 test "$_libpostproc_a" = yes || test "$_libpostproc_so" = yes && _libpostproc=yes
7310 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
7311 test "$_libpostproc_a" = yes && def_libpostproc_a='#define CONFIG_LIBPOSTPROC_A 1'
7312 test "$_libpostproc_so" = yes \
7313 && def_libpostproc_so='#define CONFIG_LIBPOSTPROC_SO 1'
7314 echores "$_libpostproc"
7316 echocheck "FFmpeg libswscale"
7317 if test "$_libswscale_a" = auto ; then
7318 _libswscale_a=no
7319 if test -d libswscale && test -f libswscale/swscale.h ; then
7320 _libswscale_a='yes'
7321 _res_comment="static"
7323 elif test "$_libswscale_so" = auto ; then
7324 _libswscale_so=no
7325 _res_comment="using libswscale.so, but static libswscale is recommended"
7326 cat > $TMPC << EOF
7327 #include <libswscale/swscale.h>
7328 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7330 if $_pkg_config --exists libswscale ; then
7331 _inc_libswscale=$($_pkg_config --cflags libswscale)
7332 _ld_tmp=$($_pkg_config --libs libswscale)
7333 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7334 && _libswscale_so=yes
7335 elif cc_check -lswscale ; then
7336 extra_ldflags="$extra_ldflags -lswscale"
7337 _libswscale_so=yes
7340 _libswscale=no
7341 def_libswscale='#undef CONFIG_LIBSWSCALE'
7342 def_libswscale_a='#undef CONFIG_LIBSWSCALE_A'
7343 def_libswscale_so='#undef CONFIG_LIBSWSCALE_SO'
7344 test "$_libswscale_a" = yes || test "$_libswscale_so" = yes && _libswscale=yes
7345 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7346 test "$_libswscale_a" = yes && def_libswscale_a='#define CONFIG_LIBSWSCALE_A 1'
7347 test "$_libswscale_so" = yes \
7348 && def_libswscale_so='#define CONFIG_LIBSWSCALE_SO 1'
7349 echores "$_libswscale"
7351 echocheck "libopencore_amr narrowband"
7352 if test "$_libopencore_amrnb" = auto ; then
7353 _libopencore_amrnb=no
7354 cat > $TMPC << EOF
7355 #include <opencore-amrnb/interf_dec.h>
7356 int main(void) { Decoder_Interface_init(); return 0; }
7358 cc_check -lopencore-amrnb && _libopencore_amrnb=yes
7359 if test "$_libavcodec_a" != yes ; then
7360 _libopencore_amrnb=no
7361 _res_comment="libavcodec (static) is required by libopencore_amrnb, sorry"
7364 if test "$_libopencore_amrnb" = yes ; then
7365 _libopencore_amr=yes
7366 extra_ldflags="$extra_ldflags -lopencore-amrnb"
7367 def_libopencore_amrnb='#define CONFIG_LIBOPENCORE_AMRNB 1'
7368 _libavdecoders="$_libavdecoders LIBOPENCORE_AMRNB_DECODER"
7369 _libavencoders="$_libavencoders LIBOPENCORE_AMRNB_ENCODER"
7370 _codecmodules="libopencore_amrnb $_codecmodules"
7371 else
7372 def_libopencore_amrnb='#define CONFIG_LIBOPENCORE_AMRNB 0'
7373 _nocodecmodules="libopencore_amrnb $_nocodecmodules"
7375 echores "$_libopencore_amrnb"
7378 echocheck "libopencore_amr wideband"
7379 if test "$_libopencore_amrwb" = auto ; then
7380 _libopencore_amrwb=no
7381 cat > $TMPC << EOF
7382 #include <opencore-amrwb/dec_if.h>
7383 int main(void) { D_IF_init(); return 0; }
7385 cc_check -lopencore-amrwb && _libopencore_amrwb=yes
7386 if test "$_libavcodec_a" != yes ; then
7387 _libopencore_amrwb=no
7388 _res_comment="libavcodec (static) is required by libopencore_amrwb, sorry"
7391 if test "$_libopencore_amrwb" = yes ; then
7392 _libopencore_amr=yes
7393 extra_ldflags="$extra_ldflags -lopencore-amrwb"
7394 def_libopencore_amrwb='#define CONFIG_LIBOPENCORE_AMRWB 1'
7395 _libavdecoders="$_libavdecoders LIBOPENCORE_AMRWB_DECODER"
7396 _libavencoders="$_libavencoders LIBOPENCORE_AMRWB_DECODER"
7397 _codecmodules="libopencore_amrwb $_codecmodules"
7398 else
7399 def_libopencore_amrwb='#define LIBOPENCORE_AMRWB 0'
7400 _nocodecmodules="libopencore_amrwb $_nocodecmodules"
7402 echores "$_libopencore_amrwb"
7404 echocheck "libdv-0.9.5+"
7405 if test "$_libdv" = auto ; then
7406 _libdv=no
7407 cat > $TMPC <<EOF
7408 #include <libdv/dv.h>
7409 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7411 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7413 if test "$_libdv" = yes ; then
7414 def_libdv='#define CONFIG_LIBDV095 1'
7415 extra_ldflags="$extra_ldflags -ldv"
7416 _codecmodules="libdv $_codecmodules"
7417 else
7418 def_libdv='#undef CONFIG_LIBDV095'
7419 _nocodecmodules="libdv $_nocodecmodules"
7421 echores "$_libdv"
7424 echocheck "Xvid"
7425 if test "$_xvid" = auto ; then
7426 _xvid=no
7427 cat > $TMPC << EOF
7428 #include <xvid.h>
7429 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7431 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7432 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7433 done
7436 if test "$_xvid" = yes ; then
7437 def_xvid='#define CONFIG_XVID4 1'
7438 _codecmodules="xvid $_codecmodules"
7439 else
7440 def_xvid='#undef CONFIG_XVID4'
7441 _nocodecmodules="xvid $_nocodecmodules"
7443 echores "$_xvid"
7445 echocheck "Xvid two pass plugin"
7446 if test "$_xvid" = yes && test "$_xvid_lavc" = auto ; then
7447 cat > $TMPC << EOF
7448 #include <xvid.h>
7449 int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
7451 cc_check && _xvid_lavc=yes
7453 if test "$_xvid_lavc" = yes ; then
7454 def_xvid_lavc='#define CONFIG_LIBXVID 1'
7455 _libavencoders="$_libavencoders LIBXVID_ENCODER"
7456 else
7457 _xvid_lavc=no
7458 def_xvid_lavc='#define CONFIG_LIBXVID 0'
7460 echores "$_xvid_lavc"
7463 echocheck "x264"
7464 if test "$_x264" = auto ; then
7465 cat > $TMPC << EOF
7466 #include <inttypes.h>
7467 #include <x264.h>
7468 #if X264_BUILD < 83
7469 #error We do not support old versions of x264. Get the latest from git.
7470 #endif
7471 int main(void) { x264_encoder_open((void*)0); return 0; }
7473 _x264=no
7474 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7475 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7476 done
7479 if test "$_x264" = yes ; then
7480 def_x264='#define CONFIG_X264 1'
7481 _codecmodules="x264 $_codecmodules"
7482 test "$_x264_lavc" = auto && _x264_lavc=yes
7483 if test "$_x264_lavc" = yes ; then
7484 def_x264_lavc='#define CONFIG_LIBX264 1'
7485 libs_mplayer="$libs_mplayer $_ld_x264"
7486 _libavencoders="$_libavencoders LIBX264_ENCODER"
7488 else
7489 _x264_lavc=no
7490 def_x264='#undef CONFIG_X264'
7491 def_x264_lavc='#define CONFIG_LIBX264 0'
7492 _nocodecmodules="x264 $_nocodecmodules"
7494 _res_comment="in libavcodec: $_x264_lavc"
7495 echores "$_x264"
7498 echocheck "libdirac"
7499 if test "$_libdirac_lavc" = auto; then
7500 _libdirac_lavc=no
7501 if test "$_libavcodec_a" != yes; then
7502 _res_comment="libavcodec (static) is required by libdirac, sorry"
7503 else
7504 cat > $TMPC << EOF
7505 #include <libdirac_encoder/dirac_encoder.h>
7506 #include <libdirac_decoder/dirac_parser.h>
7507 int main(void)
7509 dirac_encoder_context_t enc_ctx;
7510 dirac_decoder_t *dec_handle;
7511 dirac_encoder_context_init(&enc_ctx, VIDEO_FORMAT_SD_576I50);
7512 dec_handle = dirac_decoder_init(0);
7513 if (dec_handle)
7514 dirac_decoder_close(dec_handle);
7515 return 0;
7518 if $_pkg_config --exists dirac ; then
7519 _inc_dirac=$($_pkg_config --silence-errors --cflags dirac)
7520 _ld_dirac=$($_pkg_config --silence-errors --libs dirac)
7521 cc_check $_inc_dirac $_ld_dirac &&
7522 _libdirac_lavc=yes &&
7523 extra_cflags="$extra_cflags $_inc_dirac" &&
7524 extra_ldflags="$extra_ldflags $_ld_dirac"
7528 if test "$_libdirac_lavc" = yes ; then
7529 def_libdirac_lavc='#define CONFIG_LIBDIRAC 1'
7530 _libavencoders="$_libavencoders LIBDIRAC_ENCODER"
7531 _libavdecoders="$_libavdecoders LIBDIRAC_DECODER"
7532 _codecmodules="libdirac $_codecmodules"
7533 else
7534 def_libdirac_lavc='#define CONFIG_LIBDIRAC 0'
7535 _nocodecmodules="libdirac $_nocodecmodules"
7537 echores "$_libdirac_lavc"
7540 echocheck "libschroedinger"
7541 if test "$_libschroedinger_lavc" = auto ; then
7542 _libschroedinger_lavc=no
7543 if test "$_libavcodec_a" != yes; then
7544 _res_comment="libavcodec (static) is required by libschroedinger, sorry"
7545 else
7546 cat > $TMPC << EOF
7547 #include <schroedinger/schro.h>
7548 int main(void) { schro_init(); return 0; }
7550 if $_pkg_config --exists schroedinger-1.0 ; then
7551 _inc_schroedinger=$($_pkg_config --silence-errors --cflags schroedinger-1.0)
7552 _ld_schroedinger=$($_pkg_config --silence-errors --libs schroedinger-1.0)
7553 cc_check $_inc_schroedinger $_ld_schroedinger &&
7554 _libschroedinger_lavc=yes &&
7555 extra_cflags="$extra_cflags $_inc_schroedinger" &&
7556 extra_ldflags="$extra_ldflags $_ld_schroedinger"
7560 if test "$_libschroedinger_lavc" = yes ; then
7561 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 1'
7562 _libavencoders="$_libavencoders LIBSCHROEDINGER_ENCODER"
7563 _libavdecoders="$_libavdecoders LIBSCHROEDINGER_DECODER"
7564 _codecmodules="libschroedinger $_codecmodules"
7565 else
7566 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 0'
7567 _nocodecmodules="libschroedinger $_nocodecmodules"
7569 echores "$_libschroedinger_lavc"
7571 echocheck "libnut"
7572 if test "$_libnut" = auto ; then
7573 cat > $TMPC << EOF
7574 #include <stdio.h>
7575 #include <stdlib.h>
7576 #include <inttypes.h>
7577 #include <libnut.h>
7578 nut_context_tt * nut;
7579 int main(void) { (void)nut_error(0); return 0; }
7581 _libnut=no
7582 cc_check -lnut && _libnut=yes
7585 if test "$_libnut" = yes ; then
7586 def_libnut='#define CONFIG_LIBNUT 1'
7587 extra_ldflags="$extra_ldflags -lnut"
7588 else
7589 def_libnut='#undef CONFIG_LIBNUT'
7591 echores "$_libnut"
7593 #check must be done after libavcodec one
7594 echocheck "zr"
7595 if test "$_zr" = auto ; then
7596 #36067's seem to identify themselves as 36057PQC's, so the line
7597 #below should work for 36067's and 36057's.
7598 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7599 _zr=yes
7600 else
7601 _zr=no
7604 if test "$_zr" = yes ; then
7605 if test "$_libavcodec_a" = yes ; then
7606 def_zr='#define CONFIG_ZR 1'
7607 _vomodules="zr zr2 $_vomodules"
7608 else
7609 _res_comment="libavcodec (static) is required by zr, sorry"
7610 _novomodules="zr $_novomodules"
7611 def_zr='#undef CONFIG_ZR'
7613 else
7614 def_zr='#undef CONFIG_ZR'
7615 _novomodules="zr zr2 $_novomodules"
7617 echores "$_zr"
7619 # mencoder requires (optional) those libs: libmp3lame
7620 if test "$_mencoder" != no ; then
7622 echocheck "libmp3lame"
7623 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7624 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7625 if test "$_mp3lame" = auto ; then
7626 _mp3lame=no
7627 cat > $TMPC <<EOF
7628 #include <lame/lame.h>
7629 int main(void) { lame_version_t lv; (void) lame_init();
7630 get_lame_version_numerical(&lv);
7631 return 0; }
7633 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7635 if test "$_mp3lame" = yes ; then
7636 def_mp3lame="#define CONFIG_MP3LAME 1"
7637 _ld_mp3lame=-lmp3lame
7638 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7639 cat > $TMPC << EOF
7640 #include <lame/lame.h>
7641 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7643 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7644 cat > $TMPC << EOF
7645 #include <lame/lame.h>
7646 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7648 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7649 test "$_mp3lame_lavc" = auto && _mp3lame_lavc=yes
7650 if test "$_mp3lame_lavc" = yes ; then
7651 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 1"
7652 _libavencoders="$_libavencoders LIBMP3LAME_ENCODER"
7653 libs_mplayer="$libs_mplayer $_ld_mp3lame"
7655 else
7656 _mp3lame_lavc=no
7657 def_mp3lame='#undef CONFIG_MP3LAME'
7658 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 0"
7660 _res_comment="in libavcodec: $_mp3lame_lavc"
7661 echores "$_mp3lame"
7663 fi # test "$_mencoder" != no
7665 echocheck "mencoder"
7666 if test "$_mencoder" = yes ; then
7667 def_muxers='#define CONFIG_MUXERS 1'
7668 else
7669 # mpeg1video for vf_lavc, snow for vf_uspp and vf_mcdeint, png for vf_screenshot
7670 _libavencoders="MPEG1VIDEO_ENCODER SNOW_ENCODER"
7671 test "$_zlib" = yes && _libavencoders="$_libavencoders PNG_ENCODER"
7672 _libavmuxers=""
7673 def_muxers='#define CONFIG_MUXERS 0'
7675 echores "$_mencoder"
7678 echocheck "UnRAR executable"
7679 if test "$_unrar_exec" = auto ; then
7680 _unrar_exec="yes"
7681 mingw32 && _unrar_exec="no"
7683 if test "$_unrar_exec" = yes ; then
7684 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7685 else
7686 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7688 echores "$_unrar_exec"
7690 echocheck "TV interface"
7691 if test "$_tv" = yes ; then
7692 def_tv='#define CONFIG_TV 1'
7693 _inputmodules="tv $_inputmodules"
7694 else
7695 _noinputmodules="tv $_noinputmodules"
7696 def_tv='#undef CONFIG_TV'
7698 echores "$_tv"
7701 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7702 echocheck "*BSD BT848 bt8xx header"
7703 _ioctl_bt848_h=no
7704 for file in "machine/ioctl_bt848.h" \
7705 "dev/bktr/ioctl_bt848.h" \
7706 "dev/video/bktr/ioctl_bt848.h" \
7707 "dev/ic/bt8xx.h" ; do
7708 cat > $TMPC <<EOF
7709 #include <sys/types.h>
7710 #include <sys/ioctl.h>
7711 #include <$file>
7712 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7714 if cc_check ; then
7715 _ioctl_bt848_h=yes
7716 _ioctl_bt848_h_name="$file"
7717 break;
7719 done
7720 if test "$_ioctl_bt848_h" = yes ; then
7721 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7722 _res_comment="using $_ioctl_bt848_h_name"
7723 else
7724 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7726 echores "$_ioctl_bt848_h"
7728 echocheck "*BSD ioctl_meteor.h"
7729 _ioctl_meteor_h=no
7730 for file in "machine/ioctl_meteor.h" \
7731 "dev/bktr/ioctl_meteor.h" \
7732 "dev/video/bktr/ioctl_meteor.h" ; do
7733 cat > $TMPC <<EOF
7734 #include <sys/types.h>
7735 #include <$file>
7736 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7738 if cc_check ; then
7739 _ioctl_meteor_h=yes
7740 _ioctl_meteor_h_name="$file"
7741 break;
7743 done
7744 if test "$_ioctl_meteor_h" = yes ; then
7745 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7746 _res_comment="using $_ioctl_meteor_h_name"
7747 else
7748 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7750 echores "$_ioctl_meteor_h"
7752 echocheck "*BSD BrookTree 848 TV interface"
7753 if test "$_tv_bsdbt848" = auto ; then
7754 _tv_bsdbt848=no
7755 if test "$_tv" = yes ; then
7756 cat > $TMPC <<EOF
7757 #include <sys/types.h>
7758 $def_ioctl_meteor_h_name
7759 $def_ioctl_bt848_h_name
7760 #ifdef IOCTL_METEOR_H_NAME
7761 #include IOCTL_METEOR_H_NAME
7762 #endif
7763 #ifdef IOCTL_BT848_H_NAME
7764 #include IOCTL_BT848_H_NAME
7765 #endif
7766 int main(void) {
7767 ioctl(0, METEORSINPUT, 0);
7768 ioctl(0, TVTUNER_GETFREQ, 0);
7769 return 0;
7772 cc_check && _tv_bsdbt848=yes
7775 if test "$_tv_bsdbt848" = yes ; then
7776 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7777 _inputmodules="tv-bsdbt848 $_inputmodules"
7778 else
7779 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7780 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7782 echores "$_tv_bsdbt848"
7783 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7786 echocheck "DirectShow TV interface"
7787 if test "$_tv_dshow" = auto ; then
7788 _tv_dshow=no
7789 if test "$_tv" = yes && win32 ; then
7790 cat > $TMPC <<EOF
7791 #include <ole2.h>
7792 int main(void) {
7793 void* p;
7794 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7795 return 0;
7798 cc_check -lole32 -luuid && _tv_dshow=yes
7801 if test "$_tv_dshow" = yes ; then
7802 _inputmodules="tv-dshow $_inputmodules"
7803 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7804 extra_ldflags="$extra_ldflags -lole32 -luuid"
7805 else
7806 _noinputmodules="tv-dshow $_noinputmodules"
7807 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7809 echores "$_tv_dshow"
7812 echocheck "Video 4 Linux TV interface"
7813 if test "$_tv_v4l1" = auto ; then
7814 _tv_v4l1=no
7815 if test "$_tv" = yes && linux ; then
7816 cat > $TMPC <<EOF
7817 #include <stdlib.h>
7818 #include <linux/videodev.h>
7819 int main(void) { return 0; }
7821 cc_check && _tv_v4l1=yes
7824 if test "$_tv_v4l1" = yes ; then
7825 _audio_input=yes
7826 _tv_v4l=yes
7827 def_tv_v4l='#define CONFIG_TV_V4L 1'
7828 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7829 _inputmodules="tv-v4l $_inputmodules"
7830 else
7831 _noinputmodules="tv-v4l1 $_noinputmodules"
7832 def_tv_v4l='#undef CONFIG_TV_V4L'
7834 echores "$_tv_v4l1"
7837 echocheck "Video 4 Linux 2 TV interface"
7838 if test "$_tv_v4l2" = auto ; then
7839 _tv_v4l2=no
7840 if test "$_tv" = yes && linux ; then
7841 cat > $TMPC <<EOF
7842 #include <stdlib.h>
7843 #include <linux/types.h>
7844 #include <linux/videodev2.h>
7845 int main(void) { return 0; }
7847 cc_check && _tv_v4l2=yes
7850 if test "$_tv_v4l2" = yes ; then
7851 _audio_input=yes
7852 _tv_v4l=yes
7853 def_tv_v4l='#define CONFIG_TV_V4L 1'
7854 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7855 _inputmodules="tv-v4l2 $_inputmodules"
7856 else
7857 _noinputmodules="tv-v4l2 $_noinputmodules"
7858 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7860 echores "$_tv_v4l2"
7863 echocheck "Radio interface"
7864 if test "$_radio" = yes ; then
7865 def_radio='#define CONFIG_RADIO 1'
7866 _inputmodules="radio $_inputmodules"
7867 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7868 _radio_capture=no
7870 if test "$_radio_capture" = yes ; then
7871 _audio_input=yes
7872 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7873 else
7874 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7876 else
7877 _noinputmodules="radio $_noinputmodules"
7878 def_radio='#undef CONFIG_RADIO'
7879 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7880 _radio_capture=no
7882 echores "$_radio"
7883 echocheck "Capture for Radio interface"
7884 echores "$_radio_capture"
7886 echocheck "Video 4 Linux 2 Radio interface"
7887 if test "$_radio_v4l2" = auto ; then
7888 _radio_v4l2=no
7889 if test "$_radio" = yes && linux ; then
7890 cat > $TMPC <<EOF
7891 #include <stdlib.h>
7892 #include <linux/types.h>
7893 #include <linux/videodev2.h>
7894 int main(void) { return 0; }
7896 cc_check && _radio_v4l2=yes
7899 if test "$_radio_v4l2" = yes ; then
7900 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7901 else
7902 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7904 echores "$_radio_v4l2"
7906 echocheck "Video 4 Linux Radio interface"
7907 if test "$_radio_v4l" = auto ; then
7908 _radio_v4l=no
7909 if test "$_radio" = yes && linux ; then
7910 cat > $TMPC <<EOF
7911 #include <stdlib.h>
7912 #include <linux/videodev.h>
7913 int main(void) { return 0; }
7915 cc_check && _radio_v4l=yes
7918 if test "$_radio_v4l" = yes ; then
7919 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7920 else
7921 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7923 echores "$_radio_v4l"
7925 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7926 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7927 echocheck "*BSD BrookTree 848 Radio interface"
7928 _radio_bsdbt848=no
7929 cat > $TMPC <<EOF
7930 #include <sys/types.h>
7931 $def_ioctl_bt848_h_name
7932 #ifdef IOCTL_BT848_H_NAME
7933 #include IOCTL_BT848_H_NAME
7934 #endif
7935 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7937 cc_check && _radio_bsdbt848=yes
7938 echores "$_radio_bsdbt848"
7939 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7941 if test "$_radio_bsdbt848" = yes ; then
7942 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7943 else
7944 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7947 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7948 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7949 die "Radio driver requires BSD BT848, V4L or V4L2!"
7952 echocheck "Video 4 Linux 2 MPEG PVR interface"
7953 if test "$_pvr" = auto ; then
7954 _pvr=no
7955 if test "$_tv_v4l2" = yes && linux ; then
7956 cat > $TMPC <<EOF
7957 #include <stdlib.h>
7958 #include <inttypes.h>
7959 #include <linux/types.h>
7960 #include <linux/videodev2.h>
7961 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7963 cc_check && _pvr=yes
7966 if test "$_pvr" = yes ; then
7967 def_pvr='#define CONFIG_PVR 1'
7968 _inputmodules="pvr $_inputmodules"
7969 else
7970 _noinputmodules="pvr $_noinputmodules"
7971 def_pvr='#undef CONFIG_PVR'
7973 echores "$_pvr"
7976 echocheck "ftp"
7977 if ! beos && test "$_ftp" = yes ; then
7978 def_ftp='#define CONFIG_FTP 1'
7979 _inputmodules="ftp $_inputmodules"
7980 else
7981 _noinputmodules="ftp $_noinputmodules"
7982 def_ftp='#undef CONFIG_FTP'
7984 echores "$_ftp"
7986 echocheck "vstream client"
7987 if test "$_vstream" = auto ; then
7988 _vstream=no
7989 cat > $TMPC <<EOF
7990 #include <vstream-client.h>
7991 void vstream_error(const char *format, ... ) {}
7992 int main(void) { vstream_start(); return 0; }
7994 cc_check -lvstream-client && _vstream=yes
7996 if test "$_vstream" = yes ; then
7997 def_vstream='#define CONFIG_VSTREAM 1'
7998 _inputmodules="vstream $_inputmodules"
7999 extra_ldflags="$extra_ldflags -lvstream-client"
8000 else
8001 _noinputmodules="vstream $_noinputmodules"
8002 def_vstream='#undef CONFIG_VSTREAM'
8004 echores "$_vstream"
8007 echocheck "OSD menu"
8008 if test "$_menu" = yes ; then
8009 def_menu='#define CONFIG_MENU 1'
8010 test $_dvbin = "yes" && _menu_dvbin=yes
8011 else
8012 def_menu='#undef CONFIG_MENU'
8013 _menu_dvbin=no
8015 echores "$_menu"
8018 echocheck "Subtitles sorting"
8019 if test "$_sortsub" = yes ; then
8020 def_sortsub='#define CONFIG_SORTSUB 1'
8021 else
8022 def_sortsub='#undef CONFIG_SORTSUB'
8024 echores "$_sortsub"
8027 echocheck "XMMS inputplugin support"
8028 if test "$_xmms" = yes ; then
8029 if ( xmms-config --version ) >/dev/null 2>&1 ; then
8030 _xmmsplugindir=$(xmms-config --input-plugin-dir)
8031 _xmmslibdir=$(xmms-config --exec-prefix)/lib
8032 else
8033 _xmmsplugindir=/usr/lib/xmms/Input
8034 _xmmslibdir=/usr/lib
8037 def_xmms='#define CONFIG_XMMS 1'
8038 if darwin ; then
8039 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
8040 else
8041 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
8043 else
8044 def_xmms='#undef CONFIG_XMMS'
8046 echores "$_xmms"
8049 # --------------- GUI specific tests begin -------------------
8050 echocheck "GUI"
8051 echo "$_gui"
8052 if test "$_gui" = yes ; then
8054 # Required libraries
8055 if test "$_libavcodec" != yes ||
8056 ! echo $_libavdecoders | grep -q PNG_DECODER ; then
8057 die "The GUI requires libavcodec with PNG support (needs zlib)."
8059 test "$_freetype" = no && test "$_bitmap_font" = no && \
8060 die "The GUI requires either FreeType or bitmap font support."
8061 if ! win32 ; then
8062 _gui_gtk=yes
8063 test "$_x11" != yes && die "X11 support required for GUI compilation."
8065 echocheck "XShape extension"
8066 if test "$_xshape" = auto ; then
8067 _xshape=no
8068 cat > $TMPC << EOF
8069 #include <X11/Xlib.h>
8070 #include <X11/Xproto.h>
8071 #include <X11/Xutil.h>
8072 #include <X11/extensions/shape.h>
8073 #include <stdlib.h>
8074 int main(void) {
8075 char *name = ":0.0";
8076 Display *wsDisplay;
8077 int exitvar = 0;
8078 int eventbase, errorbase;
8079 if (getenv("DISPLAY"))
8080 name=getenv("DISPLAY");
8081 wsDisplay=XOpenDisplay(name);
8082 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase))
8083 exitvar=1;
8084 XCloseDisplay(wsDisplay);
8085 return exitvar;
8088 cc_check -lXext && _xshape=yes
8090 if test "$_xshape" = yes ; then
8091 def_xshape='#define CONFIG_XSHAPE 1'
8092 else
8093 die "The GUI requires the X11 extension XShape (which was not found)."
8095 echores "$_xshape"
8097 #Check for GTK
8098 if test "$_gtk1" = no ; then
8099 #Check for GTK2 :
8100 echocheck "GTK+ version"
8102 if $_pkg_config gtk+-2.0 --exists ; then
8103 _gtk=$($_pkg_config gtk+-2.0 --modversion 2>/dev/null)
8104 extra_cflags="$extra_cflags $($_pkg_config gtk+-2.0 --cflags 2>/dev/null)"
8105 libs_mplayer="$libs_mplayer $($_pkg_config gtk+-2.0 --libs 2>/dev/null)"
8106 echores "$_gtk"
8108 # Check for GLIB2
8109 if $_pkg_config glib-2.0 --exists ; then
8110 echocheck "glib version"
8111 _glib=$($_pkg_config glib-2.0 --modversion 2>/dev/null)
8112 libs_mplayer="$libs_mplayer $($_pkg_config glib-2.0 --libs 2>/dev/null)"
8113 echores "$_glib"
8115 def_gui='#define CONFIG_GUI 1'
8116 def_gtk2='#define CONFIG_GTK2 1'
8117 else
8118 _gtk1=yes
8119 echo "GLIB-2 devel packages were not found, trying GTK 1.2"
8121 else
8122 echo "GTK-2 devel packages were not found, trying GTK 1.2"
8123 _gtk1=yes
8127 if test "$_gtk1" = yes ; then
8128 # Check for old GTK (1.2.x)
8129 echocheck "GTK version"
8130 if test -z "$_gtkconfig" ; then
8131 if ( gtk-config --version ) >/dev/null 2>&1 ; then
8132 _gtkconfig="gtk-config"
8133 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
8134 _gtkconfig="gtk12-config"
8135 else
8136 die "The GUI requires GTK devel packages (which were not found)."
8139 _gtk=$($_gtkconfig --version 2>&1)
8140 extra_cflags="$extra_cflags $($_gtkconfig --cflags 2>&1)"
8141 libs_mplayer="$libs_mplayer $($_gtkconfig --libs 2>&1)"
8142 echores "$_gtk (using $_gtkconfig)"
8144 # Check for GLIB
8145 echocheck "glib version"
8146 if test -z "$_glibconfig" ; then
8147 if ( glib-config --version ) >/dev/null 2>&1 ; then
8148 _glibconfig="glib-config"
8149 elif ( glib12-config --version ) >/dev/null 2>&1 ; then
8150 _glibconfig="glib12-config"
8151 else
8152 die "The GUI requires GLIB devel packages (which were not found)"
8155 _glib=$($_glibconfig --version 2>&1)
8156 libs_mplayer="$libs_mplayer $($_glibconfig --libs 2>&1)"
8157 echores "$_glib (using $_glibconfig)"
8159 def_gui='#define CONFIG_GUI 1'
8160 def_gtk2='#undef CONFIG_GTK2'
8163 else #if ! win32
8164 _gui_win32=yes
8165 libs_mplayer="$libs_mplayer -lcomdlg32 -lcomctl32 -lshell32 -lkernel32"
8166 def_gui='#define CONFIG_GUI 1'
8167 def_gtk2='#undef CONFIG_GTK2'
8168 fi #if ! win32
8170 else #if test "$_gui"
8171 def_gui='#undef CONFIG_GUI'
8172 def_gtk2='#undef CONFIG_GTK2'
8173 fi #if test "$_gui"
8174 # --------------- GUI specific tests end -------------------
8177 if test "$_charset" != "noconv" ; then
8178 def_charset="#define MSG_CHARSET \"$_charset\""
8179 else
8180 def_charset="#undef MSG_CHARSET"
8181 _charset="UTF-8"
8184 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
8185 echocheck "iconv program"
8186 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
8187 if test "$?" -ne 0 ; then
8188 echores "no"
8189 echo "No working iconv program found, use "
8190 echo "--charset=UTF-8 to continue anyway."
8191 echo "If you also have problems with iconv library functions use --charset=noconv."
8192 echo "Messages in the GTK-2 interface will be broken then."
8193 exit 1
8194 else
8195 echores "yes"
8199 #############################################################################
8201 echocheck "automatic gdb attach"
8202 if test "$_crash_debug" = yes ; then
8203 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
8204 else
8205 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
8206 _crash_debug=no
8208 echores "$_crash_debug"
8210 echocheck "compiler support for noexecstack"
8211 cat > $TMPC <<EOF
8212 int main(void) { return 0; }
8214 if cc_check -Wl,-z,noexecstack ; then
8215 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
8216 echores "yes"
8217 else
8218 echores "no"
8221 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
8222 if cc_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
8223 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
8224 echores "yes"
8225 else
8226 echores "no"
8230 # Dynamic linking flags
8231 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
8232 _ld_dl_dynamic=''
8233 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
8234 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
8235 _ld_dl_dynamic='-rdynamic'
8238 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
8239 bsdos && extra_ldflags="$extra_ldflags -ldvd"
8240 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
8242 def_debug='#undef MP_DEBUG'
8243 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
8246 echocheck "joystick"
8247 def_joystick='#undef CONFIG_JOYSTICK'
8248 if test "$_joystick" = yes ; then
8249 if linux ; then
8250 # TODO add some check
8251 def_joystick='#define CONFIG_JOYSTICK 1'
8252 else
8253 _joystick="no"
8254 _res_comment="unsupported under $system_name"
8257 echores "$_joystick"
8259 echocheck "lirc"
8260 if test "$_lirc" = auto ; then
8261 _lirc=no
8262 cat > $TMPC <<EOF
8263 #include <lirc/lirc_client.h>
8264 int main(void) { return 0; }
8266 cc_check -llirc_client && _lirc=yes
8268 if test "$_lirc" = yes ; then
8269 def_lirc='#define CONFIG_LIRC 1'
8270 libs_mplayer="$libs_mplayer -llirc_client"
8271 else
8272 def_lirc='#undef CONFIG_LIRC'
8274 echores "$_lirc"
8276 echocheck "lircc"
8277 if test "$_lircc" = auto ; then
8278 _lircc=no
8279 cat > $TMPC <<EOF
8280 #include <lirc/lircc.h>
8281 int main(void) { return 0; }
8283 cc_check -llircc && _lircc=yes
8285 if test "$_lircc" = yes ; then
8286 def_lircc='#define CONFIG_LIRCC 1'
8287 libs_mplayer="$libs_mplayer -llircc"
8288 else
8289 def_lircc='#undef CONFIG_LIRCC'
8291 echores "$_lircc"
8293 if arm; then
8294 # Detect maemo development platform libraries availability (http://www.maemo.org),
8295 # they are used when run on Nokia 770|8x0
8296 echocheck "maemo (Nokia 770|8x0)"
8297 if test "$_maemo" = auto ; then
8298 _maemo=no
8299 cat > $TMPC << EOF
8300 #include <libosso.h>
8301 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
8303 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
8305 if test "$_maemo" = yes ; then
8306 def_maemo='#define CONFIG_MAEMO 1'
8307 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
8308 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
8309 else
8310 def_maemo='#undef CONFIG_MAEMO'
8312 echores "$_maemo"
8315 #############################################################################
8317 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
8318 # the OMF format needs to come after the 'extern symbol prefix' check, which
8319 # uses nm.
8320 if os2 ; then
8321 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
8324 # linker paths should be the same for mencoder and mplayer
8325 _ld_tmp=""
8326 for I in $libs_mplayer ; do
8327 _tmp=$(echo $I | sed -e 's/^-L.*$//')
8328 if test -z "$_tmp" ; then
8329 extra_ldflags="$extra_ldflags $I"
8330 else
8331 _ld_tmp="$_ld_tmp $I"
8333 done
8334 libs_mplayer=$_ld_tmp
8337 #############################################################################
8338 # 64 bit file offsets?
8339 if test "$_largefiles" = yes || freebsd ; then
8340 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
8341 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
8342 # dvdread support requires this (for off64_t)
8343 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
8347 CXXFLAGS=" $CFLAGS -D__STDC_LIMIT_MACROS"
8349 # This must be the last test to be performed. Any other tests following it
8350 # could fail due to linker errors. libdvdnavmini is intentionally not linked
8351 # against libdvdread (to permit MPlayer to use its own copy of the library).
8352 # So any compilation using the flags added here but not linking against
8353 # libdvdread can fail.
8354 echocheck "DVD support (libdvdnav)"
8355 dvdnav_internal=no
8356 if test "$_dvdnav" = auto ; then
8357 if test "$_dvdread_internal" = yes ; then
8358 _dvdnav=yes
8359 dvdnav_internal=yes
8360 _res_comment="internal"
8361 else
8362 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
8365 if test "$_dvdnav" = auto ; then
8366 cat > $TMPC <<EOF
8367 #include <inttypes.h>
8368 #include <dvdnav/dvdnav.h>
8369 int main(void) { dvdnav_t *dvd=0; return 0; }
8371 _dvdnav=no
8372 _dvdnavdir=$($_dvdnavconfig --cflags)
8373 _dvdnavlibs=$($_dvdnavconfig --libs)
8374 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
8376 if test "$_dvdnav" = yes ; then
8377 _largefiles=yes
8378 def_dvdnav='#define CONFIG_DVDNAV 1'
8379 if test "$dvdnav_internal" = yes ; then
8380 cflags_libdvdnav="-Ilibdvdnav"
8381 _inputmodules="dvdnav(internal) $_inputmodules"
8382 else
8383 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
8384 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
8385 _inputmodules="dvdnav $_inputmodules"
8387 else
8388 def_dvdnav='#undef CONFIG_DVDNAV'
8389 _noinputmodules="dvdnav $_noinputmodules"
8391 echores "$_dvdnav"
8393 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
8394 # Read dvdnav comment above.
8396 #############################################################################
8397 echo "Creating config.mak"
8398 cat > config.mak << EOF
8399 # -------- Generated by configure -----------
8401 # Ensure that locale settings do not interfere with shell commands.
8402 export LC_ALL = C
8404 CONFIGURATION = $_configuration
8406 CHARSET = $_charset
8407 DOC_LANGS = $language_doc
8408 DOC_LANG_ALL = $doc_lang_all
8409 MAN_LANGS = $language_man
8410 MAN_LANG_ALL = $man_lang_all
8412 prefix = \$(DESTDIR)$_prefix
8413 BINDIR = \$(DESTDIR)$_bindir
8414 DATADIR = \$(DESTDIR)$_datadir
8415 LIBDIR = \$(DESTDIR)$_libdir
8416 MANDIR = \$(DESTDIR)$_mandir
8417 CONFDIR = \$(DESTDIR)$_confdir
8419 AR = $_ar
8420 AS = $_cc
8421 CC = $_cc
8422 CXX = $_cc
8423 HOST_CC = $_host_cc
8424 YASM = $_yasm
8425 INSTALL = $_install
8426 INSTALLSTRIP = $_install_strip
8427 RANLIB = $_ranlib
8428 WINDRES = $_windres
8430 CFLAGS = $CFLAGS $extra_cflags
8431 ASFLAGS = $CFLAGS $extra_cflags
8432 OPTFLAGS = $CFLAGS $extra_cflags
8433 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
8434 CFLAGS_DHAHELPER = $cflags_dhahelper
8435 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
8436 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
8437 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
8438 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
8439 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
8440 CFLAGS_STACKREALIGN = $cflags_stackrealign
8441 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
8442 CFLAGS_TREMOR_LOW = $cflags_tremor_low
8443 YASMFLAGS = $YASMFLAGS
8445 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
8446 EXTRALIBS_MPLAYER = $libs_mplayer
8447 EXTRALIBS_MENCODER = $libs_mencoder
8449 DEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.h,\$^) | sed "s,[0-9a-z._-]*: \(\$(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\\2&,"
8451 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 &,"
8452 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 &,"
8454 GETCH = $_getch
8455 HELP_FILE = $_mp_help
8456 TIMER = $_timer
8458 EXESUF = $_exesuf
8459 EXESUFS_ALL = .exe
8461 $_target_arch
8462 $_target_subarch
8463 $(echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/')
8465 MENCODER = $_mencoder
8466 MPLAYER = $_mplayer
8468 NEED_GETTIMEOFDAY = $_need_gettimeofday
8469 NEED_GLOB = $_need_glob
8470 NEED_MMAP = $_need_mmap
8471 NEED_SETENV = $_need_setenv
8472 NEED_SHMEM = $_need_shmem
8473 NEED_STRSEP = $_need_strsep
8474 NEED_SWAB = $_need_swab
8475 NEED_VSSCANF = $_need_vsscanf
8477 # features
8478 3DFX = $_3dfx
8479 AA = $_aa
8480 ALSA1X = $_alsa1x
8481 ALSA9 = $_alsa9
8482 ALSA5 = $_alsa5
8483 APPLE_IR = $_apple_ir
8484 APPLE_REMOTE = $_apple_remote
8485 ARTS = $_arts
8486 AUDIO_INPUT = $_audio_input
8487 BITMAP_FONT = $_bitmap_font
8488 BL = $_bl
8489 CACA = $_caca
8490 CDDA = $_cdda
8491 CDDB = $_cddb
8492 COREAUDIO = $_coreaudio
8493 COREVIDEO = $_corevideo
8494 DART = $_dart
8495 DFBMGA = $_dfbmga
8496 DGA = $_dga
8497 DIRECT3D = $_direct3d
8498 DIRECTFB = $_directfb
8499 DIRECTX = $_directx
8500 DVBIN = $_dvbin
8501 DVDNAV = $_dvdnav
8502 DVDNAV_INTERNAL = $dvdnav_internal
8503 DVDREAD = $_dvdread
8504 DVDREAD_INTERNAL = $_dvdread_internal
8505 DXR2 = $_dxr2
8506 DXR3 = $_dxr3
8507 ESD = $_esd
8508 FAAC=$_faac
8509 FAAD = $_faad
8510 FAAD_INTERNAL = $_faad_internal
8511 FASTMEMCPY = $_fastmemcpy
8512 $mak_hardcoded_tables
8513 $mak_libavcodec_mpegaudio_hp
8514 FBDEV = $_fbdev
8515 FREETYPE = $_freetype
8516 FTP = $_ftp
8517 GIF = $_gif
8518 GGI = $_ggi
8519 GL = $_gl
8520 GL_WIN32 = $_gl_win32
8521 GL_X11 = $_gl_x11
8522 MATRIXVIEW = $matrixview
8523 GUI = $_gui
8524 GUI_GTK = $_gui_gtk
8525 GUI_WIN32 = $_gui_win32
8526 HAVE_POSIX_SELECT = $_posix_select
8527 HAVE_SYS_MMAN_H = $_mman
8528 IVTV = $_ivtv
8529 JACK = $_jack
8530 JOYSTICK = $_joystick
8531 JPEG = $_jpeg
8532 KVA = $_kva
8533 LADSPA = $_ladspa
8534 LIBA52 = $_liba52
8535 LIBA52_INTERNAL = $_liba52_internal
8536 LIBASS = $_ass
8537 LIBASS_INTERNAL = $ass_internal
8538 LIBBS2B = $_libbs2b
8539 LIBDCA = $_libdca
8540 LIBDV = $_libdv
8541 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
8542 LIBLZO = $_liblzo
8543 LIBMAD = $_mad
8544 LIBMENU = $_menu
8545 LIBMENU_DVBIN = $_menu_dvbin
8546 LIBMPEG2 = $_libmpeg2
8547 LIBNEMESI = $_nemesi
8548 LIBNUT = $_libnut
8549 LIBSMBCLIENT = $_smb
8550 LIBTHEORA = $_theora
8551 LIRC = $_lirc
8552 LIVE555 = $_live
8553 MACOSX_BUNDLE = $_macosx_bundle
8554 MACOSX_FINDER = $_macosx_finder
8555 MD5SUM = $_md5sum
8556 MGA = $_mga
8557 MNG = $_mng
8558 MP3LAME = $_mp3lame
8559 MP3LIB = $_mp3lib
8560 MUSEPACK = $_musepack
8561 NAS = $_nas
8562 NATIVE_RTSP = $_native_rtsp
8563 NETWORK = $_network
8564 OPENAL = $_openal
8565 OSS = $_ossaudio
8566 PE_EXECUTABLE = $_pe_executable
8567 PNG = $_png
8568 PNM = $_pnm
8569 PRIORITY = $_priority
8570 PULSE = $_pulse
8571 PVR = $_pvr
8572 QTX_CODECS = $_qtx
8573 QTX_CODECS_WIN32 = $_qtx_codecs_win32
8574 QTX_EMULATION = $_qtx_emulation
8575 QUARTZ = $_quartz
8576 RADIO=$_radio
8577 RADIO_CAPTURE=$_radio_capture
8578 REAL_CODECS = $_real
8579 S3FB = $_s3fb
8580 SDL = $_sdl
8581 SPEEX = $_speex
8582 STREAM_CACHE = $_stream_cache
8583 SGIAUDIO = $_sgiaudio
8584 SUNAUDIO = $_sunaudio
8585 SVGA = $_svga
8586 TDFXFB = $_tdfxfb
8587 TDFXVID = $_tdfxvid
8588 TGA = $_tga
8589 TOOLAME=$_toolame
8590 TREMOR_INTERNAL = $_tremor_internal
8591 TV = $_tv
8592 TV_BSDBT848 = $_tv_bsdbt848
8593 TV_DSHOW = $_tv_dshow
8594 TV_V4L = $_tv_v4l
8595 TV_V4L1 = $_tv_v4l1
8596 TV_V4L2 = $_tv_v4l2
8597 TWOLAME=$_twolame
8598 UNRAR_EXEC = $_unrar_exec
8599 V4L2 = $_v4l2
8600 VCD = $_vcd
8601 VDPAU = $_vdpau
8602 VESA = $_vesa
8603 VIDIX = $_vidix
8604 VIDIX_PCIDB = $_vidix_pcidb_val
8605 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8606 VIDIX_IVTV=$_vidix_drv_ivtv
8607 VIDIX_MACH64=$_vidix_drv_mach64
8608 VIDIX_MGA=$_vidix_drv_mga
8609 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8610 VIDIX_NVIDIA=$_vidix_drv_nvidia
8611 VIDIX_PM2=$_vidix_drv_pm2
8612 VIDIX_PM3=$_vidix_drv_pm3
8613 VIDIX_RADEON=$_vidix_drv_radeon
8614 VIDIX_RAGE128=$_vidix_drv_rage128
8615 VIDIX_S3=$_vidix_drv_s3
8616 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8617 VIDIX_SIS=$_vidix_drv_sis
8618 VIDIX_UNICHROME=$_vidix_drv_unichrome
8619 VORBIS = $_vorbis
8620 VSTREAM = $_vstream
8621 WII = $_wii
8622 WIN32DLL = $_win32dll
8623 WIN32WAVEOUT = $_win32waveout
8624 WIN32_EMULATION = $_win32_emulation
8625 WINVIDIX = $winvidix
8626 X11 = $_x11
8627 X264 = $_x264
8628 XANIM_CODECS = $_xanim
8629 XMGA = $_xmga
8630 XMMS_PLUGINS = $_xmms
8631 XV = $_xv
8632 XVID4 = $_xvid
8633 XVIDIX = $xvidix
8634 XVMC = $_xvmc
8635 XVR100 = $_xvr100
8636 YUV4MPEG = $_yuv4mpeg
8637 ZR = $_zr
8639 # FFmpeg
8640 LIBAVUTIL = $_libavutil
8641 LIBAVUTIL_A = $_libavutil_a
8642 LIBAVUTIL_SO = $_libavutil_so
8643 LIBAVCODEC = $_libavcodec
8644 LIBAVCODEC_A = $_libavcodec_a
8645 LIBAVCODEC_SO = $_libavcodec_so
8646 LIBAVFORMAT = $_libavformat
8647 LIBAVFORMAT_A = $_libavformat_a
8648 LIBAVFORMAT_SO = $_libavformat_so
8649 LIBPOSTPROC = $_libpostproc
8650 LIBPOSTPROC_A = $_libpostproc_a
8651 LIBPOSTPROC_SO = $_libpostproc_so
8652 LIBSWSCALE = $_libswscale
8653 LIBSWSCALE_A = $_libswscale_a
8654 LIBSWSCALE_SO = $_libswscale_so
8656 HOSTCC=\$(HOST_CC)
8657 HOSTCFLAGS=-D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 -O3
8658 HOSTLIBS=-lm
8659 CC_O=-o \$@
8660 LD=gcc
8661 CONFIG_STATIC=yes
8662 SRC_PATH=..
8663 BUILD_ROOT=..
8664 LIBPREF=lib
8665 LIBSUF=.a
8666 LIBNAME=\$(LIBPREF)\$(NAME)\$(LIBSUF)
8667 FULLNAME=\$(NAME)\$(BUILDSUF)
8669 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8670 CONFIG_AANDCT=yes
8671 CONFIG_FFT=yes
8672 CONFIG_FFT_MMX=$fft_mmx
8673 CONFIG_GOLOMB=yes
8674 CONFIG_LPC=yes
8675 CONFIG_MDCT=yes
8676 CONFIG_RDFT=yes
8678 CONFIG_BZLIB=$bzlib
8679 CONFIG_ENCODERS=yes
8680 CONFIG_GPL=yes
8681 CONFIG_LIBDIRAC_DECODER=$_libdirac_lavc
8682 CONFIG_LIBDIRAC_ENCODER=$_libdirac_lavc
8683 CONFIG_LIBFAAC_ENCODER=$_faac_lavc
8684 CONFIG_LIBMP3LAME_ENCODER=$_mp3lame_lavc
8685 CONFIG_LIBOPENCORE_AMRNB_DECODER=$_libopencore_amrnb
8686 CONFIG_LIBOPENCORE_AMRNB_ENCODER=$_libopencore_amrnb
8687 CONFIG_LIBOPENCORE_AMRWB_DECODER=$_libopencore_amrwb
8688 OCNFIG_LIBOPENJPEG_DECODER = $libopenjpeg
8689 OCNFIG_LIBOPENJPEG_ENCODER = $libopenjpeg
8690 CONFIG_LIBSCHROEDINGER_DECODER=$_libschroedinger_lavc
8691 CONFIG_LIBSCHROEDINGER_ENCODER=$_libschroedinger_lavc
8692 CONFIG_LIBVORBIS_ENCODER=$_libvorbis
8693 CONFIG_LIBX264_ENCODER=$_x264_lavc
8694 CONFIG_LIBXVID_ENCODER=$_xvid_lavc
8695 CONFIG_MLIB = $_mlib
8696 CONFIG_MUXERS=$_mencoder
8697 CONFIG_POSTPROC = yes
8698 # Prevent building libavcodec/imgresample.c with conflicting symbols
8699 CONFIG_SWSCALE=yes
8700 CONFIG_VDPAU=$_vdpau
8701 CONFIG_XVMC=$_xvmc
8702 CONFIG_ZLIB=$_zlib
8704 HAVE_PTHREADS = $_pthreads
8705 HAVE_SHM = $_shm
8706 HAVE_W32THREADS = $_w32threads
8707 HAVE_YASM = $_have_yasm
8709 $(echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8710 $(echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8711 $(echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8712 $(echo $_libavdemuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8713 $(echo $_libavmuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8714 $(echo $_libavprotocols | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8715 $(echo $_libavbsfs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8718 #############################################################################
8720 ff_config_enable () {
8721 _nprefix=$3;
8722 test -z "$_nprefix" && _nprefix='CONFIG'
8723 for part in $1; do
8724 if $(echo $2 | grep -q -E "(^| )$part($| )"); then
8725 echo "#define ${_nprefix}_$part 1"
8726 else
8727 echo "#define ${_nprefix}_$part 0"
8729 done
8732 echo "Creating config.h"
8733 cat > $TMPH << EOF
8734 /*----------------------------------------------------------------------------
8735 ** This file has been automatically generated by configure any changes in it
8736 ** will be lost when you run configure again.
8737 ** Instead of modifying definitions here, use the --enable/--disable options
8738 ** of the configure script! See ./configure --help for details.
8739 *---------------------------------------------------------------------------*/
8741 #ifndef MPLAYER_CONFIG_H
8742 #define MPLAYER_CONFIG_H
8744 /* Undefine this if you do not want to select mono audio (left or right)
8745 with a stereo MPEG layer 2/3 audio stream. The command line option
8746 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8747 right-only), with 0 being the default.
8749 #define CONFIG_FAKE_MONO 1
8751 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8752 #define MAX_OUTBURST 65536
8754 /* set up audio OUTBURST. Do not change this! */
8755 #define OUTBURST 512
8757 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8758 #undef FAST_OSD
8759 #undef FAST_OSD_TABLE
8761 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8762 #define MPEG12_POSTPROC 1
8763 #define ATTRIBUTE_ALIGNED_MAX 16
8767 #define CONFIGURATION "$_configuration"
8769 #define MPLAYER_DATADIR "$_datadir"
8770 #define MPLAYER_CONFDIR "$_confdir"
8771 #define MPLAYER_LIBDIR "$_libdir"
8773 /* definitions needed by included libraries */
8774 #define HAVE_INTTYPES_H 1
8775 /* libmpeg2 + FFmpeg */
8776 $def_fast_inttypes
8777 /* libdvdcss */
8778 #define HAVE_ERRNO_H 1
8779 /* libdvdcss + libdvdread */
8780 #define HAVE_LIMITS_H 1
8781 /* libdvdcss + libfaad2 */
8782 #define HAVE_UNISTD_H 1
8783 /* libfaad2 + libdvdread */
8784 #define STDC_HEADERS 1
8785 #define HAVE_MEMCPY 1
8786 /* libfaad2 */
8787 #define HAVE_STRING_H 1
8788 #define HAVE_STRINGS_H 1
8789 #define HAVE_SYS_STAT_H 1
8790 #define HAVE_SYS_TYPES_H 1
8791 /* libdvdnav */
8792 #define READ_CACHE_TRACE 0
8793 /* libdvdread */
8794 #define HAVE_DLFCN_H 1
8795 $def_dvdcss
8798 /* system headers */
8799 $def_alloca_h
8800 $def_alsa_asoundlib_h
8801 $def_altivec_h
8802 $def_malloc_h
8803 $def_mman_h
8804 $def_mman_has_map_failed
8805 $def_soundcard_h
8806 $def_sys_asoundlib_h
8807 $def_sys_soundcard_h
8808 $def_sys_sysinfo_h
8809 $def_termios_h
8810 $def_termios_sys_h
8811 $def_winsock2_h
8814 /* system functions */
8815 $def_exp2
8816 $def_exp2f
8817 $def_gethostbyname2
8818 $def_gettimeofday
8819 $def_glob
8820 $def_langinfo
8821 $def_llrint
8822 $def_log2
8823 $def_log2f
8824 $def_lrint
8825 $def_lrintf
8826 $def_map_memalign
8827 $def_memalign
8828 $def_nanosleep
8829 $def_posix_select
8830 $def_round
8831 $def_roundf
8832 $def_select
8833 $def_setenv
8834 $def_shm
8835 $def_strsep
8836 $def_swab
8837 $def_sysi86
8838 $def_sysi86_iv
8839 $def_termcap
8840 $def_termios
8841 $def_truncf
8842 $def_vsscanf
8845 /* system-specific features */
8846 $def_asmalign_pot
8847 $def_builtin_expect
8848 $def_dl
8849 $def_extern_asm
8850 $def_extern_prefix
8851 $def_iconv
8852 $def_kstat
8853 $def_macosx_bundle
8854 $def_macosx_finder
8855 $def_maemo
8856 $def_named_asm_args
8857 $def_priority
8858 $def_quicktime
8859 $def_restrict_keyword
8860 $def_rtc
8861 $def_unrar_exec
8864 /* configurable options */
8865 $def_charset
8866 $def_crash_debug
8867 $def_debug
8868 $def_dynamic_plugins
8869 $def_fastmemcpy
8870 $def_hardcoded_tables
8871 $def_menu
8872 $def_runtime_cpudetection
8873 $def_sighandler
8874 $def_sortsub
8875 $def_stream_cache
8876 $def_pthread_cache
8879 /* CPU stuff */
8880 #define __CPU__ $iproc
8881 $def_words_endian
8882 $def_bigendian
8883 $(ff_config_enable "$_arch_all" "$_arch" "ARCH")
8884 $(ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE")
8887 /* DVD/VCD/CD */
8888 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8889 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8890 $def_bsdi_dvd
8891 $def_cddb
8892 $def_cdio
8893 $def_cdparanoia
8894 $def_cdrom
8895 $def_dvd
8896 $def_dvd_bsd
8897 $def_dvd_darwin
8898 $def_dvd_linux
8899 $def_dvd_openbsd
8900 $def_dvdio
8901 $def_dvdnav
8902 $def_dvdread
8903 $def_hpux_scsi_h
8904 $def_libcdio
8905 $def_sol_scsi_h
8906 $def_vcd
8909 /* codec libraries */
8910 $def_faac
8911 $def_faad
8912 $def_faad_internal
8913 $def_liba52
8914 $def_liba52_internal
8915 $def_libdca
8916 $def_libdv
8917 $def_liblzo
8918 $def_libmpeg2
8919 $def_mad
8920 $def_mp3lame
8921 $def_mp3lame_preset
8922 $def_mp3lame_preset_medium
8923 $def_mp3lib
8924 $def_musepack
8925 $def_speex
8926 $def_theora
8927 $def_toolame
8928 $def_tremor
8929 $def_twolame
8930 $def_vorbis
8931 $def_x264
8932 $def_xvid
8933 $def_zlib
8935 $def_libnut
8938 /* binary codecs */
8939 $def_qtx
8940 $def_qtx_win32
8941 $def_real
8942 $def_real_path
8943 $def_win32_loader
8944 $def_win32dll
8945 #define WIN32_PATH "$_win32codecsdir"
8946 $def_xanim
8947 $def_xanim_path
8948 $def_xmms
8949 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8952 /* GUI */
8953 $def_gtk2
8954 $def_gui
8955 $def_xshape
8958 /* Audio output drivers */
8959 $def_alsa
8960 $def_alsa1x
8961 $def_alsa5
8962 $def_alsa9
8963 $def_arts
8964 $def_coreaudio
8965 $def_dart
8966 $def_esd
8967 $def_esd_latency
8968 $def_jack
8969 $def_nas
8970 $def_openal
8971 $def_openal_h
8972 $def_ossaudio
8973 $def_ossaudio_devdsp
8974 $def_ossaudio_devmixer
8975 $def_pulse
8976 $def_sgiaudio
8977 $def_sunaudio
8978 $def_win32waveout
8980 $def_ladspa
8981 $def_libbs2b
8984 /* input */
8985 $def_apple_ir
8986 $def_apple_remote
8987 $def_ioctl_bt848_h_name
8988 $def_ioctl_meteor_h_name
8989 $def_joystick
8990 $def_lirc
8991 $def_lircc
8992 $def_pvr
8993 $def_radio
8994 $def_radio_bsdbt848
8995 $def_radio_capture
8996 $def_radio_v4l
8997 $def_radio_v4l2
8998 $def_tv
8999 $def_tv_bsdbt848
9000 $def_tv_dshow
9001 $def_tv_v4l
9002 $def_tv_v4l1
9003 $def_tv_v4l2
9006 /* font stuff */
9007 $def_ass
9008 $def_ass_internal
9009 $def_bitmap_font
9010 $def_enca
9011 $def_fontconfig
9012 $def_freetype
9013 $def_fribidi
9016 /* networking */
9017 $def_closesocket
9018 $def_ftp
9019 $def_inet6
9020 $def_inet_aton
9021 $def_inet_pton
9022 $def_live
9023 $def_nemesi
9024 $def_network
9025 $def_smb
9026 $def_socklen_t
9027 $def_vstream
9028 $def_addrinfo
9029 $def_getaddrinfo
9030 $def_sockaddr_storage
9033 /* libvo options */
9034 $def_3dfx
9035 $def_aa
9036 $def_bl
9037 $def_caca
9038 $def_corevideo
9039 $def_dfbmga
9040 $def_dga
9041 $def_dga1
9042 $def_dga2
9043 $def_direct3d
9044 $def_directfb
9045 $def_directfb_version
9046 $def_directx
9047 $def_dvb
9048 $def_dvb_head
9049 $def_dvbin
9050 $def_dxr2
9051 $def_dxr3
9052 $def_fbdev
9053 $def_ggi
9054 $def_ggiwmh
9055 $def_gif
9056 $def_gif_4
9057 $def_gif_tvt_hack
9058 $def_gl
9059 $def_gl_win32
9060 $def_gl_x11
9061 $def_matrixview
9062 $def_ivtv
9063 $def_jpeg
9064 $def_kva
9065 $def_md5sum
9066 $def_mga
9067 $def_mng
9068 $def_png
9069 $def_pnm
9070 $def_quartz
9071 $def_s3fb
9072 $def_sdl
9073 $def_sdl_sdl_h
9074 $def_sdlbuggy
9075 $def_svga
9076 $def_tdfxfb
9077 $def_tdfxvid
9078 $def_tga
9079 $def_v4l2
9080 $def_vdpau
9081 $def_vesa
9082 $def_vidix
9083 $def_vidix_drv_cyberblade
9084 $def_vidix_drv_ivtv
9085 $def_vidix_drv_mach64
9086 $def_vidix_drv_mga
9087 $def_vidix_drv_mga_crtc2
9088 $def_vidix_drv_nvidia
9089 $def_vidix_drv_pm3
9090 $def_vidix_drv_radeon
9091 $def_vidix_drv_rage128
9092 $def_vidix_drv_s3
9093 $def_vidix_drv_sh_veu
9094 $def_vidix_drv_sis
9095 $def_vidix_drv_unichrome
9096 $def_vidix_pfx
9097 $def_vm
9098 $def_wii
9099 $def_x11
9100 $def_xdpms
9101 $def_xf86keysym
9102 $def_xinerama
9103 $def_xmga
9104 $def_xss
9105 $def_xv
9106 $def_xvmc
9107 $def_xvr100
9108 $def_yuv4mpeg
9109 $def_zr
9112 /* FFmpeg */
9113 $def_libavcodec
9114 $def_libavcodec_a
9115 $def_libavcodec_so
9116 $def_libavformat
9117 $def_libavformat_a
9118 $def_libavformat_so
9119 $def_libavutil
9120 $def_libavutil_a
9121 $def_libavutil_so
9122 $def_libpostproc
9123 $def_libpostproc_a
9124 $def_libpostproc_so
9125 $def_libswscale
9126 $def_libswscale_a
9127 $def_libswscale_so
9129 #define CONFIG_DECODERS 1
9130 #define CONFIG_ENCODERS 1
9131 #define CONFIG_DEMUXERS 1
9132 $def_muxers
9134 $def_arpa_inet_h
9135 $def_bswap
9136 $def_bzlib
9137 $def_dcbzl
9138 $def_dos_paths
9139 $def_fast_64bit
9140 $def_fast_unaligned
9141 $def_libavcodec_mpegaudio_hp
9142 $def_memalign_hack
9143 $def_mlib
9144 $def_mkstemp
9145 $def_posix_memalign
9146 $def_pthreads
9147 $def_ten_operands
9148 $def_threads
9149 $def_xform_asm
9150 $def_yasm
9152 #define CONFIG_FASTDIV 0
9153 #define CONFIG_FFSERVER 0
9154 #define CONFIG_GPL 1
9155 #define CONFIG_GRAY 0
9156 #define CONFIG_LIBVORBIS 0
9157 #define CONFIG_POWERPC_PERF 0
9158 #define CONFIG_SMALL 0
9159 #define CONFIG_SWSCALE 1
9160 #define CONFIG_SWSCALE_ALPHA 1
9162 #if defined(HAVE_AF_INET6) && (!defined(_WIN32) || defined(__CYGWIN__))
9163 #define CONFIG_IPV6 1
9164 #else
9165 #define CONFIG_IPV6 0
9166 #endif
9168 #define HAVE_ATTRIBUTE_PACKED 1
9169 #define HAVE_GETHRTIME 0
9170 #define HAVE_INLINE_ASM 1
9171 #define HAVE_LDBRX 0
9172 #define HAVE_POLL_H 1
9173 #define HAVE_PPC4XX 0
9174 #define HAVE_SETMODE 0
9175 #define HAVE_SYS_SELECT_H 0
9176 #define HAVE_VFP_ARGS 1
9177 #define HAVE_VIRTUALALLOC 0
9179 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
9180 #define CONFIG_AANDCT 1
9181 #define CONFIG_FFT 1
9182 #define CONFIG_GOLOMB 1
9183 #define CONFIG_LPC 1
9184 #define CONFIG_MDCT 1
9185 #define CONFIG_RDFT 1
9187 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
9188 $def_ebx_available
9189 #ifndef MP_DEBUG
9190 #define HAVE_EBP_AVAILABLE 1
9191 #else
9192 #define HAVE_EBP_AVAILABLE 0
9193 #endif
9195 #define FFMPEG_CONFIGURATION "--enable-gpl --enable-postproc"
9196 #define FFMPEG_LICENSE "GPL version 2 or later"
9198 /* External libraries used through libavcodec. */
9199 $def_faac_lavc
9200 $def_libdirac_lavc
9201 $def_libopencore_amrnb
9202 $def_libopencore_amrwb
9203 $def_libopenjpeg
9204 $def_libschroedinger_lavc
9205 $def_mp3lame_lavc
9206 $def_x264_lavc
9207 $def_xvid_lavc
9209 $(ff_config_enable "$_libavdecoders_all" "$_libavdecoders")
9210 $(ff_config_enable "$_libavencoders_all" "$_libavencoders")
9211 $(ff_config_enable "$_libavparsers_all" "$_libavparsers")
9212 $(ff_config_enable "$_libavdemuxers_all" "$_libavdemuxers")
9213 $(ff_config_enable "$_libavmuxers_all" "$_libavmuxers")
9214 $(ff_config_enable "$_libavprotocols_all" "$_libavprotocols")
9215 $(ff_config_enable "$_libavbsfs_all" "$_libavbsfs")
9217 #define CONFIG_H263_VAAPI_HWACCEL 0
9218 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
9219 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
9220 #define CONFIG_H264_VAAPI_HWACCEL 0
9221 #define CONFIG_VC1_VAAPI_HWACCEL 0
9222 #define CONFIG_WMV3_VAAPI_HWACCEL 0
9223 #define CONFIG_H264_DXVA2_HWACCEL 0
9225 #endif /* MPLAYER_CONFIG_H */
9228 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
9229 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
9231 ############################################################################
9233 # Create avconfig.h for FFmpeg.
9234 cat > "$TMPH" << EOF
9235 /* Generated by mpconfigure */
9236 #ifndef AVUTIL_AVCONFIG_H
9237 #define AVUTIL_AVCONFIG_H
9238 $def_av_bigendian
9239 #endif /* AVUTIL_AVCONFIG_H */
9242 # Do not overwrite an unchanged avconfig.h to avoid superfluous rebuilds.
9243 cmp -s "$TMPH" libavutil/avconfig.h || mv -f "$TMPH" libavutil/avconfig.h
9245 #############################################################################
9247 cat << EOF
9249 Config files successfully generated by ./configure $_configuration !
9251 Install prefix: $_prefix
9252 Data directory: $_datadir
9253 Config direct.: $_confdir
9255 Byte order: $_byte_order
9256 Optimizing for: $_optimizing
9258 Languages:
9259 Messages/GUI: $language_msg
9260 Manual pages: $language_man
9261 Documentation: $language_doc
9263 Enabled optional drivers:
9264 Input: $_inputmodules
9265 Codecs: $_codecmodules
9266 Audio output: $_aomodules
9267 Video output: $_vomodules
9269 Disabled optional drivers:
9270 Input: $_noinputmodules
9271 Codecs: $_nocodecmodules
9272 Audio output: $_noaomodules
9273 Video output: $_novomodules
9275 'config.h' and 'config.mak' contain your configuration options.
9276 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
9277 compile *** DO NOT REPORT BUGS if you tweak these files ***
9279 'make' will now compile MPlayer and 'make install' will install it.
9280 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
9285 if test "$_mtrr" = yes ; then
9286 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
9287 echo
9290 if ! x86_32; then
9291 cat <<EOF
9292 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
9293 operating system ($system_name). You may encounter a few files that cannot
9294 be played due to missing open source video/audio codec support.
9300 cat <<EOF
9301 Check $TMPLOG if you wonder why an autodetection failed (make sure
9302 development headers/packages are installed).
9304 NOTE: The --enable-* parameters unconditionally force options on, completely
9305 skipping autodetection. This behavior is unlike what you may be used to from
9306 autoconf-based configure scripts that can decide to override you. This greater
9307 level of control comes at a price. You may have to provide the correct compiler
9308 and linker flags yourself.
9309 If you used one of these options (except --enable-gui and similar ones that
9310 turn on internal features) and experience a compilation or linking failure,
9311 make sure you have passed the necessary compiler/linker flags to configure.
9313 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
9317 if test "$_warn_CFLAGS" = yes; then
9318 cat <<EOF
9320 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
9321 but:
9323 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
9325 It is strongly recommended to let MPlayer choose the correct CFLAGS!
9326 To do so, execute 'CFLAGS= ./configure <options>'
9331 # Last move:
9332 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"