sync with en/mplayer.1 rev. 30822
[mplayer.git] / configure
blobcd48fe088d0385735975948050bd1092710ab36f
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-mga enable mga_vid video output [autodetect]
388 --enable-xmga enable mga_vid X11 video output [autodetect]
389 --enable-xv enable Xv video output [autodetect]
390 --enable-xvmc enable XvMC acceleration [disable]
391 --enable-vdpau enable VDPAU acceleration [autodetect]
392 --enable-vm enable XF86VidMode support [autodetect]
393 --enable-xinerama enable Xinerama support [autodetect]
394 --enable-x11 enable X11 video output [autodetect]
395 --enable-xshape enable XShape support [autodetect]
396 --disable-xss disable screensaver support via xss [autodetect]
397 --enable-fbdev enable FBDev video output [autodetect]
398 --enable-mlib enable mediaLib video output (Solaris) [disable]
399 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
400 --enable-tdfxfb enable tdfxfb video output [disable]
401 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
402 --enable-wii enable Nintendo Wii/GameCube video output [disable]
403 --enable-directfb enable DirectFB video output [autodetect]
404 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
405 --enable-bl enable Blinkenlights video output [disable]
406 --enable-tdfxvid enable tdfx_vid video output [disable]
407 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
408 --disable-tga disable Targa video output [enable]
409 --disable-pnm disable PNM video output [enable]
410 --disable-md5sum disable md5sum video output [enable]
411 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
412 --disable-corevideo disable CoreVideo video output [autodetect]
413 --disable-quartz disable Quartz video output [autodetect]
415 Audio output:
416 --disable-alsa disable ALSA audio output [autodetect]
417 --disable-ossaudio disable OSS audio output [autodetect]
418 --disable-arts disable aRts audio output [autodetect]
419 --disable-esd disable esd audio output [autodetect]
420 --disable-pulse disable Pulseaudio audio output [autodetect]
421 --disable-jack disable JACK audio output [autodetect]
422 --disable-openal disable OpenAL audio output [autodetect]
423 --disable-nas disable NAS audio output [autodetect]
424 --disable-sgiaudio disable SGI audio output [autodetect]
425 --disable-sunaudio disable Sun audio output [autodetect]
426 --disable-kai disable KAI 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 _libavhwaccels_all=$(sed -n 's/^[^#]*HWACCEL.*(.*, *\(.*\)).*/\1_hwaccel/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
558 # Disable all hardware accelerators for now.
559 _libavhwaccels=
560 _libavdemuxers_all=$(sed -n 's/^[^#]*DEMUX.*(.*, *\(.*\)).*/\1_demuxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
561 _libavdemuxers=$(echo $_libavdemuxers_all | sed -e 's/ LIB[A-Z0-9_]*_DEMUXER//g' -e s/REDIR_DEMUXER// -e s/AVISYNTH_DEMUXER//)
562 _libavmuxers_all=$(sed -n 's/^[^#]*_MUX.*(.*, *\(.*\)).*/\1_muxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
563 _libavmuxers=$(echo $_libavmuxers_all | sed -e 's/ LIB[A-Z0-9_]*_MUXER//g' -e s/RTP_MUXER// -e s/RTSP_MUXER//)
564 _libavprotocols_all=$(sed -n 's/^[^#]*PROTOCOL.*(.*, *\(.*\)).*/\1_protocol/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
565 _libavprotocols=$_libavprotocols_all
566 _libavcodec_so=auto
567 _libavformat_a=auto
568 _libavformat_so=auto
569 _libpostproc_a=auto
570 _libpostproc_so=auto
571 _libswscale_a=auto
572 _libswscale_so=auto
573 _libavcodec_mpegaudio_hp=yes
574 _mencoder=yes
575 _mplayer=yes
576 _x11=auto
577 _xshape=auto
578 _xss=auto
579 _dga1=auto
580 _dga2=auto
581 _xv=auto
582 _xvmc=no #auto when complete
583 _vdpau=auto
584 _sdl=auto
585 _kva=auto
586 _direct3d=auto
587 _directx=auto
588 _win32waveout=auto
589 _nas=auto
590 _png=auto
591 _mng=auto
592 _jpeg=auto
593 _pnm=yes
594 _md5sum=yes
595 _yuv4mpeg=yes
596 _gif=auto
597 _gl=auto
598 matrixview=yes
599 _ggi=auto
600 _ggiwmh=auto
601 _aa=auto
602 _caca=auto
603 _svga=auto
604 _vesa=auto
605 _fbdev=auto
606 _dvb=auto
607 _dxr2=auto
608 _dxr3=auto
609 _ivtv=auto
610 _v4l2=auto
611 _iconv=auto
612 _langinfo=auto
613 _rtc=auto
614 _ossaudio=auto
615 _arts=auto
616 _esd=auto
617 _pulse=auto
618 _jack=auto
619 _kai=auto
620 _dart=auto
621 _openal=auto
622 _libcdio=auto
623 _liblzo=auto
624 _mad=auto
625 _mp3lame=auto
626 _mp3lame_lavc=auto
627 _toolame=auto
628 _twolame=auto
629 _tremor=auto
630 _tremor_internal=yes
631 _tremor_low=no
632 _libvorbis=auto
633 _speex=auto
634 _theora=auto
635 _mp3lib=auto
636 _liba52=auto
637 _liba52_internal=no
638 _libdca=auto
639 _libmpeg2=auto
640 _faad=auto
641 _faad_internal=auto
642 _faad_fixed=no
643 _faac=auto
644 _faac_lavc=auto
645 _ladspa=auto
646 _libbs2b=auto
647 _xmms=no
648 _vcd=auto
649 _dvdnav=auto
650 _dvdnavconfig=dvdnav-config
651 _dvdreadconfig=dvdread-config
652 _dvdread=auto
653 _dvdread_internal=auto
654 _libdvdcss_internal=auto
655 _xanim=auto
656 _real=auto
657 _live=auto
658 _nemesi=auto
659 _native_rtsp=yes
660 _xinerama=auto
661 _mga=auto
662 _xmga=auto
663 _vm=auto
664 _xf86keysym=auto
665 _mlib=no #broken, thus disabled
666 _sgiaudio=auto
667 _sunaudio=auto
668 _alsa=auto
669 _fastmemcpy=yes
670 hardcoded_tables=no
671 _unrar_exec=auto
672 _win32dll=auto
673 _select=yes
674 _radio=no
675 _radio_capture=no
676 _radio_v4l=auto
677 _radio_v4l2=auto
678 _radio_bsdbt848=auto
679 _tv=yes
680 _tv_v4l1=auto
681 _tv_v4l2=auto
682 _tv_bsdbt848=auto
683 _tv_dshow=auto
684 _pvr=auto
685 _network=yes
686 _winsock2_h=auto
687 _struct_addrinfo=auto
688 _getaddrinfo=auto
689 _struct_sockaddr_storage=auto
690 _smb=auto
691 _vidix=auto
692 _vidix_pcidb=yes
693 _dhahelper=no
694 _svgalib_helper=no
695 _joystick=no
696 _xvid=auto
697 _xvid_lavc=auto
698 _x264=auto
699 _x264_lavc=auto
700 _libdirac_lavc=auto
701 _libschroedinger_lavc=auto
702 _libnut=auto
703 _lirc=auto
704 _lircc=auto
705 _apple_remote=auto
706 _apple_ir=auto
707 _gui=no
708 _gtk1=no
709 _termcap=auto
710 _termios=auto
711 _3dfx=no
712 _s3fb=no
713 _wii=no
714 _tdfxfb=no
715 _tdfxvid=no
716 _xvr100=auto
717 _tga=yes
718 _directfb=auto
719 _zr=auto
720 _bl=no
721 _largefiles=yes
722 #language=en
723 _shm=auto
724 _linux_devfs=no
725 _charset="UTF-8"
726 _dynamic_plugins=no
727 _crash_debug=no
728 _sighandler=yes
729 _libdv=auto
730 _cdparanoia=auto
731 _cddb=auto
732 _big_endian=auto
733 _bitmap_font=yes
734 _freetype=auto
735 _fontconfig=auto
736 _menu=no
737 _qtx=auto
738 _maemo=auto
739 _coreaudio=auto
740 _corevideo=auto
741 _quartz=auto
742 quicktime=auto
743 _macosx_finder=no
744 _macosx_bundle=auto
745 _sortsub=yes
746 _freetypeconfig='freetype-config'
747 _fribidi=auto
748 _fribidiconfig='fribidi-config'
749 _enca=auto
750 _inet6=auto
751 _gethostbyname2=auto
752 _ftp=yes
753 _musepack=auto
754 _vstream=auto
755 _pthreads=auto
756 _w32threads=auto
757 _ass=auto
758 ass_internal=yes
759 _rpath=no
760 _asmalign_pot=auto
761 _stream_cache=yes
762 _priority=no
763 def_dos_paths="#define HAVE_DOS_PATHS 0"
764 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
765 def_priority="#undef CONFIG_PRIORITY"
766 def_pthread_cache="#undef PTHREAD_CACHE"
767 _need_shmem=yes
768 for ac_option do
769 case "$ac_option" in
770 --help|-help|-h)
771 show_help
773 --prefix=*)
774 _prefix=$(echo $ac_option | cut -d '=' -f 2)
776 --bindir=*)
777 _bindir=$(echo $ac_option | cut -d '=' -f 2)
779 --datadir=*)
780 _datadir=$(echo $ac_option | cut -d '=' -f 2)
782 --mandir=*)
783 _mandir=$(echo $ac_option | cut -d '=' -f 2)
785 --confdir=*)
786 _confdir=$(echo $ac_option | cut -d '=' -f 2)
788 --libdir=*)
789 _libdir=$(echo $ac_option | cut -d '=' -f 2)
791 --codecsdir=*)
792 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
794 --win32codecsdir=*)
795 _win32codecsdir=$(echo $ac_option | cut -d '=' -f 2)
797 --xanimcodecsdir=*)
798 _xanimcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
800 --realcodecsdir=*)
801 _realcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
804 --with-install=*)
805 _install=$(echo $ac_option | cut -d '=' -f 2 )
807 --with-xvmclib=*)
808 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
811 --with-sdl-config=*)
812 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
814 --with-freetype-config=*)
815 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
817 --with-fribidi-config=*)
818 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
820 --with-gtk-config=*)
821 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
823 --with-glib-config=*)
824 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
826 --with-dvdnav-config=*)
827 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
829 --with-dvdread-config=*)
830 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
833 --extra-cflags=*)
834 extra_cflags=$(echo $ac_option | cut -d '=' -f 2-)
836 --extra-ldflags=*)
837 extra_ldflags=$(echo $ac_option | cut -d '=' -f 2-)
839 --extra-libs=*)
840 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
842 --extra-libs-mplayer=*)
843 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
845 --extra-libs-mencoder=*)
846 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
849 --target=*)
850 _target=$(echo $ac_option | cut -d '=' -f 2)
852 --cc=*)
853 _cc=$(echo $ac_option | cut -d '=' -f 2)
855 --host-cc=*)
856 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
858 --as=*)
859 _as=$(echo $ac_option | cut -d '=' -f 2)
861 --nm=*)
862 _nm=$(echo $ac_option | cut -d '=' -f 2)
864 --yasm=*)
865 _yasm=$(echo $ac_option | cut -d '=' -f 2)
867 --ar=*)
868 _ar=$(echo $ac_option | cut -d '=' -f 2)
870 --ranlib=*)
871 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
873 --windres=*)
874 _windres=$(echo $ac_option | cut -d '=' -f 2)
876 --charset=*)
877 _charset=$(echo $ac_option | cut -d '=' -f 2)
879 --language-doc=*)
880 language_doc=$(echo $ac_option | cut -d '=' -f 2)
882 --language-man=*)
883 language_man=$(echo $ac_option | cut -d '=' -f 2)
885 --language-msg=*)
886 language_msg=$(echo $ac_option | cut -d '=' -f 2)
888 --language=*)
889 language=$(echo $ac_option | cut -d '=' -f 2)
892 --enable-static)
893 _ld_static='-static'
895 --disable-static)
896 _ld_static=''
898 --enable-profile)
899 _profile='-p'
901 --disable-profile)
902 _profile=
904 --enable-debug)
905 _debug='-g'
907 --enable-debug=*)
908 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
910 --disable-debug)
911 _debug=
913 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
914 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
915 --enable-cross-compile) _cross_compile=yes ;;
916 --disable-cross-compile) _cross_compile=no ;;
917 --enable-mencoder) _mencoder=yes ;;
918 --disable-mencoder) _mencoder=no ;;
919 --enable-mplayer) _mplayer=yes ;;
920 --disable-mplayer) _mplayer=no ;;
921 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
922 --disable-dynamic-plugins) _dynamic_plugins=no ;;
923 --enable-x11) _x11=yes ;;
924 --disable-x11) _x11=no ;;
925 --enable-xshape) _xshape=yes ;;
926 --disable-xshape) _xshape=no ;;
927 --enable-xss) _xss=yes ;;
928 --disable-xss) _xss=no ;;
929 --enable-xv) _xv=yes ;;
930 --disable-xv) _xv=no ;;
931 --enable-xvmc) _xvmc=yes ;;
932 --disable-xvmc) _xvmc=no ;;
933 --enable-vdpau) _vdpau=yes ;;
934 --disable-vdpau) _vdpau=no ;;
935 --enable-sdl) _sdl=yes ;;
936 --disable-sdl) _sdl=no ;;
937 --enable-kva) _kva=yes ;;
938 --disable-kva) _kva=no ;;
939 --enable-direct3d) _direct3d=yes ;;
940 --disable-direct3d) _direct3d=no ;;
941 --enable-directx) _directx=yes ;;
942 --disable-directx) _directx=no ;;
943 --enable-win32waveout) _win32waveout=yes ;;
944 --disable-win32waveout) _win32waveout=no ;;
945 --enable-nas) _nas=yes ;;
946 --disable-nas) _nas=no ;;
947 --enable-png) _png=yes ;;
948 --disable-png) _png=no ;;
949 --enable-mng) _mng=yes ;;
950 --disable-mng) _mng=no ;;
951 --enable-jpeg) _jpeg=yes ;;
952 --disable-jpeg) _jpeg=no ;;
953 --enable-libopenjpeg) libopenjpeg=yes ;;
954 --disable-libopenjpeg)libopenjpeg=no ;;
955 --enable-pnm) _pnm=yes ;;
956 --disable-pnm) _pnm=no ;;
957 --enable-md5sum) _md5sum=yes ;;
958 --disable-md5sum) _md5sum=no ;;
959 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
960 --disable-yuv4mpeg) _yuv4mpeg=no ;;
961 --enable-gif) _gif=yes ;;
962 --disable-gif) _gif=no ;;
963 --enable-gl) _gl=yes ;;
964 --disable-gl) _gl=no ;;
965 --enable-matrixview) matrixview=yes ;;
966 --disable-matrixview) matrixview=no ;;
967 --enable-ggi) _ggi=yes ;;
968 --disable-ggi) _ggi=no ;;
969 --enable-ggiwmh) _ggiwmh=yes ;;
970 --disable-ggiwmh) _ggiwmh=no ;;
971 --enable-aa) _aa=yes ;;
972 --disable-aa) _aa=no ;;
973 --enable-caca) _caca=yes ;;
974 --disable-caca) _caca=no ;;
975 --enable-svga) _svga=yes ;;
976 --disable-svga) _svga=no ;;
977 --enable-vesa) _vesa=yes ;;
978 --disable-vesa) _vesa=no ;;
979 --enable-fbdev) _fbdev=yes ;;
980 --disable-fbdev) _fbdev=no ;;
981 --enable-dvb) _dvb=yes ;;
982 --disable-dvb) _dvb=no ;;
983 --enable-dxr2) _dxr2=yes ;;
984 --disable-dxr2) _dxr2=no ;;
985 --enable-dxr3) _dxr3=yes ;;
986 --disable-dxr3) _dxr3=no ;;
987 --enable-ivtv) _ivtv=yes ;;
988 --disable-ivtv) _ivtv=no ;;
989 --enable-v4l2) _v4l2=yes ;;
990 --disable-v4l2) _v4l2=no ;;
991 --enable-iconv) _iconv=yes ;;
992 --disable-iconv) _iconv=no ;;
993 --enable-langinfo) _langinfo=yes ;;
994 --disable-langinfo) _langinfo=no ;;
995 --enable-rtc) _rtc=yes ;;
996 --disable-rtc) _rtc=no ;;
997 --enable-libdv) _libdv=yes ;;
998 --disable-libdv) _libdv=no ;;
999 --enable-ossaudio) _ossaudio=yes ;;
1000 --disable-ossaudio) _ossaudio=no ;;
1001 --enable-arts) _arts=yes ;;
1002 --disable-arts) _arts=no ;;
1003 --enable-esd) _esd=yes ;;
1004 --disable-esd) _esd=no ;;
1005 --enable-pulse) _pulse=yes ;;
1006 --disable-pulse) _pulse=no ;;
1007 --enable-jack) _jack=yes ;;
1008 --disable-jack) _jack=no ;;
1009 --enable-openal) _openal=yes ;;
1010 --disable-openal) _openal=no ;;
1011 --enable-kai) _kai=yes ;;
1012 --disable-kai) _kai=no ;;
1013 --enable-dart) _dart=yes ;;
1014 --disable-dart) _dart=no ;;
1015 --enable-mad) _mad=yes ;;
1016 --disable-mad) _mad=no ;;
1017 --enable-mp3lame) _mp3lame=yes ;;
1018 --disable-mp3lame) _mp3lame=no ;;
1019 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;;
1020 --disable-mp3lame-lavc) _mp3lame_lavc=no ;;
1021 --enable-toolame) _toolame=yes ;;
1022 --disable-toolame) _toolame=no ;;
1023 --enable-twolame) _twolame=yes ;;
1024 --disable-twolame) _twolame=no ;;
1025 --enable-libcdio) _libcdio=yes ;;
1026 --disable-libcdio) _libcdio=no ;;
1027 --enable-liblzo) _liblzo=yes ;;
1028 --disable-liblzo) _liblzo=no ;;
1029 --enable-libvorbis) _libvorbis=yes ;;
1030 --disable-libvorbis) _libvorbis=no ;;
1031 --enable-speex) _speex=yes ;;
1032 --disable-speex) _speex=no ;;
1033 --enable-tremor) _tremor=yes ;;
1034 --disable-tremor) _tremor=no ;;
1035 --enable-tremor-internal) _tremor_internal=yes ;;
1036 --disable-tremor-internal) _tremor_internal=no ;;
1037 --enable-tremor-low) _tremor_low=yes ;;
1038 --disable-tremor-low) _tremor_low=no ;;
1039 --enable-theora) _theora=yes ;;
1040 --disable-theora) _theora=no ;;
1041 --enable-mp3lib) _mp3lib=yes ;;
1042 --disable-mp3lib) _mp3lib=no ;;
1043 --enable-liba52-internal) _liba52_internal=yes ;;
1044 --disable-liba52-internal) _liba52_internal=no ;;
1045 --enable-liba52) _liba52=yes ;;
1046 --disable-liba52) _liba52=no ;;
1047 --enable-libdca) _libdca=yes ;;
1048 --disable-libdca) _libdca=no ;;
1049 --enable-libmpeg2) _libmpeg2=yes ;;
1050 --disable-libmpeg2) _libmpeg2=no ;;
1051 --enable-musepack) _musepack=yes ;;
1052 --disable-musepack) _musepack=no ;;
1053 --enable-faad) _faad=yes ;;
1054 --disable-faad) _faad=no ;;
1055 --enable-faad-internal) _faad_internal=yes ;;
1056 --disable-faad-internal) _faad_internal=no ;;
1057 --enable-faad-fixed) _faad_fixed=yes ;;
1058 --disable-faad-fixed) _faad_fixed=no ;;
1059 --enable-faac) _faac=yes ;;
1060 --disable-faac) _faac=no ;;
1061 --enable-faac-lavc) _faac_lavc=yes ;;
1062 --disable-faac-lavc) _faac_lavc=no ;;
1063 --enable-ladspa) _ladspa=yes ;;
1064 --disable-ladspa) _ladspa=no ;;
1065 --enable-libbs2b) _libbs2b=yes ;;
1066 --disable-libbs2b) _libbs2b=no ;;
1067 --enable-xmms) _xmms=yes ;;
1068 --disable-xmms) _xmms=no ;;
1069 --enable-vcd) _vcd=yes ;;
1070 --disable-vcd) _vcd=no ;;
1071 --enable-dvdread) _dvdread=yes ;;
1072 --disable-dvdread) _dvdread=no ;;
1073 --enable-dvdread-internal) _dvdread_internal=yes ;;
1074 --disable-dvdread-internal) _dvdread_internal=no ;;
1075 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1076 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1077 --enable-dvdnav) _dvdnav=yes ;;
1078 --disable-dvdnav) _dvdnav=no ;;
1079 --enable-xanim) _xanim=yes ;;
1080 --disable-xanim) _xanim=no ;;
1081 --enable-real) _real=yes ;;
1082 --disable-real) _real=no ;;
1083 --enable-live) _live=yes ;;
1084 --disable-live) _live=no ;;
1085 --enable-nemesi) _nemesi=yes ;;
1086 --disable-nemesi) _nemesi=no ;;
1087 --enable-xinerama) _xinerama=yes ;;
1088 --disable-xinerama) _xinerama=no ;;
1089 --enable-mga) _mga=yes ;;
1090 --disable-mga) _mga=no ;;
1091 --enable-xmga) _xmga=yes ;;
1092 --disable-xmga) _xmga=no ;;
1093 --enable-vm) _vm=yes ;;
1094 --disable-vm) _vm=no ;;
1095 --enable-xf86keysym) _xf86keysym=yes ;;
1096 --disable-xf86keysym) _xf86keysym=no ;;
1097 --enable-mlib) _mlib=yes ;;
1098 --disable-mlib) _mlib=no ;;
1099 --enable-sunaudio) _sunaudio=yes ;;
1100 --disable-sunaudio) _sunaudio=no ;;
1101 --enable-sgiaudio) _sgiaudio=yes ;;
1102 --disable-sgiaudio) _sgiaudio=no ;;
1103 --enable-alsa) _alsa=yes ;;
1104 --disable-alsa) _alsa=no ;;
1105 --enable-tv) _tv=yes ;;
1106 --disable-tv) _tv=no ;;
1107 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1108 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1109 --enable-tv-v4l1) _tv_v4l1=yes ;;
1110 --disable-tv-v4l1) _tv_v4l1=no ;;
1111 --enable-tv-v4l2) _tv_v4l2=yes ;;
1112 --disable-tv-v4l2) _tv_v4l2=no ;;
1113 --enable-tv-dshow) _tv_dshow=yes ;;
1114 --disable-tv-dshow) _tv_dshow=no ;;
1115 --enable-radio) _radio=yes ;;
1116 --enable-radio-capture) _radio_capture=yes ;;
1117 --disable-radio-capture) _radio_capture=no ;;
1118 --disable-radio) _radio=no ;;
1119 --enable-radio-v4l) _radio_v4l=yes ;;
1120 --disable-radio-v4l) _radio_v4l=no ;;
1121 --enable-radio-v4l2) _radio_v4l2=yes ;;
1122 --disable-radio-v4l2) _radio_v4l2=no ;;
1123 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1124 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1125 --enable-pvr) _pvr=yes ;;
1126 --disable-pvr) _pvr=no ;;
1127 --enable-fastmemcpy) _fastmemcpy=yes ;;
1128 --disable-fastmemcpy) _fastmemcpy=no ;;
1129 --enable-hardcoded-tables) hardcoded_tables=yes ;;
1130 --disable-hardcoded-tables) hardcoded_tables=no ;;
1131 --enable-network) _network=yes ;;
1132 --disable-network) _network=no ;;
1133 --enable-winsock2_h) _winsock2_h=yes ;;
1134 --disable-winsock2_h) _winsock2_h=no ;;
1135 --enable-smb) _smb=yes ;;
1136 --disable-smb) _smb=no ;;
1137 --enable-vidix) _vidix=yes ;;
1138 --disable-vidix) _vidix=no ;;
1139 --with-vidix-drivers=*)
1140 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1142 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1143 --enable-dhahelper) _dhahelper=yes ;;
1144 --disable-dhahelper) _dhahelper=no ;;
1145 --enable-svgalib_helper) _svgalib_helper=yes ;;
1146 --disable-svgalib_helper) _svgalib_helper=no ;;
1147 --enable-joystick) _joystick=yes ;;
1148 --disable-joystick) _joystick=no ;;
1149 --enable-xvid) _xvid=yes ;;
1150 --disable-xvid) _xvid=no ;;
1151 --enable-xvid-lavc) _xvid_lavc=yes ;;
1152 --disable-xvid-lavc) _xvid_lavc=no ;;
1153 --enable-x264) _x264=yes ;;
1154 --disable-x264) _x264=no ;;
1155 --enable-x264-lavc) _x264_lavc=yes ;;
1156 --disable-x264-lavc) _x264_lavc=no ;;
1157 --enable-libdirac-lavc) _libdirac_lavc=yes ;;
1158 --disable-libdirac-lavc) _libdirac_lavc=no ;;
1159 --enable-libschroedinger-lavc) _libschroedinger_lavc=yes ;;
1160 --disable-libschroedinger-lavc) _libschroedinger_lavc=no ;;
1161 --enable-libnut) _libnut=yes ;;
1162 --disable-libnut) _libnut=no ;;
1163 --enable-libavutil_a) _libavutil_a=yes ;;
1164 --disable-libavutil_a) _libavutil_a=no ;;
1165 --enable-libavutil_so) _libavutil_so=yes ;;
1166 --disable-libavutil_so) _libavutil_so=no ;;
1167 --enable-libavcodec_a) _libavcodec_a=yes ;;
1168 --disable-libavcodec_a) _libavcodec_a=no ;;
1169 --enable-libavcodec_so) _libavcodec_so=yes ;;
1170 --disable-libavcodec_so) _libavcodec_so=no ;;
1171 --enable-libopencore_amrnb) _libopencore_amrnb=yes ;;
1172 --disable-libopencore_amrnb) _libopencore_amrnb=no ;;
1173 --enable-libopencore_amrwb) _libopencore_amrwb=yes ;;
1174 --disable-libopencore_amrwb) _libopencore_amrwb=no ;;
1175 --enable-decoder=*) _libavdecoders="$_libavdecoders $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1176 --disable-decoder=*) _libavdecoders=$(echo $_libavdecoders | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1177 --enable-encoder=*) _libavencoders="$_libavencoders $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1178 --disable-encoder=*) _libavencoders=$(echo $_libavencoders | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1179 --enable-parser=*) _libavparsers="$_libavparsers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1180 --disable-parser=*) _libavparsers=$(echo $_libavparsers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1181 --enable-protocol=*) _libavprotocols="$_libavprotocols $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1182 --disable-protocol=*) _libavprotocols=$(echo $_libavprotocols | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1183 --enable-demuxer=*) _libavdemuxers="$_libavdemuxers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1184 --disable-demuxer=*) _libavdemuxers=$(echo $_libavdemuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1185 --enable-muxer=*) _libavmuxers="$_libavmuxers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1186 --disable-muxer=*) _libavmuxers=$(echo $_libavmuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1187 --enable-libavformat_a) _libavformat_a=yes ;;
1188 --disable-libavformat_a) _libavformat_a=no ;;
1189 --enable-libavformat_so) _libavformat_so=yes ;;
1190 --disable-libavformat_so) _libavformat_so=no ;;
1191 --enable-libpostproc_a) _libpostproc_a=yes ;;
1192 --disable-libpostproc_a) _libpostproc_a=no ;;
1193 --enable-libpostproc_so) _libpostproc_so=yes ;;
1194 --disable-libpostproc_so) _libpostproc_so=no ;;
1195 --enable-libswscale_a) _libswscale_a=yes ;;
1196 --disable-libswscale_a) _libswscale_a=no ;;
1197 --enable-libswscale_so) _libswscale_so=yes ;;
1198 --disable-libswscale_so) _libswscale_so=no ;;
1199 --enable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=yes ;;
1200 --disable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=no ;;
1202 --enable-lirc) _lirc=yes ;;
1203 --disable-lirc) _lirc=no ;;
1204 --enable-lircc) _lircc=yes ;;
1205 --disable-lircc) _lircc=no ;;
1206 --enable-apple-remote) _apple_remote=yes ;;
1207 --disable-apple-remote) _apple_remote=no ;;
1208 --enable-apple-ir) _apple_ir=yes ;;
1209 --disable-apple-ir) _apple_ir=no ;;
1210 --enable-gui) _gui=yes ;;
1211 --disable-gui) _gui=no ;;
1212 --enable-gtk1) _gtk1=yes ;;
1213 --disable-gtk1) _gtk1=no ;;
1214 --enable-termcap) _termcap=yes ;;
1215 --disable-termcap) _termcap=no ;;
1216 --enable-termios) _termios=yes ;;
1217 --disable-termios) _termios=no ;;
1218 --enable-3dfx) _3dfx=yes ;;
1219 --disable-3dfx) _3dfx=no ;;
1220 --enable-s3fb) _s3fb=yes ;;
1221 --disable-s3fb) _s3fb=no ;;
1222 --enable-wii) _wii=yes ;;
1223 --disable-wii) _wii=no ;;
1224 --enable-tdfxfb) _tdfxfb=yes ;;
1225 --disable-tdfxfb) _tdfxfb=no ;;
1226 --disable-tdfxvid) _tdfxvid=no ;;
1227 --enable-tdfxvid) _tdfxvid=yes ;;
1228 --disable-xvr100) _xvr100=no ;;
1229 --enable-xvr100) _xvr100=yes ;;
1230 --disable-tga) _tga=no ;;
1231 --enable-tga) _tga=yes ;;
1232 --enable-directfb) _directfb=yes ;;
1233 --disable-directfb) _directfb=no ;;
1234 --enable-zr) _zr=yes ;;
1235 --disable-zr) _zr=no ;;
1236 --enable-bl) _bl=yes ;;
1237 --disable-bl) _bl=no ;;
1238 --enable-mtrr) _mtrr=yes ;;
1239 --disable-mtrr) _mtrr=no ;;
1240 --enable-largefiles) _largefiles=yes ;;
1241 --disable-largefiles) _largefiles=no ;;
1242 --enable-shm) _shm=yes ;;
1243 --disable-shm) _shm=no ;;
1244 --enable-select) _select=yes ;;
1245 --disable-select) _select=no ;;
1246 --enable-linux-devfs) _linux_devfs=yes ;;
1247 --disable-linux-devfs) _linux_devfs=no ;;
1248 --enable-cdparanoia) _cdparanoia=yes ;;
1249 --disable-cdparanoia) _cdparanoia=no ;;
1250 --enable-cddb) _cddb=yes ;;
1251 --disable-cddb) _cddb=no ;;
1252 --enable-big-endian) _big_endian=yes ;;
1253 --disable-big-endian) _big_endian=no ;;
1254 --enable-bitmap-font) _bitmap_font=yes ;;
1255 --disable-bitmap-font) _bitmap_font=no ;;
1256 --enable-freetype) _freetype=yes ;;
1257 --disable-freetype) _freetype=no ;;
1258 --enable-fontconfig) _fontconfig=yes ;;
1259 --disable-fontconfig) _fontconfig=no ;;
1260 --enable-unrarexec) _unrar_exec=yes ;;
1261 --disable-unrarexec) _unrar_exec=no ;;
1262 --enable-ftp) _ftp=yes ;;
1263 --disable-ftp) _ftp=no ;;
1264 --enable-vstream) _vstream=yes ;;
1265 --disable-vstream) _vstream=no ;;
1266 --enable-pthreads) _pthreads=yes ;;
1267 --disable-pthreads) _pthreads=no ;;
1268 --enable-w32threads) _w32threads=yes ;;
1269 --disable-w32threads) _w32threads=no ;;
1270 --enable-ass) _ass=yes ;;
1271 --disable-ass) _ass=no ;;
1272 --enable-ass-internal) ass_internal=yes ;;
1273 --disable-ass-internal) ass_internal=no ;;
1274 --enable-rpath) _rpath=yes ;;
1275 --disable-rpath) _rpath=no ;;
1277 --enable-fribidi) _fribidi=yes ;;
1278 --disable-fribidi) _fribidi=no ;;
1280 --enable-enca) _enca=yes ;;
1281 --disable-enca) _enca=no ;;
1283 --enable-inet6) _inet6=yes ;;
1284 --disable-inet6) _inet6=no ;;
1286 --enable-gethostbyname2) _gethostbyname2=yes ;;
1287 --disable-gethostbyname2) _gethostbyname2=no ;;
1289 --enable-dga1) _dga1=yes ;;
1290 --disable-dga1) _dga1=no ;;
1291 --enable-dga2) _dga2=yes ;;
1292 --disable-dga2) _dga2=no ;;
1294 --enable-menu) _menu=yes ;;
1295 --disable-menu) _menu=no ;;
1297 --enable-qtx) _qtx=yes ;;
1298 --disable-qtx) _qtx=no ;;
1300 --enable-coreaudio) _coreaudio=yes ;;
1301 --disable-coreaudio) _coreaudio=no ;;
1302 --enable-corevideo) _corevideo=yes ;;
1303 --disable-corevideo) _corevideo=no ;;
1304 --enable-quartz) _quartz=yes ;;
1305 --disable-quartz) _quartz=no ;;
1306 --enable-macosx-finder) _macosx_finder=yes ;;
1307 --disable-macosx-finder) _macosx_finder=no ;;
1308 --enable-macosx-bundle) _macosx_bundle=yes ;;
1309 --disable-macosx-bundle) _macosx_bundle=no ;;
1311 --enable-maemo) _maemo=yes ;;
1312 --disable-maemo) _maemo=no ;;
1314 --enable-sortsub) _sortsub=yes ;;
1315 --disable-sortsub) _sortsub=no ;;
1317 --enable-crash-debug) _crash_debug=yes ;;
1318 --disable-crash-debug) _crash_debug=no ;;
1319 --enable-sighandler) _sighandler=yes ;;
1320 --disable-sighandler) _sighandler=no ;;
1321 --enable-win32dll) _win32dll=yes ;;
1322 --disable-win32dll) _win32dll=no ;;
1324 --enable-sse) _sse=yes ;;
1325 --disable-sse) _sse=no ;;
1326 --enable-sse2) _sse2=yes ;;
1327 --disable-sse2) _sse2=no ;;
1328 --enable-ssse3) _ssse3=yes ;;
1329 --disable-ssse3) _ssse3=no ;;
1330 --enable-mmxext) _mmxext=yes ;;
1331 --disable-mmxext) _mmxext=no ;;
1332 --enable-3dnow) _3dnow=yes ;;
1333 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1334 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1335 --disable-3dnowext) _3dnowext=no ;;
1336 --enable-cmov) _cmov=yes ;;
1337 --disable-cmov) _cmov=no ;;
1338 --enable-fast-cmov) _fast_cmov=yes ;;
1339 --disable-fast-cmov) _fast_cmov=no ;;
1340 --enable-fast-clz) _fast_clz=yes ;;
1341 --disable-fast-clz) _fast_clz=no ;;
1342 --enable-altivec) _altivec=yes ;;
1343 --disable-altivec) _altivec=no ;;
1344 --enable-armv5te) _armv5te=yes ;;
1345 --disable-armv5te) _armv5te=no ;;
1346 --enable-armv6) _armv6=yes ;;
1347 --disable-armv6) _armv6=no ;;
1348 --enable-armv6t2) _armv6t2=yes ;;
1349 --disable-armv6t2) _armv6t2=no ;;
1350 --enable-armvfp) _armvfp=yes ;;
1351 --disable-armvfp) _armvfp=no ;;
1352 --enable-neon) neon=yes ;;
1353 --disable-neon) neon=no ;;
1354 --enable-iwmmxt) _iwmmxt=yes ;;
1355 --disable-iwmmxt) _iwmmxt=no ;;
1356 --enable-mmx) _mmx=yes ;;
1357 --disable-mmx) # 3Dnow! and MMX2 require MMX
1358 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1361 echo "Unknown parameter: $ac_option"
1362 exit 1
1365 esac
1366 done
1368 # Atmos: moved this here, to be correct, if --prefix is specified
1369 test -z "$_bindir" && _bindir="$_prefix/bin"
1370 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1371 test -z "$_mandir" && _mandir="$_prefix/share/man"
1372 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1373 test -z "$_libdir" && _libdir="$_prefix/lib"
1375 # Determine our OS name and CPU architecture
1376 if test -z "$_target" ; then
1377 # OS name
1378 system_name=$(uname -s 2>&1)
1379 case "$system_name" in
1380 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1382 Haiku)
1383 system_name=BeOS
1385 IRIX*)
1386 system_name=IRIX
1388 GNU/kFreeBSD)
1389 system_name=FreeBSD
1391 HP-UX*)
1392 system_name=HP-UX
1394 [cC][yY][gG][wW][iI][nN]*)
1395 system_name=CYGWIN
1397 MINGW32*)
1398 system_name=MINGW32
1400 OS/2*)
1401 system_name=OS/2
1404 system_name="$system_name-UNKNOWN"
1406 esac
1409 # host's CPU/instruction set
1410 host_arch=$(uname -p 2>&1)
1411 case "$host_arch" in
1412 i386|sparc|ppc|alpha|arm|mips|vax)
1414 powerpc) # Darwin returns 'powerpc'
1415 host_arch=ppc
1417 *) # uname -p on Linux returns 'unknown' for the processor type,
1418 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1420 # Maybe uname -m (machine hardware name) returns something we
1421 # recognize.
1423 # x86/x86pc is used by QNX
1424 case "$(uname -m 2>&1)" in
1425 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 ;;
1426 ia64) host_arch=ia64 ;;
1427 macppc|ppc) host_arch=ppc ;;
1428 ppc64) host_arch=ppc64 ;;
1429 alpha) host_arch=alpha ;;
1430 sparc) host_arch=sparc ;;
1431 sparc64) host_arch=sparc64 ;;
1432 parisc*|hppa*|9000*) host_arch=hppa ;;
1433 arm*|zaurus|cats) host_arch=arm ;;
1434 sh3|sh4|sh4a) host_arch=sh ;;
1435 s390) host_arch=s390 ;;
1436 s390x) host_arch=s390x ;;
1437 *mips*) host_arch=mips ;;
1438 vax) host_arch=vax ;;
1439 xtensa*) host_arch=xtensa ;;
1440 *) host_arch=UNKNOWN ;;
1441 esac
1443 esac
1444 else # if test -z "$_target"
1445 system_name=$(echo $_target | cut -d '-' -f 2)
1446 case "$(echo $system_name | tr A-Z a-z)" in
1447 linux) system_name=Linux ;;
1448 freebsd) system_name=FreeBSD ;;
1449 gnu/kfreebsd) system_name=FreeBSD ;;
1450 netbsd) system_name=NetBSD ;;
1451 bsd/os) system_name=BSD/OS ;;
1452 openbsd) system_name=OpenBSD ;;
1453 dragonfly) system_name=DragonFly ;;
1454 sunos) system_name=SunOS ;;
1455 qnx) system_name=QNX ;;
1456 morphos) system_name=MorphOS ;;
1457 amigaos) system_name=AmigaOS ;;
1458 mingw32*) system_name=MINGW32 ;;
1459 esac
1460 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1461 host_arch=$(echo $_target | cut -d '-' -f 1)
1462 if test $(echo $host_arch) != "x86_64" ; then
1463 host_arch=$(echo $host_arch | tr '_' '-')
1467 extra_cflags="-I. $extra_cflags"
1468 _timer=timer-linux.c
1469 _getch=getch2.c
1470 if freebsd ; then
1471 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1472 extra_cflags="$extra_cflags -I/usr/local/include"
1475 if netbsd || dragonfly ; then
1476 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1477 extra_cflags="$extra_cflags -I/usr/pkg/include"
1480 if darwin; then
1481 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1482 _timer=timer-darwin.c
1485 if aix ; then
1486 extra_ldflags="$extra_ldflags -lC"
1489 if irix ; then
1490 _ranlib='ar -r'
1491 elif linux ; then
1492 _ranlib='true'
1495 if win32 ; then
1496 _exesuf=".exe"
1497 extra_cflags="$extra_cflags -fno-common"
1498 # -lwinmm is always needed for osdep/timer-win2.c
1499 extra_ldflags="$extra_ldflags -lwinmm"
1500 _pe_executable=yes
1501 _timer=timer-win2.c
1502 _priority=yes
1503 def_dos_paths="#define HAVE_DOS_PATHS 1"
1504 def_priority="#define CONFIG_PRIORITY 1"
1507 if mingw32 ; then
1508 _getch=getch2-win.c
1509 _need_shmem=no
1512 if amigaos ; then
1513 _select=no
1514 _sighandler=no
1515 _stream_cache=no
1516 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1517 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1520 if qnx ; then
1521 extra_ldflags="$extra_ldflags -lph"
1524 if os2 ; then
1525 _exesuf=".exe"
1526 _getch=getch2-os2.c
1527 _need_shmem=no
1528 _priority=yes
1529 def_dos_paths="#define HAVE_DOS_PATHS 1"
1530 def_priority="#define CONFIG_PRIORITY 1"
1533 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1534 test "$I" && break
1535 done
1538 TMPLOG="configure.log"
1539 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1540 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1541 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1542 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1543 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1545 rm -f "$TMPLOG"
1546 echo configuration: $_configuration > "$TMPLOG"
1547 echo >> "$TMPLOG"
1550 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1551 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1555 # Checking CC version...
1556 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1557 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1558 echocheck "$_cc version"
1559 cc_vendor=intel
1560 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1561 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1562 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1563 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1564 # TODO verify older icc/ecc compatibility
1565 case $cc_version in
1567 cc_version="v. ?.??, bad"
1568 cc_fail=yes
1570 10.1|11.0|11.1)
1571 cc_version="$cc_version, ok"
1574 cc_version="$cc_version, bad"
1575 cc_fail=yes
1577 esac
1578 echores "$cc_version"
1579 else
1580 for _cc in "$_cc" gcc cc ; do
1581 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1582 if test "$cc_name_tmp" = "gcc"; then
1583 cc_name=$cc_name_tmp
1584 echocheck "$_cc version"
1585 cc_vendor=gnu
1586 cc_version=$($_cc -dumpversion 2>&1)
1587 case $cc_version in
1588 2.96*)
1589 cc_fail=yes
1592 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1593 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1594 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1596 esac
1597 echores "$cc_version"
1598 break
1600 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1601 if test "$cc_name_tmp" = "Sun C"; then
1602 echocheck "$_cc version"
1603 cc_vendor=sun
1604 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1605 _res_comment="experimental support only"
1606 echores "Sun C $cc_version"
1607 break
1609 done
1610 fi # icc
1611 test "$cc_fail" = yes && die "unsupported compiler version"
1613 if test -z "$_target" && x86 ; then
1614 cat > $TMPC << EOF
1615 int main(void) {
1616 int test[(int)sizeof(char *)-7];
1617 return 0;
1620 cc_check && host_arch=x86_64 || host_arch=i386
1623 echo "Detected operating system: $system_name"
1624 echo "Detected host architecture: $host_arch"
1626 echocheck "host cc"
1627 test "$_host_cc" || _host_cc=$_cc
1628 echores $_host_cc
1630 echocheck "cross compilation"
1631 if test $_cross_compile = auto ; then
1632 cat > $TMPC << EOF
1633 int main(void) { return 0; }
1635 _cross_compile=yes
1636 cc_check && "$TMPEXE" && _cross_compile=no
1638 echores $_cross_compile
1640 if test $_cross_compile = yes; then
1641 tmp_run() {
1642 return 0
1646 # ---
1648 # now that we know what compiler should be used for compilation, try to find
1649 # out which assembler is used by the $_cc compiler
1650 if test "$_as" = auto ; then
1651 _as=$($_cc -print-prog-name=as)
1652 test -z "$_as" && _as=as
1655 if test "$_nm" = auto ; then
1656 _nm=$($_cc -print-prog-name=nm)
1657 test -z "$_nm" && _nm=nm
1660 # XXX: this should be ok..
1661 _cpuinfo="echo"
1663 if test "$_runtime_cpudetection" = no ; then
1665 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1666 # FIXME: Remove the cygwin check once AMD CPUs are supported
1667 if test -r /proc/cpuinfo && ! cygwin; then
1668 # Linux with /proc mounted, extract CPU information from it
1669 _cpuinfo="cat /proc/cpuinfo"
1670 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1671 # FreeBSD with Linux emulation /proc mounted,
1672 # extract CPU information from it
1673 # Don't use it on x86 though, it never reports 3Dnow
1674 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1675 elif darwin && ! x86 ; then
1676 # use hostinfo on Darwin
1677 _cpuinfo="hostinfo"
1678 elif aix; then
1679 # use 'lsattr' on AIX
1680 _cpuinfo="lsattr -E -l proc0 -a type"
1681 elif x86; then
1682 # all other OSes try to extract CPU information from a small helper
1683 # program cpuinfo instead
1684 $_cc -o cpuinfo$_exesuf cpuinfo.c
1685 _cpuinfo="./cpuinfo$_exesuf"
1688 if x86 ; then
1689 # gather more CPU information
1690 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1691 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1692 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1693 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1694 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1696 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1698 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1699 -e s/xmm/sse/ -e s/kni/sse/)
1701 for ext in $pparam ; do
1702 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1703 done
1705 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1706 test $_sse = kernel_check && _mmxext=kernel_check
1708 echocheck "CPU vendor"
1709 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1711 echocheck "CPU type"
1712 echores "$pname"
1715 fi # test "$_runtime_cpudetection" = no
1717 if x86 && test "$_runtime_cpudetection" = no ; then
1718 extcheck() {
1719 if test "$1" = kernel_check ; then
1720 echocheck "kernel support of $2"
1721 cat > $TMPC <<EOF
1722 #include <stdlib.h>
1723 #include <signal.h>
1724 void catch() { exit(1); }
1725 int main(void) {
1726 signal(SIGILL, catch);
1727 __asm__ volatile ("$3":::"memory"); return 0;
1731 if cc_check && tmp_run ; then
1732 eval _$2=yes
1733 echores "yes"
1734 _optimizing="$_optimizing $2"
1735 return 0
1736 else
1737 eval _$2=no
1738 echores "failed"
1739 echo "It seems that your kernel does not correctly support $2."
1740 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1741 return 1
1744 return 0
1747 extcheck $_mmx "mmx" "emms"
1748 extcheck $_mmxext "mmxext" "sfence"
1749 extcheck $_3dnow "3dnow" "femms"
1750 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1751 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1752 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1753 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1754 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1756 echocheck "mtrr support"
1757 if test "$_mtrr" = kernel_check ; then
1758 _mtrr="yes"
1759 _optimizing="$_optimizing mtrr"
1761 echores "$_mtrr"
1763 if test "$_gcc3_ext" != ""; then
1764 # if we had to disable sse/sse2 because the active kernel does not
1765 # support this instruction set extension, we also have to tell
1766 # gcc3 to not generate sse/sse2 instructions for normal C code
1767 cat > $TMPC << EOF
1768 int main(void) { return 0; }
1770 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1776 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1777 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1778 def_local_aligned_8='#define HAVE_LOCAL_ALIGNED_8 0'
1779 def_local_aligned_16='#define HAVE_LOCAL_ALIGNED_16 0'
1780 _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 TOMI GENERIC'
1781 case "$host_arch" in
1782 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1783 _arch='X86 X86_32'
1784 _target_arch="ARCH_X86 = yes"
1785 _target_subarch="ARCH_X86_32 = yes"
1786 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1787 def_local_aligned_8='#define HAVE_LOCAL_ALIGNED_8 1'
1788 def_local_aligned_16='#define HAVE_LOCAL_ALIGNED_16 1'
1789 iproc=486
1790 proc=i486
1793 if test "$_runtime_cpudetection" = no ; then
1794 case "$pvendor" in
1795 AuthenticAMD)
1796 case "$pfamily" in
1797 3) proc=i386 iproc=386 ;;
1798 4) proc=i486 iproc=486 ;;
1799 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1800 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1801 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1802 proc=k6-3
1803 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1804 proc=geode
1805 elif test "$pmodel" -ge 8; then
1806 proc=k6-2
1807 elif test "$pmodel" -ge 6; then
1808 proc=k6
1809 else
1810 proc=i586
1813 6) iproc=686
1814 # It's a bit difficult to determine the correct type of Family 6
1815 # AMD CPUs just from their signature. Instead, we check directly
1816 # whether it supports SSE.
1817 if test "$_sse" = yes; then
1818 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1819 proc=athlon-xp
1820 else
1821 # Again, gcc treats athlon and athlon-tbird similarly.
1822 proc=athlon
1825 15) iproc=686
1826 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1827 # caught and remedied in the optimization tests below.
1828 proc=k8
1831 *) proc=amdfam10 iproc=686
1832 test $_fast_clz = "auto" && _fast_clz=yes
1834 esac
1836 GenuineIntel)
1837 case "$pfamily" in
1838 3) proc=i386 iproc=386 ;;
1839 4) proc=i486 iproc=486 ;;
1840 5) iproc=586
1841 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1842 proc=pentium-mmx # 4 is desktop, 8 is mobile
1843 else
1844 proc=i586
1847 6) iproc=686
1848 if test "$pmodel" -ge 15; then
1849 proc=core2
1850 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1851 proc=pentium-m
1852 elif test "$pmodel" -ge 7; then
1853 proc=pentium3
1854 elif test "$pmodel" -ge 3; then
1855 proc=pentium2
1856 else
1857 proc=i686
1859 test $_fast_clz = "auto" && _fast_clz=yes
1861 15) iproc=686
1862 # A nocona in 32-bit mode has no more capabilities than a prescott.
1863 if test "$pmodel" -ge 3; then
1864 proc=prescott
1865 else
1866 proc=pentium4
1867 test $_fast_clz = "auto" && _fast_clz=yes
1869 test $_fast_cmov = "auto" && _fast_cmov=no
1871 *) proc=prescott iproc=686 ;;
1872 esac
1874 CentaurHauls)
1875 case "$pfamily" in
1876 5) iproc=586
1877 if test "$pmodel" -ge 8; then
1878 proc=winchip2
1879 elif test "$pmodel" -ge 4; then
1880 proc=winchip-c6
1881 else
1882 proc=i586
1885 6) iproc=686
1886 if test "$pmodel" -ge 9; then
1887 proc=c3-2
1888 else
1889 proc=c3
1890 iproc=586
1893 *) proc=i686 iproc=i686 ;;
1894 esac
1896 unknown)
1897 case "$pfamily" in
1898 3) proc=i386 iproc=386 ;;
1899 4) proc=i486 iproc=486 ;;
1900 *) proc=i586 iproc=586 ;;
1901 esac
1904 proc=i586 iproc=586 ;;
1905 esac
1906 test $_fast_clz = "auto" && _fast_clz=no
1907 fi # test "$_runtime_cpudetection" = no
1910 # check that gcc supports our CPU, if not, fall back to earlier ones
1911 # LGB: check -mcpu and -march swithing step by step with enabling
1912 # to fall back till 386.
1914 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1916 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1917 cpuopt=-mtune
1918 else
1919 cpuopt=-mcpu
1922 echocheck "GCC & CPU optimization abilities"
1923 cat > $TMPC << EOF
1924 int main(void) { return 0; }
1926 if test "$_runtime_cpudetection" = no ; then
1927 cc_check -march=native && proc=native
1928 if test "$proc" = "k8"; then
1929 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1931 if test "$proc" = "athlon-xp"; then
1932 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1934 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1935 cc_check -march=$proc $cpuopt=$proc || proc=k6
1937 if test "$proc" = "k6" || test "$proc" = "c3"; then
1938 if ! cc_check -march=$proc $cpuopt=$proc; then
1939 if cc_check -march=i586 $cpuopt=i686; then
1940 proc=i586-i686
1941 else
1942 proc=i586
1946 if test "$proc" = "prescott" ; then
1947 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1949 if test "$proc" = "core2" ; then
1950 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1952 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
1953 cc_check -march=$proc $cpuopt=$proc || proc=i686
1955 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1956 cc_check -march=$proc $cpuopt=$proc || proc=i586
1958 if test "$proc" = "i586"; then
1959 cc_check -march=$proc $cpuopt=$proc || proc=i486
1961 if test "$proc" = "i486" ; then
1962 cc_check -march=$proc $cpuopt=$proc || proc=i386
1964 if test "$proc" = "i386" ; then
1965 cc_check -march=$proc $cpuopt=$proc || proc=error
1967 if test "$proc" = "error" ; then
1968 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1969 _mcpu=""
1970 _march=""
1971 _optimizing=""
1972 elif test "$proc" = "i586-i686"; then
1973 _march="-march=i586"
1974 _mcpu="$cpuopt=i686"
1975 _optimizing="$proc"
1976 else
1977 _march="-march=$proc"
1978 _mcpu="$cpuopt=$proc"
1979 _optimizing="$proc"
1981 else # if test "$_runtime_cpudetection" = no
1982 _mcpu="$cpuopt=generic"
1983 # at least i486 required, for bswap instruction
1984 _march="-march=i486"
1985 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1986 cc_check $_mcpu || _mcpu=""
1987 cc_check $_march $_mcpu || _march=""
1990 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1991 ## autodetected mcpu/march parameters
1992 if test "$_target" ; then
1993 # TODO: it may be a good idea to check GCC and fall back in all cases
1994 if test "$host_arch" = "i586-i686"; then
1995 _march="-march=i586"
1996 _mcpu="$cpuopt=i686"
1997 else
1998 _march="-march=$host_arch"
1999 _mcpu="$cpuopt=$host_arch"
2002 proc="$host_arch"
2004 case "$proc" in
2005 i386) iproc=386 ;;
2006 i486) iproc=486 ;;
2007 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
2008 i686|athlon*|pentium*) iproc=686 ;;
2009 *) iproc=586 ;;
2010 esac
2013 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
2014 _fast_cmov="yes"
2015 else
2016 _fast_cmov="no"
2018 test $_fast_clz = "auto" && _fast_clz=yes
2020 echores "$proc"
2023 ia64)
2024 _arch='IA64'
2025 _target_arch='ARCH_IA64 = yes'
2026 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2027 iproc='ia64'
2030 x86_64|amd64)
2031 _arch='X86 X86_64'
2032 _target_subarch='ARCH_X86_64 = yes'
2033 _target_arch="ARCH_X86 = yes"
2034 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2035 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2036 iproc='x86_64'
2038 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
2039 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
2040 cpuopt=-mtune
2041 else
2042 cpuopt=-mcpu
2044 if test "$_runtime_cpudetection" = no ; then
2045 case "$pvendor" in
2046 AuthenticAMD)
2047 case "$pfamily" in
2048 15) proc=k8
2049 test $_fast_clz = "auto" && _fast_clz=no
2051 *) proc=amdfam10;;
2052 esac
2054 GenuineIntel)
2055 case "$pfamily" in
2056 6) proc=core2;;
2058 # 64-bit prescotts exist, but as far as GCC is concerned they
2059 # have the same capabilities as a nocona.
2060 proc=nocona
2061 test $_fast_cmov = "auto" && _fast_cmov=no
2062 test $_fast_clz = "auto" && _fast_clz=no
2064 esac
2067 proc=error;;
2068 esac
2069 fi # test "$_runtime_cpudetection" = no
2071 echocheck "GCC & CPU optimization abilities"
2072 cat > $TMPC << EOF
2073 int main(void) { return 0; }
2075 # This is a stripped-down version of the i386 fallback.
2076 if test "$_runtime_cpudetection" = no ; then
2077 cc_check -march=native && proc=native
2078 # --- AMD processors ---
2079 if test "$proc" = "k8"; then
2080 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2082 # This will fail if gcc version < 3.3, which is ok because earlier
2083 # versions don't really support 64-bit on amd64.
2084 # Is this a valid assumption? -Corey
2085 if test "$proc" = "athlon-xp"; then
2086 cc_check -march=$proc $cpuopt=$proc || proc=error
2088 # --- Intel processors ---
2089 if test "$proc" = "core2"; then
2090 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
2092 if test "$proc" = "x86-64"; then
2093 cc_check -march=$proc $cpuopt=$proc || proc=nocona
2095 if test "$proc" = "nocona"; then
2096 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
2098 if test "$proc" = "pentium4"; then
2099 cc_check -march=$proc $cpuopt=$proc || proc=error
2102 _march="-march=$proc"
2103 _mcpu="$cpuopt=$proc"
2104 if test "$proc" = "error" ; then
2105 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2106 _mcpu=""
2107 _march=""
2109 else # if test "$_runtime_cpudetection" = no
2110 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2111 _march="-march=x86-64"
2112 _mcpu="$cpuopt=generic"
2113 cc_check $_mcpu || _mcpu="x86-64"
2114 cc_check $_mcpu || _mcpu=""
2115 cc_check $_march $_mcpu || _march=""
2118 _optimizing="$proc"
2119 test $_fast_cmov = "auto" && _fast_cmov=yes
2120 test $_fast_clz = "auto" && _fast_clz=yes
2122 echores "$proc"
2125 sparc|sparc64)
2126 _arch='SPARC'
2127 _target_arch='ARCH_SPARC = yes'
2128 iproc='sparc'
2129 if test "$host_arch" = "sparc64" ; then
2130 _vis='yes'
2131 proc='ultrasparc'
2132 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2133 elif sunos ; then
2134 echocheck "CPU type"
2135 karch=$(uname -m)
2136 case "$(echo $karch)" in
2137 sun4) proc=v7 ;;
2138 sun4c) proc=v7 ;;
2139 sun4d) proc=v8 ;;
2140 sun4m) proc=v8 ;;
2141 sun4u) proc=ultrasparc _vis='yes' ;;
2142 sun4v) proc=v9 ;;
2143 *) proc=v8 ;;
2144 esac
2145 echores "$proc"
2146 else
2147 proc=v8
2149 _mcpu="-mcpu=$proc"
2150 _optimizing="$proc"
2153 arm*)
2154 _arch='ARM'
2155 _target_arch='ARCH_ARM = yes'
2156 iproc='arm'
2159 avr32)
2160 _arch='AVR32'
2161 _target_arch='ARCH_AVR32 = yes'
2162 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2163 iproc='avr32'
2164 test $_fast_clz = "auto" && _fast_clz=yes
2167 sh|sh4)
2168 _arch='SH4'
2169 _target_arch='ARCH_SH4 = yes'
2170 iproc='sh4'
2173 ppc|ppc64|powerpc|powerpc64)
2174 _arch='PPC'
2175 def_dcbzl='#define HAVE_DCBZL 0'
2176 _target_arch='ARCH_PPC = yes'
2177 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2178 def_local_aligned_8='#define HAVE_LOCAL_ALIGNED_8 1'
2179 def_local_aligned_16='#define HAVE_LOCAL_ALIGNED_16 1'
2180 iproc='ppc'
2182 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2183 _arch='PPC PPC64'
2184 _target_subarch='ARCH_PPC64 = yes'
2185 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2187 echocheck "CPU type"
2188 case $system_name in
2189 Linux)
2190 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2191 if test -n "$($_cpuinfo | grep altivec)"; then
2192 test $_altivec = auto && _altivec=yes
2195 Darwin)
2196 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2197 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2198 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2199 test $_altivec = auto && _altivec=yes
2202 NetBSD)
2203 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2204 case $cc_version in
2205 2*|3.0*|3.1*|3.2*|3.3*)
2208 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2209 test $_altivec = auto && _altivec=yes
2212 esac
2214 AIX)
2215 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2217 esac
2218 if test "$_altivec" = yes; then
2219 echores "$proc altivec"
2220 else
2221 _altivec=no
2222 echores "$proc"
2225 echocheck "GCC & CPU optimization abilities"
2227 if test -n "$proc"; then
2228 case "$proc" in
2229 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2230 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2231 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2232 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2233 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2234 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2235 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2236 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2237 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2238 *) ;;
2239 esac
2240 # gcc 3.1(.1) and up supports 7400 and 7450
2241 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2242 case "$proc" in
2243 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2244 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2245 *) ;;
2246 esac
2248 # gcc 3.2 and up supports 970
2249 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2250 case "$proc" in
2251 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2252 def_dcbzl='#define HAVE_DCBZL 1' ;;
2253 *) ;;
2254 esac
2256 # gcc 3.3 and up supports POWER4
2257 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2258 case "$proc" in
2259 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2260 *) ;;
2261 esac
2263 # gcc 3.4 and up supports 440*
2264 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2265 case "$proc" in
2266 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2267 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2268 *) ;;
2269 esac
2271 # gcc 4.0 and up supports POWER5
2272 if test "$_cc_major" -ge "4"; then
2273 case "$proc" in
2274 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2275 *) ;;
2276 esac
2280 if test -n "$_mcpu"; then
2281 _optimizing=$(echo $_mcpu | cut -c 8-)
2282 echores "$_optimizing"
2283 else
2284 echores "none"
2287 test $_fast_clz = "auto" && _fast_clz=yes
2291 alpha*)
2292 _arch='ALPHA'
2293 _target_arch='ARCH_ALPHA = yes'
2294 iproc='alpha'
2296 echocheck "CPU type"
2297 cat > $TMPC << EOF
2298 int main(void) {
2299 unsigned long ver, mask;
2300 __asm__ ("implver %0" : "=r" (ver));
2301 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2302 printf("%ld-%x\n", ver, ~mask);
2303 return 0;
2306 $_cc -o "$TMPEXE" "$TMPC"
2307 case $("$TMPEXE") in
2309 0-0) proc="ev4"; _mvi="0";;
2310 1-0) proc="ev5"; _mvi="0";;
2311 1-1) proc="ev56"; _mvi="0";;
2312 1-101) proc="pca56"; _mvi="1";;
2313 2-303) proc="ev6"; _mvi="1";;
2314 2-307) proc="ev67"; _mvi="1";;
2315 2-1307) proc="ev68"; _mvi="1";;
2316 esac
2317 echores "$proc"
2319 echocheck "GCC & CPU optimization abilities"
2320 if test "$proc" = "ev68" ; then
2321 cc_check -mcpu=$proc || proc=ev67
2323 if test "$proc" = "ev67" ; then
2324 cc_check -mcpu=$proc || proc=ev6
2326 _mcpu="-mcpu=$proc"
2327 echores "$proc"
2329 test $_fast_clz = "auto" && _fast_clz=yes
2331 _optimizing="$proc"
2334 mips)
2335 _arch='SGI_MIPS'
2336 _target_arch='ARCH_SGI_MIPS = yes'
2337 iproc='sgi-mips'
2339 if irix ; then
2340 echocheck "CPU type"
2341 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2342 case "$(echo $proc)" in
2343 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2344 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2345 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2346 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2347 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2348 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2349 esac
2350 # gcc < 3.x does not support -mtune.
2351 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2352 _mcpu=''
2354 echores "$proc"
2357 test $_fast_clz = "auto" && _fast_clz=yes
2361 hppa)
2362 _arch='PA_RISC'
2363 _target_arch='ARCH_PA_RISC = yes'
2364 iproc='PA-RISC'
2367 s390)
2368 _arch='S390'
2369 _target_arch='ARCH_S390 = yes'
2370 iproc='390'
2373 s390x)
2374 _arch='S390X'
2375 _target_arch='ARCH_S390X = yes'
2376 iproc='390x'
2379 vax)
2380 _arch='VAX'
2381 _target_arch='ARCH_VAX = yes'
2382 iproc='vax'
2385 xtensa)
2386 _arch='XTENSA'
2387 _target_arch='ARCH_XTENSA = yes'
2388 iproc='xtensa'
2391 generic)
2392 _arch='GENERIC'
2393 _target_arch='ARCH_GENERIC = yes'
2397 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2398 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2399 die "unsupported architecture $host_arch"
2401 esac # case "$host_arch" in
2403 if test "$_runtime_cpudetection" = yes ; then
2404 if x86 ; then
2405 test "$_cmov" != no && _cmov=yes
2406 x86_32 && _cmov=no
2407 test "$_mmx" != no && _mmx=yes
2408 test "$_3dnow" != no && _3dnow=yes
2409 test "$_3dnowext" != no && _3dnowext=yes
2410 test "$_mmxext" != no && _mmxext=yes
2411 test "$_sse" != no && _sse=yes
2412 test "$_sse2" != no && _sse2=yes
2413 test "$_ssse3" != no && _ssse3=yes
2414 test "$_mtrr" != no && _mtrr=yes
2416 if ppc; then
2417 _altivec=yes
2422 # endian testing
2423 echocheck "byte order"
2424 if test "$_big_endian" = auto ; then
2425 cat > $TMPC <<EOF
2426 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2427 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2428 int main(void) { return (int)ascii_name; }
2430 if cc_check ; then
2431 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2432 _big_endian=yes
2433 else
2434 _big_endian=no
2436 else
2437 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2440 if test "$_big_endian" = yes ; then
2441 _byte_order='big-endian'
2442 def_words_endian='#define WORDS_BIGENDIAN 1'
2443 def_bigendian='#define HAVE_BIGENDIAN 1'
2444 def_av_bigendian='#define AV_HAVE_BIGENDIAN 1'
2445 else
2446 _byte_order='little-endian'
2447 def_words_endian='#undef WORDS_BIGENDIAN'
2448 def_bigendian='#define HAVE_BIGENDIAN 0'
2449 def_av_bigendian='#define AV_HAVE_BIGENDIAN 0'
2451 echores "$_byte_order"
2454 echocheck "extern symbol prefix"
2455 cat > $TMPC << EOF
2456 int ff_extern;
2458 cc_check -c || die "Symbol mangling check failed."
2459 sym=$($_nm -P -g $TMPEXE)
2460 extern_prefix=${sym%%ff_extern*}
2461 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2462 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2463 echores $extern_prefix
2466 echocheck "assembler support of -pipe option"
2467 cat > $TMPC << EOF
2468 int main(void) { return 0; }
2470 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2471 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2474 echocheck "compiler support of named assembler arguments"
2475 _named_asm_args=yes
2476 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2477 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2478 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2479 _named_asm_args=no
2480 def_named_asm_args="#undef NAMED_ASM_ARGS"
2482 echores $_named_asm_args
2485 if darwin && test "$cc_vendor" = "gnu" ; then
2486 echocheck "GCC support of -mstackrealign"
2487 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2488 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2489 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2490 # wrong code with this flag, but this can be worked around by adding
2491 # -fno-unit-at-a-time as described in the blog post at
2492 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2493 cat > $TMPC << EOF
2494 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2495 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2497 cc_check -O4 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2498 test -z "$cflags_stackrealign" && cc_check -O4 -mstackrealign -fno-unit-at-a-time \
2499 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2500 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2501 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2504 # Checking for CFLAGS
2505 _install_strip="-s"
2506 if test "$_profile" != "" || test "$_debug" != "" ; then
2507 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2508 _install_strip=
2509 elif test -z "$CFLAGS" ; then
2510 if test "$cc_vendor" = "intel" ; then
2511 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2512 elif test "$cc_vendor" = "sun" ; then
2513 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2514 elif test "$cc_vendor" != "gnu" ; then
2515 CFLAGS="-O2 $_march $_mcpu $_pipe"
2516 else
2517 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2518 extra_ldflags="$extra_ldflags -ffast-math"
2520 else
2521 _warn_CFLAGS=yes
2524 cat > $TMPC << EOF
2525 int main(void) { return 0; }
2527 if test "$cc_vendor" = "gnu" ; then
2528 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2529 cc_check -Wdeclaration-after-statement && CFLAGS="-Wdeclaration-after-statement $CFLAGS"
2530 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2531 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2532 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2533 cc_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2534 else
2535 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2538 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2541 if test -n "$LDFLAGS" ; then
2542 extra_ldflags="$extra_ldflags $LDFLAGS"
2543 _warn_CFLAGS=yes
2544 elif test "$cc_vendor" = "intel" ; then
2545 extra_ldflags="$extra_ldflags -i-static"
2547 if test -n "$CPPFLAGS" ; then
2548 extra_cflags="$extra_cflags $CPPFLAGS"
2549 _warn_CFLAGS=yes
2554 if x86_32 ; then
2555 # Checking assembler (_as) compatibility...
2556 # Added workaround for older as that reads from stdin by default - atmos
2557 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2558 echocheck "assembler ($_as $as_version)"
2560 _pref_as_version='2.9.1'
2561 echo 'nop' > $TMPS
2562 if test "$_mmx" = yes ; then
2563 echo 'emms' >> $TMPS
2565 if test "$_3dnow" = yes ; then
2566 _pref_as_version='2.10.1'
2567 echo 'femms' >> $TMPS
2569 if test "$_3dnowext" = yes ; then
2570 _pref_as_version='2.10.1'
2571 echo 'pswapd %mm0, %mm0' >> $TMPS
2573 if test "$_mmxext" = yes ; then
2574 _pref_as_version='2.10.1'
2575 echo 'movntq %mm0, (%eax)' >> $TMPS
2577 if test "$_sse" = yes ; then
2578 _pref_as_version='2.10.1'
2579 echo 'xorps %xmm0, %xmm0' >> $TMPS
2581 #if test "$_sse2" = yes ; then
2582 # _pref_as_version='2.11'
2583 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2585 if test "$_cmov" = yes ; then
2586 _pref_as_version='2.10.1'
2587 echo 'cmovb %eax, %ebx' >> $TMPS
2589 if test "$_ssse3" = yes ; then
2590 _pref_as_version='2.16.92'
2591 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2593 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2595 if test "$as_verc_fail" != yes ; then
2596 echores "ok"
2597 else
2598 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2599 echores "failed"
2600 die "obsolete binutils version"
2603 fi #if x86_32
2605 echocheck ".align is a power of two"
2606 if test "$_asmalign_pot" = auto ; then
2607 _asmalign_pot=no
2608 cat > $TMPC << EOF
2609 int main(void) { __asm__ (".align 3"); return 0; }
2611 cc_check && _asmalign_pot=yes
2613 if test "$_asmalign_pot" = "yes" ; then
2614 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2615 else
2616 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2618 echores $_asmalign_pot
2620 if x86 ; then
2621 echocheck "10 assembler operands"
2622 ten_operands=no
2623 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2624 cat > $TMPC << EOF
2625 int main(void) {
2626 int x=0;
2627 __asm__ volatile(
2629 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2631 return 0;
2634 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2635 echores $ten_operands
2637 echocheck "ebx availability"
2638 ebx_available=no
2639 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2640 cat > $TMPC << EOF
2641 int main(void) {
2642 int x;
2643 __asm__ volatile(
2644 "xor %0, %0"
2645 :"=b"(x)
2646 // just adding ebx to clobber list seems unreliable with some
2647 // compilers, e.g. Haiku's gcc 2.95
2649 // and the above check does not work for OSX 64 bit...
2650 __asm__ volatile("":::"%ebx");
2651 return 0;
2654 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2655 echores $ebx_available
2657 echocheck "PIC"
2658 pic=no
2659 cat > $TMPC << EOF
2660 int main(void) {
2661 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2662 #error PIC not enabled
2663 #endif
2664 return 0;
2667 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2668 echores $pic
2670 echocheck "yasm"
2671 if test -z "$YASMFLAGS" ; then
2672 if darwin ; then
2673 x86_64 && objformat="macho64" || objformat="macho"
2674 elif win32 ; then
2675 objformat="win32"
2676 else
2677 objformat="elf"
2679 # currently tested for Linux x86, x86_64
2680 YASMFLAGS="-f $objformat"
2681 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2682 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2683 case "$objformat" in
2684 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2685 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2686 esac
2687 else
2688 _warn_CFLAGS=yes
2691 echo "pabsw xmm0, xmm0" > $TMPS
2692 yasm_check || _yasm=""
2693 if test $_yasm ; then
2694 test "$_mmx" = "yes" && fft_mmx="yes"
2695 def_yasm='#define HAVE_YASM 1'
2696 _have_yasm="yes"
2697 echores "$_yasm"
2698 else
2699 def_yasm='#define HAVE_YASM 0'
2700 fft_mmx="no"
2701 _have_yasm="no"
2702 echores "no"
2705 echocheck "bswap"
2706 def_bswap='#define HAVE_BSWAP 0'
2707 echo 'bswap %eax' > $TMPS
2708 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2709 echores "$bswap"
2710 fi #if x86
2713 #FIXME: This should happen before the check for CFLAGS..
2714 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2715 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2717 # check if AltiVec is supported by the compiler, and how to enable it
2718 echocheck "GCC AltiVec flags"
2719 cat > $TMPC << EOF
2720 int main(void) { return 0; }
2722 if $(cc_check -maltivec -mabi=altivec) ; then
2723 _altivec_gcc_flags="-maltivec -mabi=altivec"
2724 # check if <altivec.h> should be included
2725 cat > $TMPC << EOF
2726 #include <altivec.h>
2727 int main(void) { return 0; }
2729 if $(cc_check $_altivec_gcc_flags) ; then
2730 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2731 inc_altivec_h='#include <altivec.h>'
2732 else
2733 cat > $TMPC << EOF
2734 int main(void) { return 0; }
2736 if $(cc_check -faltivec) ; then
2737 _altivec_gcc_flags="-faltivec"
2738 else
2739 _altivec=no
2740 _altivec_gcc_flags="none, AltiVec disabled"
2744 echores "$_altivec_gcc_flags"
2746 # check if the compiler supports braces for vector declarations
2747 cat > $TMPC << EOF
2748 $inc_altivec_h
2749 int main(void) { (vector int) {1}; return 0; }
2751 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2753 # Disable runtime cpudetection if we cannot generate AltiVec code or
2754 # AltiVec is disabled by the user.
2755 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2756 && _runtime_cpudetection=no
2758 # Show that we are optimizing for AltiVec (if enabled and supported).
2759 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2760 && _optimizing="$_optimizing altivec"
2762 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2763 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2766 if ppc ; then
2767 def_xform_asm='#define HAVE_XFORM_ASM 0'
2768 xform_asm=no
2769 echocheck "XFORM ASM support"
2770 cat > $TMPC << EOF
2771 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2773 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2774 echores "$xform_asm"
2777 if arm ; then
2778 echocheck "ARM pld instruction"
2779 cat > $TMPC << EOF
2780 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2782 pld=no
2783 cc_check && pld=yes
2784 echores "$pld"
2786 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2787 if test $_armv5te = "auto" ; then
2788 cat > $TMPC << EOF
2789 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2791 _armv5te=no
2792 cc_check && _armv5te=yes
2794 echores "$_armv5te"
2796 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2798 echocheck "ARMv6 (SIMD instructions)"
2799 if test $_armv6 = "auto" ; then
2800 cat > $TMPC << EOF
2801 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2803 _armv6=no
2804 cc_check && _armv6=yes
2806 echores "$_armv6"
2808 echocheck "ARMv6t2 (SIMD instructions)"
2809 if test $_armv6t2 = "auto" ; then
2810 cat > $TMPC << EOF
2811 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2813 _armv6t2=no
2814 cc_check && _armv6t2=yes
2816 echores "$_armv6"
2818 echocheck "ARM VFP"
2819 if test $_armvfp = "auto" ; then
2820 cat > $TMPC << EOF
2821 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2823 _armvfp=no
2824 cc_check && _armvfp=yes
2826 echores "$_armvfp"
2828 echocheck "ARM NEON"
2829 if test $neon = "auto" ; then
2830 cat > $TMPC << EOF
2831 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2833 neon=no
2834 cc_check && neon=yes
2836 echores "$neon"
2838 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2839 if test $_iwmmxt = "auto" ; then
2840 cat > $TMPC << EOF
2841 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2843 _iwmmxt=no
2844 cc_check && _iwmmxt=yes
2846 echores "$_iwmmxt"
2849 _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'
2850 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2851 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2852 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2853 test "$_3dnow" = yes && _cpuexts="AMD3DNOW $_cpuexts"
2854 test "$_3dnowext" = yes && _cpuexts="AMD3DNOWEXT $_cpuexts"
2855 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2856 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2857 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2858 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2859 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2860 test "$_fast_clz" = yes && _cpuexts="FAST_CLZ $_cpuexts"
2861 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2862 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2863 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2864 test "$_armv6t2" = yes && _cpuexts="ARMV6T2 $_cpuexts"
2865 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2866 test "$neon" = yes && _cpuexts="NEON $_cpuexts"
2867 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2868 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2869 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2871 # Checking kernel version...
2872 if x86_32 && linux ; then
2873 _k_verc_problem=no
2874 kernel_version=$(uname -r 2>&1)
2875 echocheck "$system_name kernel version"
2876 case "$kernel_version" in
2877 '') kernel_version="?.??"; _k_verc_fail=yes;;
2878 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2879 _k_verc_problem=yes;;
2880 esac
2881 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2882 _k_verc_fail=yes
2884 if test "$_k_verc_fail" ; then
2885 echores "$kernel_version, fail"
2886 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2887 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2888 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2889 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2890 echo "2.2.x you must upgrade it to get SSE support!"
2891 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2892 else
2893 echores "$kernel_version, ok"
2897 ######################
2898 # MAIN TESTS GO HERE #
2899 ######################
2902 echocheck "-lposix"
2903 cat > $TMPC <<EOF
2904 int main(void) { return 0; }
2906 if cc_check -lposix ; then
2907 extra_ldflags="$extra_ldflags -lposix"
2908 echores "yes"
2909 else
2910 echores "no"
2913 echocheck "-lm"
2914 cat > $TMPC <<EOF
2915 int main(void) { return 0; }
2917 if cc_check -lm ; then
2918 _ld_lm="-lm"
2919 echores "yes"
2920 else
2921 _ld_lm=""
2922 echores "no"
2926 echocheck "langinfo"
2927 if test "$_langinfo" = auto ; then
2928 cat > $TMPC <<EOF
2929 #include <langinfo.h>
2930 int main(void) { nl_langinfo(CODESET); return 0; }
2932 _langinfo=no
2933 cc_check && _langinfo=yes
2935 if test "$_langinfo" = yes ; then
2936 def_langinfo='#define HAVE_LANGINFO 1'
2937 else
2938 def_langinfo='#undef HAVE_LANGINFO'
2940 echores "$_langinfo"
2943 echocheck "language"
2944 # Set preferred languages, "all" uses English as main language.
2945 test -z "$language" && language=$LINGUAS
2946 test -z "$language_doc" && language_doc=$language
2947 test -z "$language_man" && language_man=$language
2948 test -z "$language_msg" && language_msg=$language
2949 language_doc=$(echo $language_doc | tr , " ")
2950 language_man=$(echo $language_man | tr , " ")
2951 language_msg=$(echo $language_msg | tr , " ")
2953 test "$language_doc" = "all" && language_doc=$doc_lang_all
2954 test "$language_man" = "all" && language_man=$man_lang_all
2955 test "$language_msg" = "all" && language_msg=en
2957 # Prune non-existing translations from language lists.
2958 # Set message translation to the first available language.
2959 # Fall back on English.
2960 for lang in $language_doc ; do
2961 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2962 done
2963 language_doc=$tmp_language_doc
2964 test -z "$language_doc" && language_doc=en
2966 for lang in $language_man ; do
2967 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2968 done
2969 language_man=$tmp_language_man
2970 test -z "$language_man" && language_man=en
2972 for lang in $language_msg ; do
2973 test -f "help/help_mp-${lang}.h" && tmp_language_msg=$lang && break
2974 done
2975 language_msg=$tmp_language_msg
2976 test -z "$language_msg" && language_msg=en
2977 _mp_help="help/help_mp-${language_msg}.h"
2978 echores "messages: $language_msg - man pages: $language_man - documentation: $language_doc"
2981 echocheck "enable sighandler"
2982 if test "$_sighandler" = yes ; then
2983 def_sighandler='#define CONFIG_SIGHANDLER 1'
2984 else
2985 def_sighandler='#undef CONFIG_SIGHANDLER'
2987 echores "$_sighandler"
2989 echocheck "runtime cpudetection"
2990 if test "$_runtime_cpudetection" = yes ; then
2991 _optimizing="Runtime CPU-Detection enabled"
2992 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2993 else
2994 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2996 echores "$_runtime_cpudetection"
2999 echocheck "restrict keyword"
3000 for restrict_keyword in restrict __restrict __restrict__ ; do
3001 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
3002 if cc_check; then
3003 def_restrict_keyword=$restrict_keyword
3004 break;
3006 done
3007 if [ -n "$def_restrict_keyword" ]; then
3008 echores "$def_restrict_keyword"
3009 else
3010 echores "none"
3012 # Avoid infinite recursion loop ("#define restrict restrict")
3013 if [ "$def_restrict_keyword" != "restrict" ]; then
3014 def_restrict_keyword="#define restrict $def_restrict_keyword"
3015 else
3016 def_restrict_keyword=""
3020 echocheck "__builtin_expect"
3021 # GCC branch prediction hint
3022 cat > $TMPC << EOF
3023 int foo(int a) {
3024 a = __builtin_expect(a, 10);
3025 return a == 10 ? 0 : 1;
3027 int main(void) { return foo(10) && foo(0); }
3029 _builtin_expect=no
3030 cc_check && _builtin_expect=yes
3031 if test "$_builtin_expect" = yes ; then
3032 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
3033 else
3034 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
3036 echores "$_builtin_expect"
3039 echocheck "kstat"
3040 cat > $TMPC << EOF
3041 #include <kstat.h>
3042 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
3044 _kstat=no
3045 cc_check -lkstat && _kstat=yes
3046 if test "$_kstat" = yes ; then
3047 def_kstat="#define HAVE_LIBKSTAT 1"
3048 extra_ldflags="$extra_ldflags -lkstat"
3049 else
3050 def_kstat="#undef HAVE_LIBKSTAT"
3052 echores "$_kstat"
3055 echocheck "posix4"
3056 # required for nanosleep on some systems
3057 cat > $TMPC << EOF
3058 #include <time.h>
3059 int main(void) { (void) nanosleep(0, 0); return 0; }
3061 _posix4=no
3062 cc_check -lposix4 && _posix4=yes
3063 if test "$_posix4" = yes ; then
3064 extra_ldflags="$extra_ldflags -lposix4"
3066 echores "$_posix4"
3068 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
3069 echocheck $func
3070 cat > $TMPC << EOF
3071 #include <math.h>
3072 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
3074 eval _$func=no
3075 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
3076 if eval test "x\$_$func" = "xyes"; then
3077 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
3078 echores yes
3079 else
3080 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
3081 echores no
3083 done
3086 echocheck "mkstemp"
3087 cat > $TMPC << EOF
3088 #include <stdlib.h>
3089 int main(void) { char a; mkstemp(&a); return 0; }
3091 _mkstemp=no
3092 cc_check && _mkstemp=yes
3093 if test "$_mkstemp" = yes ; then
3094 def_mkstemp='#define HAVE_MKSTEMP 1'
3095 else
3096 def_mkstemp='#undef HAVE_MKSTEMP'
3098 echores "$_mkstemp"
3101 echocheck "nanosleep"
3102 # also check for nanosleep
3103 cat > $TMPC << EOF
3104 #include <time.h>
3105 int main(void) { (void) nanosleep(0, 0); return 0; }
3107 _nanosleep=no
3108 cc_check && _nanosleep=yes
3109 if test "$_nanosleep" = yes ; then
3110 def_nanosleep='#define HAVE_NANOSLEEP 1'
3111 else
3112 def_nanosleep='#undef HAVE_NANOSLEEP'
3114 echores "$_nanosleep"
3117 echocheck "socklib"
3118 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3119 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3120 cat > $TMPC << EOF
3121 #include <netdb.h>
3122 #include <sys/socket.h>
3123 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3125 _socklib=no
3126 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3127 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3128 done
3129 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3130 if test $_winsock2_h = auto ; then
3131 _winsock2_h=no
3132 cat > $TMPC << EOF
3133 #include <winsock2.h>
3134 int main(void) { (void) gethostbyname(0); return 0; }
3136 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3138 test "$_ld_sock" && _res_comment="using $_ld_sock"
3139 echores "$_socklib"
3142 if test $_winsock2_h = yes ; then
3143 _ld_sock="-lws2_32"
3144 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3145 cc_check_winsock2_h='-DHAVE_WINSOCK2_H=1'
3146 else
3147 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3148 cc_check_winsock2_h='-DHAVE_WINSOCK2_H=0'
3152 echocheck "netdb.h, struct addrinfo"
3153 if test "$_struct_addrinfo" = auto; then
3154 _struct_addrinfo=no
3155 cat > $TMPC << EOF
3156 #if HAVE_WINSOCK2_H
3157 #include <winsock2.h>
3158 #include <ws2tcpip.h>
3159 #else
3160 #include <sys/types.h>
3161 #include <sys/socket.h>
3162 #include <netdb.h>
3163 #endif
3164 int main(void) { struct addrinfo ai; return 0; }
3166 cc_check $cc_check_winsock2_h && _struct_addrinfo=yes
3168 echores "$_struct_addrinfo"
3170 if test "$_struct_addrinfo" = yes; then
3171 def_addrinfo="#define HAVE_STRUCT_ADDRINFO 1"
3172 else
3173 def_addrinfo="#define HAVE_STRUCT_ADDRINFO 0"
3177 echocheck "netdb.h, getaddrinfo()"
3178 if test "$_getaddrinfo" = auto; then
3179 _getaddrinfo=no
3180 cat > $TMPC << EOF
3181 #if HAVE_WINSOCK2_H
3182 #include <winsock2.h>
3183 #else
3184 #include <sys/types.h>
3185 #include <sys/socket.h>
3186 #include <netdb.h>
3187 #endif
3188 int main(void) { (void) getaddrinfo(0, 0, 0, 0); return 0; }
3190 cc_check $cc_check_winsock2_h && _getaddrinfo=yes
3192 echores "$_getaddrinfo"
3194 if test "$_getaddrinfo" = yes; then
3195 def_getaddrinfo="#define HAVE_GETADDRINFO 1"
3196 else
3197 def_getaddrinfo="#define HAVE_GETADDRINFO 0"
3201 echocheck "sockaddr_storage"
3202 if test "$_struct_sockaddr_storage" = auto; then
3203 _struct_sockaddr_storage=no
3204 cat > $TMPC << EOF
3205 #if HAVE_WINSOCK2_H
3206 #include <winsock2.h>
3207 #else
3208 #include <sys/socket.h>
3209 #endif
3210 int main(void) { struct sockaddr_storage sas; return 0; }
3212 cc_check $cc_check_winsock2_h && _struct_sockaddr_storage=yes
3214 echores "$_struct_sockaddr_storage"
3216 if test "$_struct_sockaddr_storage" = yes; then
3217 def_sockaddr_storage="#define HAVE_STRUCT_SOCKADDR_STORAGE 1"
3218 else
3219 def_sockaddr_storage="#define HAVE_STRUCT_SOCKADDR_STORAGE 0"
3223 echocheck "struct ipv6_mreq"
3224 _struct_ipv6_mreq=no
3225 def_struct_ipv6_mreq="#define HAVE_STRUCT_IPV6_MREQ 0"
3226 for header in "netinet/in.h" "ws2tcpip.h" ; do
3227 cat > $TMPC << EOF
3228 #include <$header>
3229 int main(void) { struct ipv6_mreq mreq6; return 0; }
3231 cc_check && _struct_ipv6_mreq=yes && \
3232 def_struct_ipv6_mreq="#define HAVE_STRUCT_IPV6_MREQ 1" && break
3233 done
3234 echores "$_struct_ipv6_mreq"
3237 echocheck "struct sockaddr_in6"
3238 _struct_sockaddr_in6=no
3239 def_struct_sockaddr_in6="#define HAVE_STRUCT_SOCKADDR_IN6 0"
3240 for header in "netinet/in.h" "ws2tcpip.h" ; do
3241 cat > $TMPC << EOF
3242 #include <$header>
3243 int main(void) { struct sockaddr_in6 addr; return 0; }
3245 cc_check && _struct_sockaddr_in6=yes && \
3246 def_struct_sockaddr_in6="#define HAVE_STRUCT_SOCKADDR_IN6 1" && break
3247 done
3248 echores "$_struct_sockaddr_in6"
3251 echocheck "struct sockaddr sa_len"
3252 _struct_sockaddr_sa_len=no
3253 def_struct_sockaddr_sa_len="#define HAVE_STRUCT_SOCKADDR_SA_LEN 0"
3254 cat > $TMPC << EOF
3255 #if HAVE_WINSOCK2_H
3256 #include <winsock2.h>
3257 #else
3258 #include <sys/types.h>
3259 #include <sys/socket.h>
3260 #endif
3261 int main(void) { const void *p = &((struct sockaddr *)0)->sa_len; return 0; }
3263 cc_check $cc_check_winsock2_h && _struct_sockaddr_sa_len=yes && \
3264 def_struct_sockaddr_sa_len="#define HAVE_STRUCT_SOCKADDR_SA_LEN 1"
3265 echores "$_struct_sockaddr_sa_len"
3268 echocheck "arpa/inet.h"
3269 arpa_inet_h=no
3270 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3271 cat > $TMPC << EOF
3272 #include <arpa/inet.h>
3273 int main(void) { return 0; }
3275 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3276 echores "$arpa_inet_h"
3279 echocheck "inet_pton()"
3280 def_inet_pton='#define HAVE_INET_PTON 0'
3281 inet_pton=no
3282 cat > $TMPC << EOF
3283 #include <sys/types.h>
3284 #include <sys/socket.h>
3285 #include <arpa/inet.h>
3286 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3288 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3289 cc_check $_ld_tmp && inet_pton=yes && break
3290 done
3291 if test $inet_pton = yes ; then
3292 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3293 def_inet_pton='#define HAVE_INET_PTON 1'
3295 echores "$inet_pton"
3298 echocheck "inet_aton()"
3299 def_inet_aton='#define HAVE_INET_ATON 0'
3300 inet_aton=no
3301 cat > $TMPC << EOF
3302 #include <sys/types.h>
3303 #include <sys/socket.h>
3304 #include <arpa/inet.h>
3305 int main(void) { (void) inet_aton(0, 0); return 0; }
3307 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3308 cc_check $_ld_tmp && inet_aton=yes && break
3309 done
3310 if test $inet_aton = yes ; then
3311 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3312 def_inet_aton='#define HAVE_INET_ATON 1'
3314 echores "$inet_aton"
3317 echocheck "socklen_t"
3318 _socklen_t=no
3319 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3320 cat > $TMPC << EOF
3321 #include <$header>
3322 int main(void) { socklen_t v = 0; return v; }
3324 cc_check && _socklen_t=yes && break
3325 done
3326 if test "$_socklen_t" = yes ; then
3327 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3328 else
3329 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3331 echores "$_socklen_t"
3334 echocheck "closesocket()"
3335 _closesocket=no
3336 cat > $TMPC << EOF
3337 #include <winsock2.h>
3338 int main(void) { closesocket(~0); return 0; }
3340 cc_check $_ld_sock && _closesocket=yes
3341 if test "$_closesocket" = yes ; then
3342 def_closesocket='#define HAVE_CLOSESOCKET 1'
3343 else
3344 def_closesocket='#define HAVE_CLOSESOCKET 0'
3346 echores "$_closesocket"
3349 echocheck "network"
3350 test $_winsock2_h = no && test $inet_pton = no &&
3351 test $inet_aton = no && _network=no
3352 if test "$_network" = yes ; then
3353 def_network='#define CONFIG_NETWORK 1'
3354 extra_ldflags="$extra_ldflags $_ld_sock"
3355 _inputmodules="network $_inputmodules"
3356 else
3357 _noinputmodules="network $_noinputmodules"
3358 def_network='#undef CONFIG_NETWORK'
3359 _ftp=no
3360 _libavprotocols=$(echo $_libavprotocols | sed -e s/GOPHER_PROTOCOL// -e s/HTTP_PROTOCOL// -e s/RTMP_PROTOCOL// -e s/RTP_PROTOCOL// -e s/TCP_PROTOCOL// -e s/UDP_PROTOCOL//)
3361 _libavdemuxers=$(echo $_libavdemuxers | sed -e s/RTSP_DEMUXER// -e s/SDP_DEMUXER//)
3363 echores "$_network"
3366 echocheck "inet6"
3367 if test "$_inet6" = auto ; then
3368 cat > $TMPC << EOF
3369 #include <sys/types.h>
3370 #if !defined(_WIN32) || defined(__CYGWIN__)
3371 #include <sys/socket.h>
3372 #include <netinet/in.h>
3373 #else
3374 #include <ws2tcpip.h>
3375 #endif
3376 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3378 _inet6=no
3379 if cc_check $_ld_sock ; then
3380 _inet6=yes
3383 if test "$_inet6" = yes ; then
3384 def_inet6='#define HAVE_AF_INET6 1'
3385 else
3386 def_inet6='#undef HAVE_AF_INET6'
3388 echores "$_inet6"
3391 echocheck "gethostbyname2"
3392 if test "$_gethostbyname2" = auto ; then
3393 cat > $TMPC << EOF
3394 #include <sys/types.h>
3395 #include <sys/socket.h>
3396 #include <netdb.h>
3397 int main(void) { gethostbyname2("", AF_INET); return 0; }
3399 _gethostbyname2=no
3400 if cc_check ; then
3401 _gethostbyname2=yes
3404 if test "$_gethostbyname2" = yes ; then
3405 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3406 else
3407 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3409 echores "$_gethostbyname2"
3412 echocheck "inttypes.h (required)"
3413 cat > $TMPC << EOF
3414 #include <inttypes.h>
3415 int main(void) { return 0; }
3417 _inttypes=no
3418 cc_check && _inttypes=yes
3419 echores "$_inttypes"
3421 if test "$_inttypes" = no ; then
3422 echocheck "bitypes.h (inttypes.h predecessor)"
3423 cat > $TMPC << EOF
3424 #include <sys/bitypes.h>
3425 int main(void) { return 0; }
3427 cc_check && _inttypes=yes
3428 if test "$_inttypes" = yes ; then
3429 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."
3430 else
3431 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3436 echocheck "int_fastXY_t in inttypes.h"
3437 cat > $TMPC << EOF
3438 #include <inttypes.h>
3439 int main(void) {
3440 volatile int_fast16_t v= 0;
3441 return v; }
3443 _fast_inttypes=no
3444 cc_check && _fast_inttypes=yes
3445 if test "$_fast_inttypes" = no ; then
3446 def_fast_inttypes='
3447 typedef signed char int_fast8_t;
3448 typedef signed int int_fast16_t;
3449 typedef signed int int_fast32_t;
3450 typedef signed long long int_fast64_t;
3451 typedef unsigned char uint_fast8_t;
3452 typedef unsigned int uint_fast16_t;
3453 typedef unsigned int uint_fast32_t;
3454 typedef unsigned long long uint_fast64_t;'
3456 echores "$_fast_inttypes"
3459 echocheck "malloc.h"
3460 cat > $TMPC << EOF
3461 #include <malloc.h>
3462 int main(void) { (void) malloc(0); return 0; }
3464 _malloc=no
3465 cc_check && _malloc=yes
3466 if test "$_malloc" = yes ; then
3467 def_malloc_h='#define HAVE_MALLOC_H 1'
3468 else
3469 def_malloc_h='#define HAVE_MALLOC_H 0'
3471 # malloc.h emits a warning in FreeBSD and OpenBSD
3472 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3473 echores "$_malloc"
3476 echocheck "memalign()"
3477 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3478 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3479 cat > $TMPC << EOF
3480 #include <malloc.h>
3481 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3483 _memalign=no
3484 cc_check && _memalign=yes
3485 if test "$_memalign" = yes ; then
3486 def_memalign='#define HAVE_MEMALIGN 1'
3487 else
3488 def_memalign='#define HAVE_MEMALIGN 0'
3489 def_map_memalign='#define memalign(a,b) malloc(b)'
3490 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3492 echores "$_memalign"
3495 echocheck "posix_memalign()"
3496 posix_memalign=no
3497 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3498 cat > $TMPC << EOF
3499 #define _XOPEN_SOURCE 600
3500 #include <stdlib.h>
3501 int main(void) { posix_memalign(NULL, 0, 0); }
3503 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3504 echores "$posix_memalign"
3507 echocheck "alloca.h"
3508 cat > $TMPC << EOF
3509 #include <alloca.h>
3510 int main(void) { (void) alloca(0); return 0; }
3512 _alloca=no
3513 cc_check && _alloca=yes
3514 if cc_check ; then
3515 def_alloca_h='#define HAVE_ALLOCA_H 1'
3516 else
3517 def_alloca_h='#undef HAVE_ALLOCA_H'
3519 echores "$_alloca"
3522 echocheck "fastmemcpy"
3523 if test "$_fastmemcpy" = yes ; then
3524 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3525 else
3526 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3528 echores "$_fastmemcpy"
3531 echocheck "hard-coded tables"
3532 if test "$hardcoded_tables" = yes ; then
3533 def_hardcoded_tables='#define CONFIG_HARDCODED_TABLES 1'
3534 mak_hardcoded_tables='CONFIG_HARDCODED_TABLES = yes'
3535 else
3536 def_hardcoded_tables='#define CONFIG_HARDCODED_TABLES 0'
3538 echores "$hardcoded_tables"
3541 echocheck "mman.h"
3542 cat > $TMPC << EOF
3543 #include <sys/types.h>
3544 #include <sys/mman.h>
3545 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3547 _mman=no
3548 cc_check && _mman=yes
3549 if test "$_mman" = yes ; then
3550 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3551 else
3552 def_mman_h='#undef HAVE_SYS_MMAN_H'
3553 os2 && _need_mmap=yes
3555 echores "$_mman"
3557 cat > $TMPC << EOF
3558 #include <sys/types.h>
3559 #include <sys/mman.h>
3560 int main(void) { void *p = MAP_FAILED; return 0; }
3562 _mman_has_map_failed=no
3563 cc_check && _mman_has_map_failed=yes
3564 if test "$_mman_has_map_failed" = yes ; then
3565 def_mman_has_map_failed=''
3566 else
3567 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3570 echocheck "dynamic loader"
3571 cat > $TMPC << EOF
3572 #include <stddef.h>
3573 #include <dlfcn.h>
3574 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3576 _dl=no
3577 for _ld_tmp in "" "-ldl" ; do
3578 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3579 done
3580 if test "$_dl" = yes ; then
3581 def_dl='#define HAVE_LIBDL 1'
3582 else
3583 def_dl='#undef HAVE_LIBDL'
3585 echores "$_dl"
3588 echocheck "dynamic a/v plugins support"
3589 if test "$_dl" = no ; then
3590 _dynamic_plugins=no
3592 if test "$_dynamic_plugins" = yes ; then
3593 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3594 else
3595 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3597 echores "$_dynamic_plugins"
3600 def_threads='#define HAVE_THREADS 0'
3602 echocheck "pthread"
3603 if linux ; then
3604 THREAD_CFLAGS=-D_REENTRANT
3605 elif freebsd || netbsd || openbsd || bsdos ; then
3606 THREAD_CFLAGS=-D_THREAD_SAFE
3608 if test "$_pthreads" = auto ; then
3609 cat > $TMPC << EOF
3610 #include <pthread.h>
3611 void* func(void *arg) { return arg; }
3612 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3614 _pthreads=no
3615 if ! hpux ; then
3616 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3617 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3618 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3619 done
3622 if test "$_pthreads" = yes ; then
3623 test $_ld_pthread && _res_comment="using $_ld_pthread"
3624 def_pthreads='#define HAVE_PTHREADS 1'
3625 def_threads='#define HAVE_THREADS 1'
3626 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3627 else
3628 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3629 def_pthreads='#undef HAVE_PTHREADS'
3630 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3631 mingw32 || _win32dll=no
3633 echores "$_pthreads"
3635 if cygwin ; then
3636 if test "$_pthreads" = yes ; then
3637 def_pthread_cache="#define PTHREAD_CACHE 1"
3638 else
3639 _stream_cache=no
3640 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3644 echocheck "w32threads"
3645 if test "$_pthreads" = yes ; then
3646 _res_comment="using pthread instead"
3647 _w32threads=no
3649 if test "$_w32threads" = auto ; then
3650 _w32threads=no
3651 mingw32 && _w32threads=yes
3653 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3654 echores "$_w32threads"
3656 echocheck "rpath"
3657 netbsd &&_rpath=yes
3658 if test "$_rpath" = yes ; then
3659 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3660 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3661 done
3662 extra_ldflags=$tmp
3664 echores "$_rpath"
3666 echocheck "iconv"
3667 if test "$_iconv" = auto ; then
3668 cat > $TMPC << EOF
3669 #include <stdio.h>
3670 #include <unistd.h>
3671 #include <iconv.h>
3672 #define INBUFSIZE 1024
3673 #define OUTBUFSIZE 4096
3675 char inbuffer[INBUFSIZE];
3676 char outbuffer[OUTBUFSIZE];
3678 int main(void) {
3679 size_t numread;
3680 iconv_t icdsc;
3681 char *tocode="UTF-8";
3682 char *fromcode="cp1250";
3683 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3684 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3685 char *iptr=inbuffer;
3686 char *optr=outbuffer;
3687 size_t inleft=numread;
3688 size_t outleft=OUTBUFSIZE;
3689 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3690 != (size_t)(-1)) {
3691 write(1, outbuffer, OUTBUFSIZE - outleft);
3694 if (iconv_close(icdsc) == -1)
3697 return 0;
3700 _iconv=no
3701 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3702 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3703 _iconv=yes && break
3704 done
3706 if test "$_iconv" = yes ; then
3707 def_iconv='#define CONFIG_ICONV 1'
3708 else
3709 def_iconv='#undef CONFIG_ICONV'
3711 echores "$_iconv"
3714 echocheck "soundcard.h"
3715 _soundcard_h=no
3716 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3717 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3718 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3719 cat > $TMPC << EOF
3720 #include <$_soundcard_header>
3721 int main(void) { return 0; }
3723 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3724 done
3726 if test "$_soundcard_h" = yes ; then
3727 if test $_soundcard_header = "sys/soundcard.h"; then
3728 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3729 else
3730 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3733 echores "$_soundcard_h"
3736 echocheck "sys/dvdio.h"
3737 cat > $TMPC << EOF
3738 #include <unistd.h>
3739 #include <sys/dvdio.h>
3740 int main(void) { return 0; }
3742 _dvdio=no
3743 cc_check && _dvdio=yes
3744 if test "$_dvdio" = yes ; then
3745 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3746 else
3747 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3749 echores "$_dvdio"
3752 echocheck "sys/cdio.h"
3753 cat > $TMPC << EOF
3754 #include <unistd.h>
3755 #include <sys/cdio.h>
3756 int main(void) { return 0; }
3758 _cdio=no
3759 cc_check && _cdio=yes
3760 if test "$_cdio" = yes ; then
3761 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3762 else
3763 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3765 echores "$_cdio"
3768 echocheck "linux/cdrom.h"
3769 cat > $TMPC << EOF
3770 #include <sys/types.h>
3771 #include <linux/cdrom.h>
3772 int main(void) { return 0; }
3774 _cdrom=no
3775 cc_check && _cdrom=yes
3776 if test "$_cdrom" = yes ; then
3777 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3778 else
3779 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3781 echores "$_cdrom"
3784 echocheck "dvd.h"
3785 cat > $TMPC << EOF
3786 #include <dvd.h>
3787 int main(void) { return 0; }
3789 _dvd=no
3790 cc_check && _dvd=yes
3791 if test "$_dvd" = yes ; then
3792 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3793 else
3794 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3796 echores "$_dvd"
3799 if bsdos; then
3800 echocheck "BSDI dvd.h"
3801 cat > $TMPC << EOF
3802 #include <dvd.h>
3803 int main(void) { return 0; }
3805 _bsdi_dvd=no
3806 cc_check && _bsdi_dvd=yes
3807 if test "$_bsdi_dvd" = yes ; then
3808 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3809 else
3810 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3812 echores "$_bsdi_dvd"
3813 fi #if bsdos
3816 if hpux; then
3817 # also used by AIX, but AIX does not support VCD and/or libdvdread
3818 echocheck "HP-UX SCSI header"
3819 cat > $TMPC << EOF
3820 #include <sys/scsi.h>
3821 int main(void) { return 0; }
3823 _hpux_scsi_h=no
3824 cc_check && _hpux_scsi_h=yes
3825 if test "$_hpux_scsi_h" = yes ; then
3826 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3827 else
3828 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3830 echores "$_hpux_scsi_h"
3831 fi #if hpux
3834 if sunos; then
3835 echocheck "userspace SCSI headers (Solaris)"
3836 cat > $TMPC << EOF
3837 #include <unistd.h>
3838 #include <stropts.h>
3839 #include <sys/scsi/scsi_types.h>
3840 #include <sys/scsi/impl/uscsi.h>
3841 int main(void) { return 0; }
3843 _sol_scsi_h=no
3844 cc_check && _sol_scsi_h=yes
3845 if test "$_sol_scsi_h" = yes ; then
3846 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3847 else
3848 def_sol_scsi_h='#undef SOLARIS_USCSI'
3850 echores "$_sol_scsi_h"
3851 fi #if sunos
3854 echocheck "termcap"
3855 if test "$_termcap" = auto ; then
3856 cat > $TMPC <<EOF
3857 #include <stddef.h>
3858 #include <term.h>
3859 int main(void) { tgetent(NULL, NULL); return 0; }
3861 _termcap=no
3862 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3863 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3864 && _termcap=yes && break
3865 done
3867 if test "$_termcap" = yes ; then
3868 def_termcap='#define HAVE_TERMCAP 1'
3869 test $_ld_tmp && _res_comment="using $_ld_tmp"
3870 else
3871 def_termcap='#undef HAVE_TERMCAP'
3873 echores "$_termcap"
3876 echocheck "termios"
3877 def_termios='#undef HAVE_TERMIOS'
3878 def_termios_h='#undef HAVE_TERMIOS_H'
3879 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3880 if test "$_termios" = auto ; then
3881 _termios=no
3882 for _termios_header in "sys/termios.h" "termios.h"; do
3883 cat > $TMPC <<EOF
3884 #include <$_termios_header>
3885 int main(void) { return 0; }
3887 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3888 done
3891 if test "$_termios" = yes ; then
3892 def_termios='#define HAVE_TERMIOS 1'
3893 if test "$_termios_header" = "termios.h" ; then
3894 def_termios_h='#define HAVE_TERMIOS_H 1'
3895 else
3896 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3899 echores "$_termios"
3902 echocheck "shm"
3903 if test "$_shm" = auto ; then
3904 cat > $TMPC << EOF
3905 #include <sys/types.h>
3906 #include <sys/shm.h>
3907 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3909 _shm=no
3910 cc_check && _shm=yes
3912 if test "$_shm" = yes ; then
3913 def_shm='#define HAVE_SHM 1'
3914 else
3915 def_shm='#undef HAVE_SHM'
3917 echores "$_shm"
3920 echocheck "strsep()"
3921 cat > $TMPC << EOF
3922 #include <string.h>
3923 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3925 _strsep=no
3926 cc_check && _strsep=yes
3927 if test "$_strsep" = yes ; then
3928 def_strsep='#define HAVE_STRSEP 1'
3929 _need_strsep=no
3930 else
3931 def_strsep='#undef HAVE_STRSEP'
3932 _need_strsep=yes
3934 echores "$_strsep"
3937 echocheck "vsscanf()"
3938 cat > $TMPC << EOF
3939 #define _ISOC99_SOURCE
3940 #include <stdarg.h>
3941 #include <stdio.h>
3942 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3944 _vsscanf=no
3945 cc_check && _vsscanf=yes
3946 if test "$_vsscanf" = yes ; then
3947 def_vsscanf='#define HAVE_VSSCANF 1'
3948 _need_vsscanf=no
3949 else
3950 def_vsscanf='#undef HAVE_VSSCANF'
3951 _need_vsscanf=yes
3953 echores "$_vsscanf"
3956 echocheck "swab()"
3957 cat > $TMPC << EOF
3958 #define _XOPEN_SOURCE 600
3959 #include <unistd.h>
3960 int main(void) { swab(0, 0, 0); return 0; }
3962 _swab=no
3963 cc_check && _swab=yes
3964 if test "$_swab" = yes ; then
3965 def_swab='#define HAVE_SWAB 1'
3966 _need_swab=no
3967 else
3968 def_swab='#undef HAVE_SWAB'
3969 _need_swab=yes
3971 echores "$_swab"
3973 echocheck "POSIX select()"
3974 cat > $TMPC << EOF
3975 #include <stdio.h>
3976 #include <stdlib.h>
3977 #include <sys/types.h>
3978 #include <string.h>
3979 #include <sys/time.h>
3980 #include <unistd.h>
3981 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3983 _posix_select=no
3984 def_posix_select='#undef HAVE_POSIX_SELECT'
3985 #select() of kLIBC (OS/2) supports socket only
3986 ! os2 && cc_check && _posix_select=yes \
3987 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3988 echores "$_posix_select"
3991 echocheck "audio select()"
3992 if test "$_select" = no ; then
3993 def_select='#undef HAVE_AUDIO_SELECT'
3994 elif test "$_select" = yes ; then
3995 def_select='#define HAVE_AUDIO_SELECT 1'
3997 echores "$_select"
4000 echocheck "gettimeofday()"
4001 cat > $TMPC << EOF
4002 #include <stdio.h>
4003 #include <sys/time.h>
4004 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
4006 _gettimeofday=no
4007 cc_check && _gettimeofday=yes
4008 if test "$_gettimeofday" = yes ; then
4009 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
4010 _need_gettimeofday=no
4011 else
4012 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
4013 _need_gettimeofday=yes
4015 echores "$_gettimeofday"
4018 echocheck "glob()"
4019 cat > $TMPC << EOF
4020 #include <stdio.h>
4021 #include <glob.h>
4022 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
4024 _glob=no
4025 cc_check && _glob=yes
4026 if test "$_glob" = yes ; then
4027 def_glob='#define HAVE_GLOB 1'
4028 _need_glob=no
4029 else
4030 def_glob='#undef HAVE_GLOB'
4031 _need_glob=yes
4033 echores "$_glob"
4036 echocheck "setenv()"
4037 cat > $TMPC << EOF
4038 #include <stdlib.h>
4039 int main(void) { setenv("","",0); return 0; }
4041 _setenv=no
4042 cc_check && _setenv=yes
4043 if test "$_setenv" = yes ; then
4044 def_setenv='#define HAVE_SETENV 1'
4045 _need_setenv=no
4046 else
4047 def_setenv='#undef HAVE_SETENV'
4048 _need_setenv=yes
4050 echores "$_setenv"
4053 echocheck "setmode()"
4054 _setmode=no
4055 def_setmode='#define HAVE_SETMODE 0'
4056 cat > $TMPC << EOF
4057 #include <io.h>
4058 int main(void) { setmode(0, 0); return 0; }
4060 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
4061 echores "$_setmode"
4064 if sunos; then
4065 echocheck "sysi86()"
4066 cat > $TMPC << EOF
4067 #include <sys/sysi86.h>
4068 int main(void) { sysi86(0); return 0; }
4070 _sysi86=no
4071 cc_check && _sysi86=yes
4072 if test "$_sysi86" = yes ; then
4073 def_sysi86='#define HAVE_SYSI86 1'
4074 cat > $TMPC << EOF
4075 #include <sys/sysi86.h>
4076 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
4078 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
4079 else
4080 def_sysi86='#undef HAVE_SYSI86'
4082 echores "$_sysi86"
4083 fi #if sunos
4086 echocheck "sys/sysinfo.h"
4087 cat > $TMPC << EOF
4088 #include <sys/sysinfo.h>
4089 int main(void) {
4090 struct sysinfo s_info;
4091 sysinfo(&s_info);
4092 return 0;
4095 _sys_sysinfo=no
4096 cc_check && _sys_sysinfo=yes
4097 if test "$_sys_sysinfo" = yes ; then
4098 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
4099 else
4100 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
4102 echores "$_sys_sysinfo"
4105 if darwin; then
4107 echocheck "Mac OS X Finder Support"
4108 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
4109 if test "$_macosx_finder" = yes ; then
4110 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
4111 extra_ldflags="$extra_ldflags -framework Carbon"
4113 echores "$_macosx_finder"
4115 echocheck "Mac OS X Bundle file locations"
4116 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
4117 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
4118 if test "$_macosx_bundle" = yes ; then
4119 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
4120 extra_ldflags="$extra_ldflags -framework Carbon"
4122 echores "$_macosx_bundle"
4124 echocheck "Apple Remote"
4125 if test "$_apple_remote" = auto ; then
4126 _apple_remote=no
4127 cat > $TMPC <<EOF
4128 #include <stdio.h>
4129 #include <IOKit/IOCFPlugIn.h>
4130 int main(void) {
4131 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
4132 CFMutableDictionaryRef hidMatchDictionary;
4133 IOReturn ioReturnValue;
4135 // Set up a matching dictionary to search the I/O Registry by class.
4136 // name for all HID class devices
4137 hidMatchDictionary = IOServiceMatching("AppleIRController");
4139 // Now search I/O Registry for matching devices.
4140 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
4141 hidMatchDictionary, &hidObjectIterator);
4143 // If search is unsuccessful, return nonzero.
4144 if (ioReturnValue != kIOReturnSuccess ||
4145 !IOIteratorIsValid(hidObjectIterator)) {
4146 return 1;
4148 return 0;
4151 cc_check -framework IOKit && tmp_run && _apple_remote=yes
4153 if test "$_apple_remote" = yes ; then
4154 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
4155 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
4156 else
4157 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
4159 echores "$_apple_remote"
4161 fi #if darwin
4163 if linux; then
4165 echocheck "Apple IR"
4166 if test "$_apple_ir" = auto ; then
4167 _apple_ir=no
4168 cat > $TMPC <<EOF
4169 #include <linux/types.h>
4170 #include <linux/input.h>
4171 int main(void) {
4172 struct input_event ev;
4173 struct input_id id;
4174 return 0;
4177 cc_check && _apple_ir=yes
4179 if test "$_apple_ir" = yes ; then
4180 def_apple_ir='#define CONFIG_APPLE_IR 1'
4181 else
4182 def_apple_ir='#undef CONFIG_APPLE_IR'
4184 echores "$_apple_ir"
4185 fi #if linux
4187 echocheck "pkg-config"
4188 _pkg_config=pkg-config
4189 if $($_pkg_config --version > /dev/null 2>&1); then
4190 if test "$_ld_static"; then
4191 _pkg_config="$_pkg_config --static"
4193 echores "yes"
4194 else
4195 _pkg_config=false
4196 echores "no"
4200 echocheck "Samba support (libsmbclient)"
4201 if test "$_smb" = yes; then
4202 extra_ldflags="$extra_ldflags -lsmbclient"
4204 if test "$_smb" = auto; then
4205 _smb=no
4206 cat > $TMPC << EOF
4207 #include <libsmbclient.h>
4208 int main(void) { smbc_opendir("smb://"); return 0; }
4210 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
4211 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
4212 _smb=yes && break
4213 done
4216 if test "$_smb" = yes; then
4217 def_smb="#define CONFIG_LIBSMBCLIENT 1"
4218 _inputmodules="smb $_inputmodules"
4219 else
4220 def_smb="#undef CONFIG_LIBSMBCLIENT"
4221 _noinputmodules="smb $_noinputmodules"
4223 echores "$_smb"
4226 #########
4227 # VIDEO #
4228 #########
4231 echocheck "tdfxfb"
4232 if test "$_tdfxfb" = yes ; then
4233 def_tdfxfb='#define CONFIG_TDFXFB 1'
4234 _vomodules="tdfxfb $_vomodules"
4235 else
4236 def_tdfxfb='#undef CONFIG_TDFXFB'
4237 _novomodules="tdfxfb $_novomodules"
4239 echores "$_tdfxfb"
4241 echocheck "s3fb"
4242 if test "$_s3fb" = yes ; then
4243 def_s3fb='#define CONFIG_S3FB 1'
4244 _vomodules="s3fb $_vomodules"
4245 else
4246 def_s3fb='#undef CONFIG_S3FB'
4247 _novomodules="s3fb $_novomodules"
4249 echores "$_s3fb"
4251 echocheck "wii"
4252 if test "$_wii" = yes ; then
4253 def_wii='#define CONFIG_WII 1'
4254 _vomodules="wii $_vomodules"
4255 else
4256 def_wii='#undef CONFIG_WII'
4257 _novomodules="wii $_novomodules"
4259 echores "$_wii"
4261 echocheck "tdfxvid"
4262 if test "$_tdfxvid" = yes ; then
4263 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4264 _vomodules="tdfx_vid $_vomodules"
4265 else
4266 def_tdfxvid='#undef CONFIG_TDFX_VID'
4267 _novomodules="tdfx_vid $_novomodules"
4269 echores "$_tdfxvid"
4271 echocheck "xvr100"
4272 if test "$_xvr100" = auto ; then
4273 cat > $TMPC << EOF
4274 #include <unistd.h>
4275 #include <sys/fbio.h>
4276 #include <sys/visual_io.h>
4277 int main(void) {
4278 struct vis_identifier ident;
4279 struct fbgattr attr;
4280 ioctl(0, VIS_GETIDENTIFIER, &ident);
4281 ioctl(0, FBIOGATTR, &attr);
4282 return 0;
4285 _xvr100=no
4286 cc_check && _xvr100=yes
4288 if test "$_xvr100" = yes ; then
4289 def_xvr100='#define CONFIG_XVR100 1'
4290 _vomodules="xvr100 $_vomodules"
4291 else
4292 def_tdfxvid='#undef CONFIG_XVR100'
4293 _novomodules="xvr100 $_novomodules"
4295 echores "$_xvr100"
4297 echocheck "tga"
4298 if test "$_tga" = yes ; then
4299 def_tga='#define CONFIG_TGA 1'
4300 _vomodules="tga $_vomodules"
4301 else
4302 def_tga='#undef CONFIG_TGA'
4303 _novomodules="tga $_novomodules"
4305 echores "$_tga"
4308 echocheck "md5sum support"
4309 if test "$_md5sum" = yes; then
4310 def_md5sum="#define CONFIG_MD5SUM 1"
4311 _vomodules="md5sum $_vomodules"
4312 else
4313 def_md5sum="#undef CONFIG_MD5SUM"
4314 _novomodules="md5sum $_novomodules"
4316 echores "$_md5sum"
4319 echocheck "yuv4mpeg support"
4320 if test "$_yuv4mpeg" = yes; then
4321 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4322 _vomodules="yuv4mpeg $_vomodules"
4323 else
4324 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4325 _novomodules="yuv4mpeg $_novomodules"
4327 echores "$_yuv4mpeg"
4330 echocheck "bl"
4331 if test "$_bl" = yes ; then
4332 def_bl='#define CONFIG_BL 1'
4333 _vomodules="bl $_vomodules"
4334 else
4335 def_bl='#undef CONFIG_BL'
4336 _novomodules="bl $_novomodules"
4338 echores "$_bl"
4341 echocheck "DirectFB"
4342 if test "$_directfb" = auto ; then
4343 _directfb=no
4344 cat > $TMPC <<EOF
4345 #include <directfb.h>
4346 int main(void) { DirectFBInit(0, 0); return 0; }
4348 for _inc_tmp in "" -I/usr/local/include/directfb \
4349 -I/usr/include/directfb -I/usr/local/include; do
4350 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4351 extra_cflags="$extra_cflags $_inc_tmp" && break
4352 done
4355 dfb_version() {
4356 expr $1 \* 65536 + $2 \* 256 + $3
4359 if test "$_directfb" = yes; then
4360 cat > $TMPC << EOF
4361 #include <directfb_version.h>
4363 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4366 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4367 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4368 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4369 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4370 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4371 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4372 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4373 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4374 _res_comment="$_directfb_version"
4375 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4376 else
4377 def_directfb_version='#undef DIRECTFBVERSION'
4378 _directfb=no
4379 _res_comment="version >=0.9.13 required"
4381 else
4382 _directfb=no
4383 _res_comment="failed to get version"
4386 echores "$_directfb"
4388 if test "$_directfb" = yes ; then
4389 def_directfb='#define CONFIG_DIRECTFB 1'
4390 _vomodules="directfb $_vomodules"
4391 libs_mplayer="$libs_mplayer -ldirectfb"
4392 else
4393 def_directfb='#undef CONFIG_DIRECTFB'
4394 _novomodules="directfb $_novomodules"
4396 if test "$_dfbmga" = yes; then
4397 _vomodules="dfbmga $_vomodules"
4398 def_dfbmga='#define CONFIG_DFBMGA 1'
4399 else
4400 _novomodules="dfbmga $_novomodules"
4401 def_dfbmga='#undef CONFIG_DFBMGA'
4405 echocheck "X11 headers presence"
4406 _x11_headers="no"
4407 _res_comment="check if the dev(el) packages are installed"
4408 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4409 if test -f "$I/X11/Xlib.h" ; then
4410 _x11_headers="yes"
4411 _res_comment=""
4412 break
4414 done
4415 if test $_cross_compile = no; then
4416 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4417 /usr/include/X11R6 /usr/openwin/include ; do
4418 if test -f "$I/X11/Xlib.h" ; then
4419 extra_cflags="$extra_cflags -I$I"
4420 _x11_headers="yes"
4421 _res_comment="using $I"
4422 break
4424 done
4426 echores "$_x11_headers"
4429 echocheck "X11"
4430 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4431 cat > $TMPC <<EOF
4432 #include <X11/Xlib.h>
4433 #include <X11/Xutil.h>
4434 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4436 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4437 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4438 -L/usr/lib ; do
4439 if netbsd; then
4440 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4441 else
4442 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4444 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4445 && _x11=yes && break
4446 done
4448 if test "$_x11" = yes ; then
4449 def_x11='#define CONFIG_X11 1'
4450 _vomodules="x11 xover $_vomodules"
4451 else
4452 _x11=no
4453 def_x11='#undef CONFIG_X11'
4454 _novomodules="x11 $_novomodules"
4455 _res_comment="check if the dev(el) packages are installed"
4456 # disable stuff that depends on X
4457 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4459 echores "$_x11"
4461 echocheck "Xss screensaver extensions"
4462 if test "$_xss" = auto ; then
4463 cat > $TMPC << EOF
4464 #include <X11/Xlib.h>
4465 #include <X11/extensions/scrnsaver.h>
4466 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4468 _xss=no
4469 cc_check -lXss && _xss=yes
4471 if test "$_xss" = yes ; then
4472 def_xss='#define CONFIG_XSS 1'
4473 libs_mplayer="$libs_mplayer -lXss"
4474 else
4475 def_xss='#undef CONFIG_XSS'
4477 echores "$_xss"
4479 echocheck "DPMS"
4480 _xdpms3=no
4481 _xdpms4=no
4482 if test "$_x11" = yes ; then
4483 cat > $TMPC <<EOF
4484 #include <X11/Xmd.h>
4485 #include <X11/Xlib.h>
4486 #include <X11/Xutil.h>
4487 #include <X11/Xatom.h>
4488 #include <X11/extensions/dpms.h>
4489 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4491 cc_check -lXdpms && _xdpms3=yes
4492 cat > $TMPC <<EOF
4493 #include <X11/Xlib.h>
4494 #include <X11/extensions/dpms.h>
4495 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4497 cc_check -lXext && _xdpms4=yes
4499 if test "$_xdpms4" = yes ; then
4500 def_xdpms='#define CONFIG_XDPMS 1'
4501 _res_comment="using Xdpms 4"
4502 echores "yes"
4503 elif test "$_xdpms3" = yes ; then
4504 def_xdpms='#define CONFIG_XDPMS 1'
4505 libs_mplayer="$libs_mplayer -lXdpms"
4506 _res_comment="using Xdpms 3"
4507 echores "yes"
4508 else
4509 def_xdpms='#undef CONFIG_XDPMS'
4510 echores "no"
4514 echocheck "Xv"
4515 if test "$_xv" = auto ; then
4516 cat > $TMPC <<EOF
4517 #include <X11/Xlib.h>
4518 #include <X11/extensions/Xvlib.h>
4519 int main(void) {
4520 (void) XvGetPortAttribute(0, 0, 0, 0);
4521 (void) XvQueryPortAttributes(0, 0, 0);
4522 return 0; }
4524 _xv=no
4525 cc_check -lXv && _xv=yes
4528 if test "$_xv" = yes ; then
4529 def_xv='#define CONFIG_XV 1'
4530 libs_mplayer="$libs_mplayer -lXv"
4531 _vomodules="xv $_vomodules"
4532 else
4533 def_xv='#undef CONFIG_XV'
4534 _novomodules="xv $_novomodules"
4536 echores "$_xv"
4539 echocheck "XvMC"
4540 if test "$_xv" = yes && test "$_xvmc" != no ; then
4541 _xvmc=no
4542 cat > $TMPC <<EOF
4543 #include <X11/Xlib.h>
4544 #include <X11/extensions/Xvlib.h>
4545 #include <X11/extensions/XvMClib.h>
4546 int main(void) {
4547 (void) XvMCQueryExtension(0,0,0);
4548 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4549 return 0; }
4551 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4552 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4553 done
4555 if test "$_xvmc" = yes ; then
4556 def_xvmc='#define CONFIG_XVMC 1'
4557 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4558 _vomodules="xvmc $_vomodules"
4559 _res_comment="using $_xvmclib"
4560 else
4561 def_xvmc='#define CONFIG_XVMC 0'
4562 _novomodules="xvmc $_novomodules"
4563 _libavdecoders=$(echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER//)
4565 echores "$_xvmc"
4568 echocheck "VDPAU"
4569 if test "$_vdpau" = auto ; then
4570 _vdpau=no
4571 if test "$_dl" = yes ; then
4572 cat > $TMPC <<EOF
4573 #include <vdpau/vdpau_x11.h>
4574 int main(void) {
4575 (void) vdp_device_create_x11(0, 0, 0, 0);
4576 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4578 cc_check -lvdpau && _vdpau=yes
4581 if test "$_vdpau" = yes ; then
4582 def_vdpau='#define CONFIG_VDPAU 1'
4583 libs_mplayer="$libs_mplayer -lvdpau"
4584 _vomodules="vdpau $_vomodules"
4585 else
4586 def_vdpau='#define CONFIG_VDPAU 0'
4587 _novomodules="vdpau $_novomodules"
4588 _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//)
4590 echores "$_vdpau"
4593 echocheck "Xinerama"
4594 if test "$_xinerama" = auto ; then
4595 cat > $TMPC <<EOF
4596 #include <X11/Xlib.h>
4597 #include <X11/extensions/Xinerama.h>
4598 int main(void) { (void) XineramaIsActive(0); return 0; }
4600 _xinerama=no
4601 cc_check -lXinerama && _xinerama=yes
4604 if test "$_xinerama" = yes ; then
4605 def_xinerama='#define CONFIG_XINERAMA 1'
4606 libs_mplayer="$libs_mplayer -lXinerama"
4607 else
4608 def_xinerama='#undef CONFIG_XINERAMA'
4610 echores "$_xinerama"
4613 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4614 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4615 # named 'X extensions' or something similar.
4616 # This check may be useful for future mplayer versions (to change resolution)
4617 # If you run into problems, remove '-lXxf86vm'.
4618 echocheck "Xxf86vm"
4619 if test "$_vm" = auto ; then
4620 cat > $TMPC <<EOF
4621 #include <X11/Xlib.h>
4622 #include <X11/extensions/xf86vmode.h>
4623 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4625 _vm=no
4626 cc_check -lXxf86vm && _vm=yes
4628 if test "$_vm" = yes ; then
4629 def_vm='#define CONFIG_XF86VM 1'
4630 libs_mplayer="$libs_mplayer -lXxf86vm"
4631 else
4632 def_vm='#undef CONFIG_XF86VM'
4634 echores "$_vm"
4636 # Check for the presence of special keycodes, like audio control buttons
4637 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4638 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4639 # have these new keycodes.
4640 echocheck "XF86keysym"
4641 if test "$_xf86keysym" = auto; then
4642 _xf86keysym=no
4643 cat > $TMPC <<EOF
4644 #include <X11/Xlib.h>
4645 #include <X11/XF86keysym.h>
4646 int main(void) { return XF86XK_AudioPause; }
4648 cc_check && _xf86keysym=yes
4650 if test "$_xf86keysym" = yes ; then
4651 def_xf86keysym='#define CONFIG_XF86XK 1'
4652 else
4653 def_xf86keysym='#undef CONFIG_XF86XK'
4655 echores "$_xf86keysym"
4657 echocheck "DGA"
4658 if test "$_dga2" = auto && test "$_x11" = yes ; then
4659 cat > $TMPC << EOF
4660 #include <X11/Xlib.h>
4661 #include <X11/extensions/xf86dga.h>
4662 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4664 _dga2=no
4665 cc_check -lXxf86dga && _dga2=yes
4667 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4668 cat > $TMPC << EOF
4669 #include <X11/Xlib.h>
4670 #include <X11/extensions/xf86dga.h>
4671 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4673 _dga1=no
4674 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4677 _dga=no
4678 def_dga='#undef CONFIG_DGA'
4679 def_dga1='#undef CONFIG_DGA1'
4680 def_dga2='#undef CONFIG_DGA2'
4681 if test "$_dga1" = yes ; then
4682 _dga=yes
4683 def_dga1='#define CONFIG_DGA1 1'
4684 _res_comment="using DGA 1.0"
4685 elif test "$_dga2" = yes ; then
4686 _dga=yes
4687 def_dga2='#define CONFIG_DGA2 1'
4688 _res_comment="using DGA 2.0"
4690 if test "$_dga" = yes ; then
4691 def_dga='#define CONFIG_DGA 1'
4692 libs_mplayer="$libs_mplayer -lXxf86dga"
4693 _vomodules="dga $_vomodules"
4694 else
4695 _novomodules="dga $_novomodules"
4697 echores "$_dga"
4700 echocheck "3dfx"
4701 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4702 def_3dfx='#define CONFIG_3DFX 1'
4703 _vomodules="3dfx $_vomodules"
4704 else
4705 def_3dfx='#undef CONFIG_3DFX'
4706 _novomodules="3dfx $_novomodules"
4708 echores "$_3dfx"
4711 echocheck "VIDIX"
4712 def_vidix='#undef CONFIG_VIDIX'
4713 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4714 _vidix_drv_cyberblade=no
4715 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4716 _vidix_drv_ivtv=no
4717 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4718 _vidix_drv_mach64=no
4719 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4720 _vidix_drv_mga=no
4721 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4722 _vidix_drv_mga_crtc2=no
4723 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4724 _vidix_drv_nvidia=no
4725 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4726 _vidix_drv_pm2=no
4727 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4728 _vidix_drv_pm3=no
4729 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4730 _vidix_drv_radeon=no
4731 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4732 _vidix_drv_rage128=no
4733 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4734 _vidix_drv_s3=no
4735 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4736 _vidix_drv_sh_veu=no
4737 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4738 _vidix_drv_sis=no
4739 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4740 _vidix_drv_unichrome=no
4741 if test "$_vidix" = auto ; then
4742 _vidix=no
4743 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4744 && _vidix=yes
4745 x86_64 && win32 && _vidix=no
4746 (ppc || alpha) && linux && _vidix=yes
4748 echores "$_vidix"
4750 if test "$_vidix" = yes ; then
4751 def_vidix='#define CONFIG_VIDIX 1'
4752 _vomodules="cvidix $_vomodules"
4753 # FIXME: ivtv driver temporarily disabled until we have a proper test
4754 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4755 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4757 # some vidix drivers are architecture and os specific, discard them elsewhere
4758 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4759 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4761 for driver in $_vidix_drivers ; do
4762 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4763 eval _vidix_drv_${driver}=yes
4764 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4765 done
4767 echocheck "VIDIX PCI device name database"
4768 echores "$_vidix_pcidb"
4769 if test "$_vidix_pcidb" = yes ; then
4770 _vidix_pcidb_val=1
4771 else
4772 _vidix_pcidb_val=0
4775 echocheck "VIDIX dhahelper support"
4776 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4777 echores "$_dhahelper"
4779 echocheck "VIDIX svgalib_helper support"
4780 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4781 echores "$_svgalib_helper"
4783 else
4784 _novomodules="cvidix $_novomodules"
4787 if test "$_vidix" = yes && win32; then
4788 winvidix=yes
4789 _vomodules="winvidix $_vomodules"
4790 libs_mplayer="$libs_mplayer -lgdi32"
4791 else
4792 _novomodules="winvidix $_novomodules"
4794 if test "$_vidix" = yes && test "$_x11" = yes; then
4795 xvidix=yes
4796 _vomodules="xvidix $_vomodules"
4797 else
4798 _novomodules="xvidix $_novomodules"
4801 echocheck "/dev/mga_vid"
4802 if test "$_mga" = auto ; then
4803 _mga=no
4804 test -c /dev/mga_vid && _mga=yes
4806 if test "$_mga" = yes ; then
4807 def_mga='#define CONFIG_MGA 1'
4808 _vomodules="mga $_vomodules"
4809 else
4810 def_mga='#undef CONFIG_MGA'
4811 _novomodules="mga $_novomodules"
4813 echores "$_mga"
4815 echocheck "xmga"
4816 if test "$_xmga" = auto ; then
4817 _xmga=no
4818 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
4820 if test "$_xmga" = yes ; then
4821 def_xmga='#define CONFIG_XMGA 1'
4822 _vomodules="xmga $_vomodules"
4823 else
4824 def_xmga='#undef CONFIG_XMGA'
4825 _novomodules="xmga $_novomodules"
4827 echores "$_xmga"
4830 echocheck "GGI"
4831 if test "$_ggi" = auto ; then
4832 cat > $TMPC << EOF
4833 #include <ggi/ggi.h>
4834 int main(void) { ggiInit(); return 0; }
4836 _ggi=no
4837 cc_check -lggi && _ggi=yes
4839 if test "$_ggi" = yes ; then
4840 def_ggi='#define CONFIG_GGI 1'
4841 libs_mplayer="$libs_mplayer -lggi"
4842 _vomodules="ggi $_vomodules"
4843 else
4844 def_ggi='#undef CONFIG_GGI'
4845 _novomodules="ggi $_novomodules"
4847 echores "$_ggi"
4849 echocheck "GGI extension: libggiwmh"
4850 if test "$_ggiwmh" = auto ; then
4851 _ggiwmh=no
4852 cat > $TMPC << EOF
4853 #include <ggi/ggi.h>
4854 #include <ggi/wmh.h>
4855 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4857 cc_check -lggi -lggiwmh && _ggiwmh=yes
4859 # needed to get right output on obscure combination
4860 # like --disable-ggi --enable-ggiwmh
4861 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4862 def_ggiwmh='#define CONFIG_GGIWMH 1'
4863 libs_mplayer="$libs_mplayer -lggiwmh"
4864 else
4865 _ggiwmh=no
4866 def_ggiwmh='#undef CONFIG_GGIWMH'
4868 echores "$_ggiwmh"
4871 echocheck "AA"
4872 if test "$_aa" = auto ; then
4873 cat > $TMPC << EOF
4874 #include <aalib.h>
4875 extern struct aa_hardware_params aa_defparams;
4876 extern struct aa_renderparams aa_defrenderparams;
4877 int main(void) {
4878 aa_context *c;
4879 aa_renderparams *p;
4880 (void) aa_init(0, 0, 0);
4881 c = aa_autoinit(&aa_defparams);
4882 p = aa_getrenderparams();
4883 aa_autoinitkbd(c,0);
4884 return 0; }
4886 _aa=no
4887 for _ld_tmp in "-laa" ; do
4888 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4889 done
4891 if test "$_aa" = yes ; then
4892 def_aa='#define CONFIG_AA 1'
4893 if cygwin ; then
4894 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4896 _vomodules="aa $_vomodules"
4897 else
4898 def_aa='#undef CONFIG_AA'
4899 _novomodules="aa $_novomodules"
4901 echores "$_aa"
4904 echocheck "CACA"
4905 if test "$_caca" = auto ; then
4906 _caca=no
4907 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4908 cat > $TMPC << EOF
4909 #include <caca.h>
4910 #ifdef CACA_API_VERSION_1
4911 #include <caca0.h>
4912 #endif
4913 int main(void) { (void) caca_init(); return 0; }
4915 cc_check $(caca-config --libs) && _caca=yes
4918 if test "$_caca" = yes ; then
4919 def_caca='#define CONFIG_CACA 1'
4920 extra_cflags="$extra_cflags $(caca-config --cflags)"
4921 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4922 _vomodules="caca $_vomodules"
4923 else
4924 def_caca='#undef CONFIG_CACA'
4925 _novomodules="caca $_novomodules"
4927 echores "$_caca"
4930 echocheck "SVGAlib"
4931 if test "$_svga" = auto ; then
4932 cat > $TMPC << EOF
4933 #include <vga.h>
4934 int main(void) { return 0; }
4936 _svga=no
4937 cc_check -lvga $_ld_lm && _svga=yes
4939 if test "$_svga" = yes ; then
4940 def_svga='#define CONFIG_SVGALIB 1'
4941 libs_mplayer="$libs_mplayer -lvga"
4942 _vomodules="svga $_vomodules"
4943 else
4944 def_svga='#undef CONFIG_SVGALIB'
4945 _novomodules="svga $_novomodules"
4947 echores "$_svga"
4950 echocheck "FBDev"
4951 if test "$_fbdev" = auto ; then
4952 _fbdev=no
4953 linux && _fbdev=yes
4955 if test "$_fbdev" = yes ; then
4956 def_fbdev='#define CONFIG_FBDEV 1'
4957 _vomodules="fbdev $_vomodules"
4958 else
4959 def_fbdev='#undef CONFIG_FBDEV'
4960 _novomodules="fbdev $_novomodules"
4962 echores "$_fbdev"
4966 echocheck "DVB"
4967 if test "$_dvb" = auto ; then
4968 _dvb=no
4969 cat >$TMPC << EOF
4970 #include <poll.h>
4971 #include <sys/ioctl.h>
4972 #include <stdio.h>
4973 #include <time.h>
4974 #include <unistd.h>
4975 #include <linux/dvb/dmx.h>
4976 #include <linux/dvb/frontend.h>
4977 #include <linux/dvb/video.h>
4978 #include <linux/dvb/audio.h>
4979 int main(void) {return 0;}
4981 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4982 cc_check $_inc_tmp && _dvb=yes && \
4983 extra_cflags="$extra_cflags $_inc_tmp" && break
4984 done
4986 echores "$_dvb"
4987 if test "$_dvb" = yes ; then
4988 _dvbin=yes
4989 _inputmodules="dvb $_inputmodules"
4990 def_dvb='#define CONFIG_DVB 1'
4991 def_dvbin='#define CONFIG_DVBIN 1'
4992 _aomodules="mpegpes(dvb) $_aomodules"
4993 _vomodules="mpegpes(dvb) $_vomodules"
4994 else
4995 _dvbin=no
4996 _noinputmodules="dvb $_noinputmodules"
4997 def_dvb='#undef CONFIG_DVB'
4998 def_dvbin='#undef CONFIG_DVBIN '
4999 _aomodules="mpegpes(file) $_aomodules"
5000 _vomodules="mpegpes(file) $_vomodules"
5004 if darwin; then
5006 echocheck "QuickTime"
5007 if test "$quicktime" = auto ; then
5008 cat > $TMPC <<EOF
5009 #include <QuickTime/QuickTime.h>
5010 int main(void) {
5011 ImageDescription *desc;
5012 EnterMovies();
5013 ExitMovies();
5014 return 0;
5017 quicktime=no
5018 cc_check -framework QuickTime && quicktime=yes
5020 if test "$quicktime" = yes ; then
5021 extra_ldflags="$extra_ldflags -framework QuickTime"
5022 def_quicktime='#define CONFIG_QUICKTIME 1'
5023 else
5024 def_quicktime='#undef CONFIG_QUICKTIME'
5025 _quartz=no
5027 echores $quicktime
5029 echocheck "Quartz"
5030 if test "$_quartz" = auto ; then
5031 cat > $TMPC <<EOF
5032 #include <Carbon/Carbon.h>
5033 int main(void) {
5034 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
5035 return 0;
5038 _quartz=no
5039 cc_check -framework Carbon && _quartz=yes
5041 if test "$_quartz" = yes ; then
5042 libs_mplayer="$libs_mplayer -framework Carbon"
5043 def_quartz='#define CONFIG_QUARTZ 1'
5044 _vomodules="quartz $_vomodules"
5045 else
5046 def_quartz='#undef CONFIG_QUARTZ'
5047 _novomodules="quartz $_novomodules"
5049 echores $_quartz
5051 echocheck "CoreVideo"
5052 if test "$_corevideo" = auto ; then
5053 cat > $TMPC <<EOF
5054 #include <Carbon/Carbon.h>
5055 #include <CoreServices/CoreServices.h>
5056 #include <OpenGL/OpenGL.h>
5057 #include <QuartzCore/CoreVideo.h>
5058 int main(void) { return 0; }
5060 _corevideo=no
5061 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
5063 if test "$_corevideo" = yes ; then
5064 _vomodules="corevideo $_vomodules"
5065 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
5066 def_corevideo='#define CONFIG_COREVIDEO 1'
5067 else
5068 _novomodules="corevideo $_novomodules"
5069 def_corevideo='#undef CONFIG_COREVIDEO'
5071 echores "$_corevideo"
5073 fi #if darwin
5076 # make sure this stays below CoreVideo to avoid issues due to namespace
5077 # conflicts between -lGL and -framework OpenGL
5078 echocheck "OpenGL"
5079 #Note: this test is run even with --enable-gl since we autodetect linker flags
5080 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
5081 cat > $TMPC << EOF
5082 #ifdef GL_WIN32
5083 #include <windows.h>
5084 #include <GL/gl.h>
5085 #else
5086 #include <GL/gl.h>
5087 #include <X11/Xlib.h>
5088 #include <GL/glx.h>
5089 #endif
5090 int main(void) {
5091 #ifdef GL_WIN32
5092 HDC dc;
5093 wglCreateContext(dc);
5094 #else
5095 glXCreateContext(NULL, NULL, NULL, True);
5096 #endif
5097 glFinish();
5098 return 0;
5101 _gl=no
5102 for _ld_tmp in -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5103 if cc_check $_ld_tmp $_ld_lm ; then
5104 _gl=yes
5105 _gl_x11=yes
5106 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5107 break
5109 done
5110 if cc_check -DGL_WIN32 -lopengl32 ; then
5111 _gl=yes
5112 _gl_win32=yes
5113 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5115 else
5116 _gl=no
5118 if test "$_gl" = yes ; then
5119 def_gl='#define CONFIG_GL 1'
5120 _res_comment="backends:"
5121 if test "$_gl_win32" = yes ; then
5122 def_gl_win32='#define CONFIG_GL_WIN32 1'
5123 _res_comment="$_res_comment win32"
5125 if test "$_gl_x11" = yes ; then
5126 def_gl_x11='#define CONFIG_GL_X11 1'
5127 _res_comment="$_res_comment x11"
5129 _vomodules="opengl $_vomodules"
5130 else
5131 def_gl='#undef CONFIG_GL'
5132 def_gl_win32='#undef CONFIG_GL_WIN32'
5133 def_gl_x11='#undef CONFIG_GL_X11'
5134 _novomodules="opengl $_novomodules"
5136 echores "$_gl"
5139 echocheck "MatrixView"
5140 if test "$_gl" = no ; then
5141 matrixview=no
5143 if test "$matrixview" = yes ; then
5144 _vomodules="matrixview $_vomodules"
5145 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5146 else
5147 _novomodules="matrixview $_novomodules"
5148 def_matrixview='#undef CONFIG_MATRIXVIEW'
5150 echores "$matrixview"
5153 echocheck "PNG support"
5154 if test "$_png" = auto ; then
5155 _png=no
5156 if irix ; then
5157 # Don't check for -lpng on irix since it has its own libpng
5158 # incompatible with the GNU libpng
5159 _res_comment="disabled on irix (not GNU libpng)"
5160 else
5161 cat > $TMPC << EOF
5162 #include <png.h>
5163 #include <string.h>
5164 int main(void) {
5165 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
5166 printf("libpng: %s\n", png_libpng_ver);
5167 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
5170 cc_check -lpng -lz $_ld_lm && _png=yes
5173 echores "$_png"
5174 if test "$_png" = yes ; then
5175 def_png='#define CONFIG_PNG 1'
5176 extra_ldflags="$extra_ldflags -lpng -lz"
5177 else
5178 def_png='#undef CONFIG_PNG'
5181 echocheck "MNG support"
5182 if test "$_mng" = auto ; then
5183 _mng=no
5184 cat > $TMPC << EOF
5185 #include <libmng.h>
5186 int main(void) {
5187 const char * p_ver = mng_version_text();
5188 return !p_ver || p_ver[0] == 0;
5191 if cc_check -lmng -lz $_ld_lm ; then
5192 _mng=yes
5195 echores "$_mng"
5196 if test "$_mng" = yes ; then
5197 def_mng='#define CONFIG_MNG 1'
5198 extra_ldflags="$extra_ldflags -lmng -lz"
5199 else
5200 def_mng='#undef CONFIG_MNG'
5203 echocheck "JPEG support"
5204 if test "$_jpeg" = auto ; then
5205 _jpeg=no
5206 cat > $TMPC << EOF
5207 #include <stdio.h>
5208 #include <stdlib.h>
5209 #include <setjmp.h>
5210 #include <string.h>
5211 #include <jpeglib.h>
5212 int main(void) { return 0; }
5214 cc_check -ljpeg $_ld_lm && _jpeg=yes
5216 echores "$_jpeg"
5218 if test "$_jpeg" = yes ; then
5219 def_jpeg='#define CONFIG_JPEG 1'
5220 _vomodules="jpeg $_vomodules"
5221 extra_ldflags="$extra_ldflags -ljpeg"
5222 else
5223 def_jpeg='#undef CONFIG_JPEG'
5224 _novomodules="jpeg $_novomodules"
5228 echocheck "OpenJPEG (JPEG2000) support"
5229 if test "$libopenjpeg" = auto ; then
5230 libopenjpeg=no
5231 cat > $TMPC << EOF
5232 #define OPJ_STATIC
5233 #include <openjpeg.h>
5234 int main(void) { opj_dparameters_t dec_params; opj_set_default_decoder_parameters(&dec_params); return 0; }
5236 cc_check -lopenjpeg $_ld_lm && libopenjpeg=yes
5238 echores "$libopenjpeg"
5239 if test "$libopenjpeg" = yes ; then
5240 def_libopenjpeg='#define CONFIG_LIBOPENJPEG 1'
5241 extra_ldflags="$extra_ldflags -lopenjpeg"
5242 _libavdecoders="$_libavdecoders LIBOPENJPEG_DECODER"
5243 _libavencoders="$_libavencoders LIBOPENJPEG_ENCODER"
5244 _codecmodules="OpenJPEG $_codecmodules"
5245 else
5246 def_libopenjpeg='#define CONFIG_LIBOPENJPEG 0'
5247 _nocodecmodules="OpenJPEG $_nocodecmodules"
5251 echocheck "PNM support"
5252 if test "$_pnm" = yes; then
5253 def_pnm="#define CONFIG_PNM 1"
5254 _vomodules="pnm $_vomodules"
5255 else
5256 def_pnm="#undef CONFIG_PNM"
5257 _novomodules="pnm $_novomodules"
5259 echores "$_pnm"
5263 echocheck "GIF support"
5264 # This is to appease people who want to force gif support.
5265 # If it is forced to yes, then we still do checks to determine
5266 # which gif library to use.
5267 if test "$_gif" = yes ; then
5268 _force_gif=yes
5269 _gif=auto
5272 if test "$_gif" = auto ; then
5273 _gif=no
5274 cat > $TMPC << EOF
5275 #include <gif_lib.h>
5276 int main(void) { return 0; }
5278 for _ld_gif in "-lungif" "-lgif" ; do
5279 cc_check $_ld_gif && _gif=yes && break
5280 done
5283 # If no library was found, and the user wants support forced,
5284 # then we force it on with libgif, as this is the safest
5285 # assumption IMHO. (libungif & libregif both create symbolic
5286 # links to libgif. We also assume that no x11 support is needed,
5287 # because if you are forcing this, then you _should_ know what
5288 # you are doing. [ Besides, package maintainers should never
5289 # have compiled x11 deps into libungif in the first place. ] )
5290 # </rant>
5291 # --Joey
5292 if test "$_force_gif" = yes && test "$_gif" = no ; then
5293 _gif=yes
5294 _ld_gif="-lgif"
5297 if test "$_gif" = yes ; then
5298 def_gif='#define CONFIG_GIF 1'
5299 _codecmodules="gif $_codecmodules"
5300 _vomodules="gif89a $_vomodules"
5301 _res_comment="old version, some encoding functions disabled"
5302 def_gif_4='#undef CONFIG_GIF_4'
5303 extra_ldflags="$extra_ldflags $_ld_gif"
5305 cat > $TMPC << EOF
5306 #include <signal.h>
5307 #include <gif_lib.h>
5308 void catch() { exit(1); }
5309 int main(void) {
5310 signal(SIGSEGV, catch); // catch segfault
5311 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
5312 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
5313 return 0;
5316 if cc_check "$_ld_gif" ; then
5317 def_gif_4='#define CONFIG_GIF_4 1'
5318 _res_comment=""
5320 else
5321 def_gif='#undef CONFIG_GIF'
5322 def_gif_4='#undef CONFIG_GIF_4'
5323 _novomodules="gif89a $_novomodules"
5324 _nocodecmodules="gif $_nocodecmodules"
5326 echores "$_gif"
5329 case "$_gif" in yes*)
5330 echocheck "broken giflib workaround"
5331 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5333 cat > $TMPC << EOF
5334 #include <gif_lib.h>
5335 int main(void) {
5336 GifFileType gif;
5337 printf("UserData is at address %p\n", gif.UserData);
5338 return 0;
5341 if cc_check "$_ld_gif" ; then
5342 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5343 echores "disabled"
5344 else
5345 echores "enabled"
5348 esac
5351 echocheck "VESA support"
5352 if test "$_vesa" = auto ; then
5353 cat > $TMPC << EOF
5354 #include <vbe.h>
5355 int main(void) { vbeVersion(); return 0; }
5357 _vesa=no
5358 cc_check -lvbe -llrmi && _vesa=yes
5360 if test "$_vesa" = yes ; then
5361 def_vesa='#define CONFIG_VESA 1'
5362 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5363 _vomodules="vesa $_vomodules"
5364 else
5365 def_vesa='#undef CONFIG_VESA'
5366 _novomodules="vesa $_novomodules"
5368 echores "$_vesa"
5370 #################
5371 # VIDEO + AUDIO #
5372 #################
5375 echocheck "SDL"
5376 _inc_tmp=""
5377 _ld_tmp=""
5378 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5379 if test -z "$_sdlconfig" ; then
5380 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5381 _sdlconfig="sdl-config"
5382 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5383 _sdlconfig="sdl11-config"
5384 else
5385 _sdlconfig=false
5388 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5389 cat > $TMPC << EOF
5390 #ifdef CONFIG_SDL_SDL_H
5391 #include <SDL/SDL.h>
5392 #else
5393 #include <SDL.h>
5394 #endif
5395 #ifndef __APPLE__
5396 // we allow SDL hacking our main() only on OSX
5397 #undef main
5398 #endif
5399 int main(int argc, char *argv[]) {
5400 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5401 return 0;
5404 _sdl=no
5405 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5406 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5407 _sdl=yes
5408 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5409 break
5411 done
5412 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5413 _res_comment="using $_sdlconfig"
5414 if cygwin ; then
5415 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5416 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5417 elif mingw32 ; then
5418 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5419 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5420 else
5421 _inc_tmp="$($_sdlconfig --cflags)"
5422 _ld_tmp="$($_sdlconfig --libs)"
5424 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5425 _sdlversion=$($_sdlconfig --version | sed 's/[^0-9]//g')
5426 if test "$_sdlversion" -gt 116 ; then
5427 if test "$_sdlversion" -lt 121 ; then
5428 def_sdlbuggy='#define BUGGY_SDL'
5429 else
5430 def_sdlbuggy='#undef BUGGY_SDL'
5432 _sdl=yes
5437 if test "$_sdl" = yes ; then
5438 def_sdl='#define CONFIG_SDL 1'
5439 extra_cflags="$extra_cflags $_inc_tmp"
5440 libs_mplayer="$libs_mplayer $_ld_tmp"
5441 _vomodules="sdl $_vomodules"
5442 _aomodules="sdl $_aomodules"
5443 else
5444 def_sdl='#undef CONFIG_SDL'
5445 _novomodules="sdl $_novomodules"
5446 _noaomodules="sdl $_noaomodules"
5448 echores "$_sdl"
5451 if os2 ; then
5452 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5453 if test "$_kva" = auto; then
5454 cat > $TMPC << EOF
5455 #include <os2.h>
5456 #include <kva.h>
5457 int main( void ) { return 0; }
5459 _kva=no;
5460 cc_check -lkva && _kva=yes
5462 if test "$_kva" = yes ; then
5463 def_kva='#define CONFIG_KVA 1'
5464 libs_mplayer="$libs_mplayer -lkva"
5465 _vomodules="kva $_vomodules"
5466 else
5467 def_kva='#undef CONFIG_KVA'
5468 _novomodules="kva $_novomodules"
5470 echores "$_kva"
5471 fi #if os2
5474 if win32; then
5476 echocheck "Windows waveout"
5477 if test "$_win32waveout" = auto ; then
5478 cat > $TMPC << EOF
5479 #include <windows.h>
5480 #include <mmsystem.h>
5481 int main(void) { return 0; }
5483 _win32waveout=no
5484 cc_check -lwinmm && _win32waveout=yes
5486 if test "$_win32waveout" = yes ; then
5487 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5488 libs_mplayer="$libs_mplayer -lwinmm"
5489 _aomodules="win32 $_aomodules"
5490 else
5491 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5492 _noaomodules="win32 $_noaomodules"
5494 echores "$_win32waveout"
5496 echocheck "Direct3D"
5497 if test "$_direct3d" = auto ; then
5498 cat > $TMPC << EOF
5499 #include <windows.h>
5500 #include <d3d9.h>
5501 int main(void) { return 0; }
5503 _direct3d=no
5504 cc_check && _direct3d=yes
5506 if test "$_direct3d" = yes ; then
5507 def_direct3d='#define CONFIG_DIRECT3D 1'
5508 _vomodules="direct3d $_vomodules"
5509 else
5510 def_direct3d='#undef CONFIG_DIRECT3D'
5511 _novomodules="direct3d $_novomodules"
5513 echores "$_direct3d"
5515 echocheck "Directx"
5516 if test "$_directx" = auto ; then
5517 cat > $TMPC << EOF
5518 #include <windows.h>
5519 #include <ddraw.h>
5520 #include <dsound.h>
5521 int main(void) { return 0; }
5523 _directx=no
5524 cc_check -lgdi32 && _directx=yes
5526 if test "$_directx" = yes ; then
5527 def_directx='#define CONFIG_DIRECTX 1'
5528 libs_mplayer="$libs_mplayer -lgdi32"
5529 _vomodules="directx $_vomodules"
5530 _aomodules="dsound $_aomodules"
5531 else
5532 def_directx='#undef CONFIG_DIRECTX'
5533 _novomodules="directx $_novomodules"
5534 _noaomodules="dsound $_noaomodules"
5536 echores "$_directx"
5538 fi #if win32; then
5541 echocheck "DXR2"
5542 if test "$_dxr2" = auto; then
5543 _dxr2=no
5544 cat > $TMPC << EOF
5545 #include <dxr2ioctl.h>
5546 int main(void) { return 0; }
5548 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5549 cc_check $_inc_tmp && _dxr2=yes && \
5550 extra_cflags="$extra_cflags $_inc_tmp" && break
5551 done
5553 if test "$_dxr2" = yes; then
5554 def_dxr2='#define CONFIG_DXR2 1'
5555 _aomodules="dxr2 $_aomodules"
5556 _vomodules="dxr2 $_vomodules"
5557 else
5558 def_dxr2='#undef CONFIG_DXR2'
5559 _noaomodules="dxr2 $_noaomodules"
5560 _novomodules="dxr2 $_novomodules"
5562 echores "$_dxr2"
5564 echocheck "DXR3/H+"
5565 if test "$_dxr3" = auto ; then
5566 cat > $TMPC << EOF
5567 #include <linux/em8300.h>
5568 int main(void) { return 0; }
5570 _dxr3=no
5571 cc_check && _dxr3=yes
5573 if test "$_dxr3" = yes ; then
5574 def_dxr3='#define CONFIG_DXR3 1'
5575 _vomodules="dxr3 $_vomodules"
5576 else
5577 def_dxr3='#undef CONFIG_DXR3'
5578 _novomodules="dxr3 $_novomodules"
5580 echores "$_dxr3"
5583 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5584 if test "$_ivtv" = 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/ivtv.h>
5591 #include <sys/ioctl.h>
5592 int main(void) {
5593 struct ivtv_cfg_stop_decode sd;
5594 struct ivtv_cfg_start_decode sd1;
5595 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5596 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5597 return 0; }
5599 _ivtv=no
5600 cc_check && _ivtv=yes
5602 if test "$_ivtv" = yes ; then
5603 def_ivtv='#define CONFIG_IVTV 1'
5604 _vomodules="ivtv $_vomodules"
5605 _aomodules="ivtv $_aomodules"
5606 else
5607 def_ivtv='#undef CONFIG_IVTV'
5608 _novomodules="ivtv $_novomodules"
5609 _noaomodules="ivtv $_noaomodules"
5611 echores "$_ivtv"
5614 echocheck "V4L2 MPEG Decoder"
5615 if test "$_v4l2" = auto ; then
5616 cat > $TMPC << EOF
5617 #include <stdlib.h>
5618 #include <inttypes.h>
5619 #include <linux/types.h>
5620 #include <linux/videodev2.h>
5621 #include <linux/version.h>
5622 int main(void) {
5623 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5624 #error kernel headers too old, need 2.6.22
5625 #endif
5626 struct v4l2_ext_controls ctrls;
5627 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5628 return 0;
5631 _v4l2=no
5632 cc_check && _v4l2=yes
5634 if test "$_v4l2" = yes ; then
5635 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5636 _vomodules="v4l2 $_vomodules"
5637 _aomodules="v4l2 $_aomodules"
5638 else
5639 def_v4l2='#undef CONFIG_V4L2_DECODER'
5640 _novomodules="v4l2 $_novomodules"
5641 _noaomodules="v4l2 $_noaomodules"
5643 echores "$_v4l2"
5647 #########
5648 # AUDIO #
5649 #########
5652 echocheck "OSS Audio"
5653 if test "$_ossaudio" = auto ; then
5654 cat > $TMPC << EOF
5655 #include <sys/ioctl.h>
5656 #include <$_soundcard_header>
5657 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5659 _ossaudio=no
5660 cc_check && _ossaudio=yes
5662 if test "$_ossaudio" = yes ; then
5663 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5664 _aomodules="oss $_aomodules"
5665 if test "$_linux_devfs" = yes; then
5666 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5667 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5668 else
5669 cat > $TMPC << EOF
5670 #include <sys/ioctl.h>
5671 #include <$_soundcard_header>
5672 #ifdef OPEN_SOUND_SYSTEM
5673 int main(void) { return 0; }
5674 #else
5675 #error Not the real thing
5676 #endif
5678 _real_ossaudio=no
5679 cc_check && _real_ossaudio=yes
5680 if test "$_real_ossaudio" = yes; then
5681 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5682 elif netbsd || openbsd ; then
5683 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5684 extra_ldflags="$extra_ldflags -lossaudio"
5685 else
5686 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5688 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5690 else
5691 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5692 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5693 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5694 _noaomodules="oss $_noaomodules"
5696 echores "$_ossaudio"
5699 echocheck "aRts"
5700 if test "$_arts" = auto ; then
5701 _arts=no
5702 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5704 cat > $TMPC << EOF
5705 #include <artsc.h>
5706 int main(void) { return 0; }
5708 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5713 if test "$_arts" = yes ; then
5714 def_arts='#define CONFIG_ARTS 1'
5715 _aomodules="arts $_aomodules"
5716 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5717 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5718 else
5719 _noaomodules="arts $_noaomodules"
5721 echores "$_arts"
5724 echocheck "EsounD"
5725 if test "$_esd" = auto ; then
5726 _esd=no
5727 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5729 cat > $TMPC << EOF
5730 #include <esd.h>
5731 int main(void) { int fd = esd_open_sound("test"); return fd; }
5733 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5737 echores "$_esd"
5739 if test "$_esd" = yes ; then
5740 def_esd='#define CONFIG_ESD 1'
5741 _aomodules="esd $_aomodules"
5742 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5743 extra_cflags="$extra_cflags $(esd-config --cflags)"
5745 echocheck "esd_get_latency()"
5746 cat > $TMPC << EOF
5747 #include <esd.h>
5748 int main(void) { return esd_get_latency(0); }
5750 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5751 echores "$_esd_latency"
5752 else
5753 def_esd='#undef CONFIG_ESD'
5754 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5755 _noaomodules="esd $_noaomodules"
5759 echocheck "NAS"
5760 if test "$_nas" = auto ; then
5761 cat > $TMPC << EOF
5762 #include <audio/audiolib.h>
5763 int main(void) { return 0; }
5765 _nas=no
5766 cc_check $_ld_lm -laudio -lXt && _nas=yes
5768 if test "$_nas" = yes ; then
5769 def_nas='#define CONFIG_NAS 1'
5770 libs_mplayer="$libs_mplayer -laudio -lXt"
5771 _aomodules="nas $_aomodules"
5772 else
5773 _noaomodules="nas $_noaomodules"
5774 def_nas='#undef CONFIG_NAS'
5776 echores "$_nas"
5779 echocheck "pulse"
5780 if test "$_pulse" = auto ; then
5781 _pulse=no
5782 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5784 cat > $TMPC << EOF
5785 #include <pulse/pulseaudio.h>
5786 int main(void) { return 0; }
5788 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5792 echores "$_pulse"
5794 if test "$_pulse" = yes ; then
5795 def_pulse='#define CONFIG_PULSE 1'
5796 _aomodules="pulse $_aomodules"
5797 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5798 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5799 else
5800 def_pulse='#undef CONFIG_PULSE'
5801 _noaomodules="pulse $_noaomodules"
5805 echocheck "JACK"
5806 if test "$_jack" = auto ; then
5807 _jack=yes
5809 cat > $TMPC << EOF
5810 #include <jack/jack.h>
5811 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5813 if cc_check -ljack ; then
5814 libs_mplayer="$libs_mplayer -ljack"
5815 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5816 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5817 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5818 else
5819 _jack=no
5823 if test "$_jack" = yes ; then
5824 def_jack='#define CONFIG_JACK 1'
5825 _aomodules="jack $_aomodules"
5826 else
5827 _noaomodules="jack $_noaomodules"
5829 echores "$_jack"
5831 echocheck "OpenAL"
5832 if test "$_openal" = auto ; then
5833 _openal=no
5834 cat > $TMPC << EOF
5835 #ifdef OPENAL_AL_H
5836 #include <OpenAL/al.h>
5837 #else
5838 #include <AL/al.h>
5839 #endif
5840 int main(void) {
5841 alSourceQueueBuffers(0, 0, 0);
5842 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5843 return 0;
5846 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5847 cc_check $I && _openal=yes && break
5848 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5849 done
5850 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5852 if test "$_openal" = yes ; then
5853 def_openal='#define CONFIG_OPENAL 1'
5854 _aomodules="openal $_aomodules"
5855 else
5856 _noaomodules="openal $_noaomodules"
5858 echores "$_openal"
5860 echocheck "ALSA audio"
5861 if test "$_alloca" != yes ; then
5862 _alsa=no
5863 _res_comment="alloca missing"
5865 if test "$_alsa" != no ; then
5866 _alsa=no
5867 cat > $TMPC << EOF
5868 #include <sys/time.h>
5869 #include <sys/asoundlib.h>
5870 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5871 #error "alsa version != 0.5.x"
5872 #endif
5873 int main(void) { return 0; }
5875 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5877 cat > $TMPC << EOF
5878 #include <sys/time.h>
5879 #include <sys/asoundlib.h>
5880 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5881 #error "alsa version != 0.9.x"
5882 #endif
5883 int main(void) { return 0; }
5885 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5886 cat > $TMPC << EOF
5887 #include <sys/time.h>
5888 #include <alsa/asoundlib.h>
5889 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5890 #error "alsa version != 0.9.x"
5891 #endif
5892 int main(void) { return 0; }
5894 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5896 cat > $TMPC << EOF
5897 #include <sys/time.h>
5898 #include <sys/asoundlib.h>
5899 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5900 #error "alsa version != 1.0.x"
5901 #endif
5902 int main(void) { return 0; }
5904 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5905 cat > $TMPC << EOF
5906 #include <sys/time.h>
5907 #include <alsa/asoundlib.h>
5908 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5909 #error "alsa version != 1.0.x"
5910 #endif
5911 int main(void) { return 0; }
5913 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5915 def_alsa='#undef CONFIG_ALSA'
5916 def_alsa5='#undef CONFIG_ALSA5'
5917 def_alsa9='#undef CONFIG_ALSA9'
5918 def_alsa1x='#undef CONFIG_ALSA1X'
5919 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5920 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5921 if test "$_alsaver" ; then
5922 _alsa=yes
5923 if test "$_alsaver" = '0.5.x' ; then
5924 _alsa5=yes
5925 _aomodules="alsa5 $_aomodules"
5926 def_alsa5='#define CONFIG_ALSA5 1'
5927 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5928 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5929 elif test "$_alsaver" = '0.9.x-sys' ; then
5930 _alsa9=yes
5931 _aomodules="alsa $_aomodules"
5932 def_alsa='#define CONFIG_ALSA 1'
5933 def_alsa9='#define CONFIG_ALSA9 1'
5934 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5935 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5936 elif test "$_alsaver" = '0.9.x-alsa' ; then
5937 _alsa9=yes
5938 _aomodules="alsa $_aomodules"
5939 def_alsa='#define CONFIG_ALSA 1'
5940 def_alsa9='#define CONFIG_ALSA9 1'
5941 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5942 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5943 elif test "$_alsaver" = '1.0.x-sys' ; then
5944 _alsa1x=yes
5945 _aomodules="alsa $_aomodules"
5946 def_alsa='#define CONFIG_ALSA 1'
5947 def_alsa1x="#define CONFIG_ALSA1X 1"
5948 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5949 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5950 elif test "$_alsaver" = '1.0.x-alsa' ; then
5951 _alsa1x=yes
5952 _aomodules="alsa $_aomodules"
5953 def_alsa='#define CONFIG_ALSA 1'
5954 def_alsa1x="#define CONFIG_ALSA1X 1"
5955 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5956 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5957 else
5958 _alsa=no
5959 _res_comment="unknown version"
5961 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5962 else
5963 _noaomodules="alsa $_noaomodules"
5965 echores "$_alsa"
5968 echocheck "Sun audio"
5969 if test "$_sunaudio" = auto ; then
5970 cat > $TMPC << EOF
5971 #include <sys/types.h>
5972 #include <sys/audioio.h>
5973 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5975 _sunaudio=no
5976 cc_check && _sunaudio=yes
5978 if test "$_sunaudio" = yes ; then
5979 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5980 _aomodules="sun $_aomodules"
5981 else
5982 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5983 _noaomodules="sun $_noaomodules"
5985 echores "$_sunaudio"
5988 def_mlib='#define CONFIG_MLIB 0'
5989 if sunos; then
5990 echocheck "Sun mediaLib"
5991 if test "$_mlib" = auto ; then
5992 _mlib=no
5993 cat > $TMPC << EOF
5994 #include <mlib.h>
5995 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5997 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5999 echores "$_mlib"
6000 fi #if sunos
6003 if darwin; then
6004 echocheck "CoreAudio"
6005 if test "$_coreaudio" = auto ; then
6006 cat > $TMPC <<EOF
6007 #include <CoreAudio/CoreAudio.h>
6008 #include <AudioToolbox/AudioToolbox.h>
6009 #include <AudioUnit/AudioUnit.h>
6010 int main(void) { return 0; }
6012 _coreaudio=no
6013 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
6015 if test "$_coreaudio" = yes ; then
6016 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
6017 def_coreaudio='#define CONFIG_COREAUDIO 1'
6018 _aomodules="coreaudio $_aomodules"
6019 else
6020 def_coreaudio='#undef CONFIG_COREAUDIO'
6021 _noaomodules="coreaudio $_noaomodules"
6023 echores $_coreaudio
6024 fi #if darwin
6027 if irix; then
6028 echocheck "SGI audio"
6029 if test "$_sgiaudio" = auto ; then
6030 # check for SGI audio
6031 cat > $TMPC << EOF
6032 #include <dmedia/audio.h>
6033 int main(void) { return 0; }
6035 _sgiaudio=no
6036 cc_check && _sgiaudio=yes
6038 if test "$_sgiaudio" = "yes" ; then
6039 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
6040 libs_mplayer="$libs_mplayer -laudio"
6041 _aomodules="sgi $_aomodules"
6042 else
6043 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
6044 _noaomodules="sgi $_noaomodules"
6046 echores "$_sgiaudio"
6047 fi #if irix
6050 if os2 ; then
6051 echocheck "KAI (UNIAUD/DART)"
6052 if test "$_kai" = auto; then
6053 cat > $TMPC << EOF
6054 #include <os2.h>
6055 #include <kai.h>
6056 int main(void) { return 0; }
6058 _kai=no;
6059 cc_check -lkai && _kai=yes
6061 if test "$_kai" = yes ; then
6062 def_kai='#define CONFIG_KAI 1'
6063 libs_mplayer="$libs_mplayer -lkai"
6064 _aomodules="kai $_aomodules"
6065 else
6066 def_kai='#undef CONFIG_KAI'
6067 _noaomodules="kai $_noaomodules"
6069 echores "$_kai"
6071 echocheck "DART"
6072 if test "$_dart" = auto; then
6073 cat > $TMPC << EOF
6074 #include <os2.h>
6075 #include <dart.h>
6076 int main( void ) { return 0; }
6078 _dart=no;
6079 cc_check -ldart && _dart=yes
6081 if test "$_dart" = yes ; then
6082 def_dart='#define CONFIG_DART 1'
6083 libs_mplayer="$libs_mplayer -ldart"
6084 _aomodules="dart $_aomodules"
6085 else
6086 def_dart='#undef CONFIG_DART'
6087 _noaomodules="dart $_noaomodules"
6089 echores "$_dart"
6090 fi #if os2
6093 # set default CD/DVD devices
6094 if win32 || os2 ; then
6095 default_cdrom_device="D:"
6096 elif darwin ; then
6097 default_cdrom_device="/dev/disk1"
6098 elif dragonfly ; then
6099 default_cdrom_device="/dev/cd0"
6100 elif freebsd ; then
6101 default_cdrom_device="/dev/acd0"
6102 elif openbsd ; then
6103 default_cdrom_device="/dev/rcd0a"
6104 elif sunos ; then
6105 default_cdrom_device="/vol/dev/aliases/cdrom0"
6106 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
6107 # file system and the volfs service.
6108 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
6109 elif amigaos ; then
6110 default_cdrom_device="a1ide.device:2"
6111 else
6112 default_cdrom_device="/dev/cdrom"
6115 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
6116 default_dvd_device=$default_cdrom_device
6117 elif darwin ; then
6118 default_dvd_device="/dev/rdiskN"
6119 else
6120 default_dvd_device="/dev/dvd"
6124 echocheck "VCD support"
6125 if test "$_vcd" = auto; then
6126 _vcd=no
6127 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
6128 _vcd=yes
6129 elif mingw32; then
6130 cat > $TMPC << EOF
6131 #include <ddk/ntddcdrm.h>
6132 int main(void) { return 0; }
6134 cc_check && _vcd=yes
6137 if test "$_vcd" = yes; then
6138 _inputmodules="vcd $_inputmodules"
6139 def_vcd='#define CONFIG_VCD 1'
6140 else
6141 def_vcd='#undef CONFIG_VCD'
6142 _noinputmodules="vcd $_noinputmodules"
6143 _res_comment="not supported on this OS"
6145 echores "$_vcd"
6149 echocheck "dvdread"
6150 if test "$_dvdread_internal" = auto ; then
6151 _dvdread_internal=no
6152 _dvdread=no
6153 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
6154 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
6155 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
6156 || darwin || win32 || os2; then
6157 _dvdread_internal=yes
6158 _dvdread=yes
6159 extra_cflags="-Ilibdvdread4 $extra_cflags"
6161 elif test "$_dvdread" = auto ; then
6162 _dvdread=no
6163 if test "$_dl" = yes; then
6164 cat > $TMPC << EOF
6165 #include <inttypes.h>
6166 #include <dvdread/dvd_reader.h>
6167 #include <dvdread/ifo_types.h>
6168 #include <dvdread/ifo_read.h>
6169 #include <dvdread/nav_read.h>
6170 int main(void) { return 0; }
6172 _dvdreadcflags=$($_dvdreadconfig --cflags)
6173 _dvdreadlibs=$($_dvdreadconfig --libs)
6174 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
6175 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
6176 _dvdread=yes
6177 extra_cflags="$extra_cflags $_dvdreadcflags"
6178 extra_ldflags="$extra_ldflags $_dvdreadlibs"
6179 _res_comment="external"
6184 if test "$_dvdread_internal" = yes; then
6185 def_dvdread='#define CONFIG_DVDREAD 1'
6186 _inputmodules="dvdread(internal) $_inputmodules"
6187 _largefiles=yes
6188 _res_comment="internal"
6189 elif test "$_dvdread" = yes; then
6190 def_dvdread='#define CONFIG_DVDREAD 1'
6191 _largefiles=yes
6192 extra_ldflags="$extra_ldflags -ldvdread"
6193 _inputmodules="dvdread(external) $_inputmodules"
6194 _res_comment="external"
6195 else
6196 def_dvdread='#undef CONFIG_DVDREAD'
6197 _noinputmodules="dvdread $_noinputmodules"
6199 echores "$_dvdread"
6202 echocheck "internal libdvdcss"
6203 if test "$_libdvdcss_internal" = auto ; then
6204 _libdvdcss_internal=no
6205 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
6206 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
6208 if test "$_libdvdcss_internal" = yes ; then
6209 if linux || netbsd || openbsd || bsdos ; then
6210 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
6211 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
6212 elif freebsd || dragonfly ; then
6213 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
6214 elif darwin ; then
6215 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
6216 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
6217 elif cygwin ; then
6218 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
6219 elif beos ; then
6220 cflags_libdvdcss="-DSYS_BEOS"
6221 elif os2 ; then
6222 cflags_libdvdcss="-DSYS_OS2"
6224 cflags_libdvdcss_dvdread="-Ilibdvdcss"
6225 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
6226 _inputmodules="libdvdcss(internal) $_inputmodules"
6227 _largefiles=yes
6228 else
6229 _noinputmodules="libdvdcss(internal) $_noinputmodules"
6231 echores "$_libdvdcss_internal"
6234 echocheck "cdparanoia"
6235 if test "$_cdparanoia" = auto ; then
6236 cat > $TMPC <<EOF
6237 #include <cdda_interface.h>
6238 #include <cdda_paranoia.h>
6239 // This need a better test. How ?
6240 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
6242 _cdparanoia=no
6243 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
6244 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
6245 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
6246 done
6248 if test "$_cdparanoia" = yes ; then
6249 _cdda='yes'
6250 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
6251 openbsd && extra_ldflags="$extra_ldflags -lutil"
6253 echores "$_cdparanoia"
6256 echocheck "libcdio"
6257 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
6258 cat > $TMPC << EOF
6259 #include <stdio.h>
6260 #include <cdio/version.h>
6261 #include <cdio/cdda.h>
6262 #include <cdio/paranoia.h>
6263 int main(void) {
6264 void *test = cdda_verbose_set;
6265 printf("%s\n", CDIO_VERSION);
6266 return test == (void *)1;
6269 _libcdio=no
6270 for _ld_tmp in "" "-lwinmm" ; do
6271 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
6272 cc_check $_ld_tmp $_ld_lm \
6273 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6274 done
6275 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6276 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6277 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6278 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6279 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6282 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6283 _cdda='yes'
6284 def_libcdio='#define CONFIG_LIBCDIO 1'
6285 def_havelibcdio='yes'
6286 else
6287 if test "$_cdparanoia" = yes ; then
6288 _res_comment="using cdparanoia"
6290 def_libcdio='#undef CONFIG_LIBCDIO'
6291 def_havelibcdio='no'
6293 echores "$_libcdio"
6295 if test "$_cdda" = yes ; then
6296 test $_cddb = auto && test $_network = yes && _cddb=yes
6297 def_cdparanoia='#define CONFIG_CDDA 1'
6298 _inputmodules="cdda $_inputmodules"
6299 else
6300 def_cdparanoia='#undef CONFIG_CDDA'
6301 _noinputmodules="cdda $_noinputmodules"
6304 if test "$_cddb" = yes ; then
6305 def_cddb='#define CONFIG_CDDB 1'
6306 _inputmodules="cddb $_inputmodules"
6307 else
6308 _cddb=no
6309 def_cddb='#undef CONFIG_CDDB'
6310 _noinputmodules="cddb $_noinputmodules"
6313 echocheck "bitmap font support"
6314 if test "$_bitmap_font" = yes ; then
6315 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6316 else
6317 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6319 echores "$_bitmap_font"
6322 echocheck "freetype >= 2.0.9"
6324 # freetype depends on iconv
6325 if test "$_iconv" = no ; then
6326 _freetype=no
6327 _res_comment="iconv support needed"
6330 if test "$_freetype" = auto ; then
6331 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6332 cat > $TMPC << EOF
6333 #include <stdio.h>
6334 #include <ft2build.h>
6335 #include FT_FREETYPE_H
6336 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6337 #error "Need FreeType 2.0.9 or newer"
6338 #endif
6339 int main(void) {
6340 FT_Library library;
6341 FT_Int major=-1,minor=-1,patch=-1;
6342 int err=FT_Init_FreeType(&library);
6343 return 0;
6346 _freetype=no
6347 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6348 else
6349 _freetype=no
6352 if test "$_freetype" = yes ; then
6353 def_freetype='#define CONFIG_FREETYPE 1'
6354 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6355 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6356 else
6357 def_freetype='#undef CONFIG_FREETYPE'
6359 echores "$_freetype"
6361 if test "$_freetype" = no ; then
6362 _fontconfig=no
6363 _res_comment="FreeType support needed"
6365 echocheck "fontconfig"
6366 if test "$_fontconfig" = auto ; then
6367 cat > $TMPC << EOF
6368 #include <stdio.h>
6369 #include <stdlib.h>
6370 #include <fontconfig/fontconfig.h>
6371 #if FC_VERSION < 20402
6372 #error At least version 2.4.2 of fontconfig required
6373 #endif
6374 int main(void) {
6375 int err = FcInit();
6376 if (err == FcFalse) {
6377 printf("Couldn't initialize fontconfig lib\n");
6378 exit(err);
6380 return 0;
6383 _fontconfig=no
6384 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6385 _ld_tmp="-lfontconfig $_ld_tmp"
6386 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6387 done
6388 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6389 _inc_tmp=$($_pkg_config --cflags fontconfig)
6390 _ld_tmp=$($_pkg_config --libs fontconfig)
6391 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6392 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6395 if test "$_fontconfig" = yes ; then
6396 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6397 else
6398 def_fontconfig='#undef CONFIG_FONTCONFIG'
6400 echores "$_fontconfig"
6403 echocheck "SSA/ASS support"
6404 # libass depends on FreeType
6405 if test "$_freetype" = no ; then
6406 _ass=no
6407 ass_internal=no
6408 _res_comment="FreeType support needed"
6411 if test "$_ass" = auto ; then
6412 cat > $TMPC << EOF
6413 #include <ft2build.h>
6414 #include FT_FREETYPE_H
6415 #if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 2) || ((FREETYPE_MINOR == 2) && (FREETYPE_PATCH < 1)))
6416 #error "Need FreeType 2.2.1 or newer"
6417 #endif
6418 int main(void) { return 0; }
6420 _ass=no
6421 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _ass=yes
6422 if test "$_ass" = no ; then
6423 ass_internal=no
6424 _res_comment="FreeType >= 2.2.1 needed"
6425 elif test "$ass_internal" = no ; then
6426 _res_comment="external"
6427 extra_ldflags="$extra_ldflags -lass"
6430 if test "$_ass" = yes ; then
6431 def_ass='#define CONFIG_ASS 1'
6432 else
6433 def_ass='#undef CONFIG_ASS'
6435 if test "$ass_internal" = yes ; then
6436 def_ass_internal='#define CONFIG_ASS_INTERNAL 1'
6437 else
6438 def_ass_internal='#undef CONFIG_ASS_INTERNAL'
6440 echores "$_ass"
6443 echocheck "fribidi with charsets"
6444 _inc_tmp=""
6445 _ld_tmp=""
6446 if test "$_fribidi" = auto ; then
6447 cat > $TMPC << EOF
6448 #include <stdio.h>
6449 #include <stdlib.h>
6450 /* workaround for fribidi 0.10.4 and below */
6451 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6452 #include <fribidi/fribidi.h>
6453 int main(void) {
6454 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6455 printf("Fribidi headers are not consistents with the library!\n");
6456 exit(1);
6458 return 0;
6461 _fribidi=no
6462 _inc_tmp=""
6463 _ld_tmp="-lfribidi"
6464 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6465 if $_fribidiconfig --version > /dev/null 2>&1 &&
6466 test "$_fribidi" = no ; then
6467 _inc_tmp="$($_fribidiconfig --cflags)"
6468 _ld_tmp="$($_fribidiconfig --libs)"
6469 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6472 if test "$_fribidi" = yes ; then
6473 def_fribidi='#define CONFIG_FRIBIDI 1'
6474 extra_cflags="$extra_cflags $_inc_tmp"
6475 extra_ldflags="$extra_ldflags $_ld_tmp"
6476 else
6477 def_fribidi='#undef CONFIG_FRIBIDI'
6479 echores "$_fribidi"
6482 echocheck "ENCA"
6483 if test "$_enca" = auto ; then
6484 cat > $TMPC << EOF
6485 #include <sys/types.h>
6486 #include <enca.h>
6487 int main(void) {
6488 const char **langs;
6489 size_t langcnt;
6490 langs = enca_get_languages(&langcnt);
6491 return 0;
6494 _enca=no
6495 cc_check -lenca $_ld_lm && _enca=yes
6497 if test "$_enca" = yes ; then
6498 def_enca='#define CONFIG_ENCA 1'
6499 extra_ldflags="$extra_ldflags -lenca"
6500 else
6501 def_enca='#undef CONFIG_ENCA'
6503 echores "$_enca"
6506 echocheck "zlib"
6507 cat > $TMPC << EOF
6508 #include <zlib.h>
6509 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6511 _zlib=no
6512 cc_check -lz && _zlib=yes
6513 if test "$_zlib" = yes ; then
6514 def_zlib='#define CONFIG_ZLIB 1'
6515 extra_ldflags="$extra_ldflags -lz"
6516 else
6517 def_zlib='#define CONFIG_ZLIB 0'
6518 _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//)
6519 _libavencoders=$(echo $_libavencoders | sed -e s/FLASHSV_ENCODER// -e s/PNG_ENCODER// -e s/ZMBV_ENCODER// -e s/ZLIB_ENCODER//)
6521 echores "$_zlib"
6524 echocheck "bzlib"
6525 bzlib=no
6526 def_bzlib='#define CONFIG_BZLIB 0'
6527 cat > $TMPC << EOF
6528 #include <bzlib.h>
6529 int main(void) { BZ2_bzlibVersion(); return 0; }
6531 cc_check -lbz2 && bzlib=yes
6532 if test "$bzlib" = yes ; then
6533 def_bzlib='#define CONFIG_BZLIB 1'
6534 extra_ldflags="$extra_ldflags -lbz2"
6536 echores "$bzlib"
6539 echocheck "RTC"
6540 if test "$_rtc" = auto ; then
6541 cat > $TMPC << EOF
6542 #include <sys/ioctl.h>
6543 #ifdef __linux__
6544 #include <linux/rtc.h>
6545 #else
6546 #include <rtc.h>
6547 #define RTC_PIE_ON RTCIO_PIE_ON
6548 #endif
6549 int main(void) { return RTC_PIE_ON; }
6551 _rtc=no
6552 cc_check && _rtc=yes
6553 ppc && _rtc=no
6555 if test "$_rtc" = yes ; then
6556 def_rtc='#define HAVE_RTC 1'
6557 else
6558 def_rtc='#undef HAVE_RTC'
6560 echores "$_rtc"
6563 echocheck "liblzo2 support"
6564 if test "$_liblzo" = auto ; then
6565 _liblzo=no
6566 cat > $TMPC << EOF
6567 #include <lzo/lzo1x.h>
6568 int main(void) { lzo_init();return 0; }
6570 cc_check -llzo2 && _liblzo=yes
6572 if test "$_liblzo" = yes ; then
6573 def_liblzo='#define CONFIG_LIBLZO 1'
6574 extra_ldflags="$extra_ldflags -llzo2"
6575 _codecmodules="liblzo $_codecmodules"
6576 else
6577 def_liblzo='#undef CONFIG_LIBLZO'
6578 _nocodecmodules="liblzo $_nocodecmodules"
6580 echores "$_liblzo"
6583 echocheck "mad support"
6584 if test "$_mad" = auto ; then
6585 _mad=no
6586 cat > $TMPC << EOF
6587 #include <mad.h>
6588 int main(void) { return 0; }
6590 cc_check -lmad && _mad=yes
6592 if test "$_mad" = yes ; then
6593 def_mad='#define CONFIG_LIBMAD 1'
6594 extra_ldflags="$extra_ldflags -lmad"
6595 _codecmodules="libmad $_codecmodules"
6596 else
6597 def_mad='#undef CONFIG_LIBMAD'
6598 _nocodecmodules="libmad $_nocodecmodules"
6600 echores "$_mad"
6602 echocheck "Twolame"
6603 if test "$_twolame" = auto ; then
6604 cat > $TMPC <<EOF
6605 #include <twolame.h>
6606 int main(void) { twolame_init(); return 0; }
6608 _twolame=no
6609 cc_check -ltwolame $_ld_lm && _twolame=yes
6611 if test "$_twolame" = yes ; then
6612 def_twolame='#define CONFIG_TWOLAME 1'
6613 libs_mencoder="$libs_mencoder -ltwolame"
6614 _codecmodules="twolame $_codecmodules"
6615 else
6616 def_twolame='#undef CONFIG_TWOLAME'
6617 _nocodecmodules="twolame $_nocodecmodules"
6619 echores "$_twolame"
6621 echocheck "Toolame"
6622 if test "$_toolame" = auto ; then
6623 _toolame=no
6624 if test "$_twolame" = yes ; then
6625 _res_comment="disabled by twolame"
6626 else
6627 cat > $TMPC <<EOF
6628 #include <toolame.h>
6629 int main(void) { toolame_init(); return 0; }
6631 cc_check -ltoolame $_ld_lm && _toolame=yes
6634 if test "$_toolame" = yes ; then
6635 def_toolame='#define CONFIG_TOOLAME 1'
6636 libs_mencoder="$libs_mencoder -ltoolame"
6637 _codecmodules="toolame $_codecmodules"
6638 else
6639 def_toolame='#undef CONFIG_TOOLAME'
6640 _nocodecmodules="toolame $_nocodecmodules"
6642 if test "$_toolamedir" ; then
6643 _res_comment="using $_toolamedir"
6645 echores "$_toolame"
6647 echocheck "OggVorbis support"
6648 if test "$_tremor_internal" = yes; then
6649 _libvorbis=no
6650 elif test "$_tremor" = auto; then
6651 _tremor=no
6652 cat > $TMPC << EOF
6653 #include <tremor/ivorbiscodec.h>
6654 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6656 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6658 if test "$_libvorbis" = auto; then
6659 _libvorbis=no
6660 cat > $TMPC << EOF
6661 #include <vorbis/codec.h>
6662 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6664 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6666 if test "$_tremor_internal" = yes ; then
6667 _vorbis=yes
6668 def_vorbis='#define CONFIG_OGGVORBIS 1'
6669 def_tremor='#define CONFIG_TREMOR 1'
6670 _codecmodules="tremor(internal) $_codecmodules"
6671 _res_comment="internal Tremor"
6672 if test "$_tremor_low" = yes ; then
6673 cflags_tremor_low="-D_LOW_ACCURACY_"
6674 _res_comment="internal low accuracy Tremor"
6676 elif test "$_tremor" = yes ; then
6677 _vorbis=yes
6678 def_vorbis='#define CONFIG_OGGVORBIS 1'
6679 def_tremor='#define CONFIG_TREMOR 1'
6680 _codecmodules="tremor(external) $_codecmodules"
6681 _res_comment="external Tremor"
6682 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6683 elif test "$_libvorbis" = yes ; then
6684 _vorbis=yes
6685 def_vorbis='#define CONFIG_OGGVORBIS 1'
6686 _codecmodules="libvorbis $_codecmodules"
6687 _res_comment="libvorbis"
6688 extra_ldflags="$extra_ldflags -lvorbis -logg"
6689 else
6690 _vorbis=no
6691 _nocodecmodules="libvorbis $_nocodecmodules"
6693 echores "$_vorbis"
6695 echocheck "libspeex (version >= 1.1 required)"
6696 if test "$_speex" = auto ; then
6697 _speex=no
6698 cat > $TMPC << EOF
6699 #include <speex/speex.h>
6700 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6702 cc_check -lspeex $_ld_lm && _speex=yes
6704 if test "$_speex" = yes ; then
6705 def_speex='#define CONFIG_SPEEX 1'
6706 extra_ldflags="$extra_ldflags -lspeex"
6707 _codecmodules="speex $_codecmodules"
6708 else
6709 def_speex='#undef CONFIG_SPEEX'
6710 _nocodecmodules="speex $_nocodecmodules"
6712 echores "$_speex"
6714 echocheck "OggTheora support"
6715 if test "$_theora" = auto ; then
6716 _theora=no
6717 cat > $TMPC << EOF
6718 #include <theora/theora.h>
6719 #include <string.h>
6720 int main(void) {
6721 /* Theora is in flux, make sure that all interface routines and datatypes
6722 * exist and work the way we expect it, so we don't break MPlayer. */
6723 ogg_packet op;
6724 theora_comment tc;
6725 theora_info inf;
6726 theora_state st;
6727 yuv_buffer yuv;
6728 int r;
6729 double t;
6731 theora_info_init(&inf);
6732 theora_comment_init(&tc);
6734 return 0;
6736 /* we don't want to execute this kind of nonsense; just for making sure
6737 * that compilation works... */
6738 memset(&op, 0, sizeof(op));
6739 r = theora_decode_header(&inf, &tc, &op);
6740 r = theora_decode_init(&st, &inf);
6741 t = theora_granule_time(&st, op.granulepos);
6742 r = theora_decode_packetin(&st, &op);
6743 r = theora_decode_YUVout(&st, &yuv);
6744 theora_clear(&st);
6746 return 0;
6749 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6750 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6751 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6752 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6753 if test _theora = no; then
6754 _ld_theora="-ltheora -logg"
6755 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6757 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6758 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6759 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6760 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6761 extra_ldflags="$extra_ldflags $_ld_theora" &&
6762 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6763 if test _theora = no; then
6764 _ld_theora="-ltheora -logg"
6765 cc_check tremor/bitwise.c $_ld_theora &&
6766 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6770 if test "$_theora" = yes ; then
6771 def_theora='#define CONFIG_OGGTHEORA 1'
6772 _codecmodules="libtheora $_codecmodules"
6773 # when --enable-theora is forced, we'd better provide a probably sane
6774 # $_ld_theora than nothing
6775 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6776 else
6777 def_theora='#undef CONFIG_OGGTHEORA'
6778 _nocodecmodules="libtheora $_nocodecmodules"
6780 echores "$_theora"
6782 echocheck "internal mp3lib support"
6783 if test "$_mp3lib" = auto ; then
6784 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6786 if test "$_mp3lib" = yes ; then
6787 def_mp3lib='#define CONFIG_MP3LIB 1'
6788 _codecmodules="mp3lib(internal) $_codecmodules"
6789 else
6790 def_mp3lib='#undef CONFIG_MP3LIB'
6791 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6793 echores "$_mp3lib"
6795 echocheck "liba52 support"
6796 if test "$_liba52_internal" = auto ; then
6797 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
6799 def_liba52='#undef CONFIG_LIBA52'
6800 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6801 if test "$_liba52_internal" = yes ; then
6802 _liba52=yes
6803 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6804 _res_comment="internal"
6805 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6806 _liba52=no
6807 cat > $TMPC << EOF
6808 #include <inttypes.h>
6809 #include <a52dec/a52.h>
6810 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6812 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6814 if test "$_liba52" = yes ; then
6815 def_liba52='#define CONFIG_LIBA52 1'
6816 _codecmodules="liba52($_res_comment) $_codecmodules"
6817 else
6818 _nocodecmodules="liba52 $_nocodecmodules"
6820 echores "$_liba52"
6822 echocheck "internal libmpeg2 support"
6823 if test "$_libmpeg2" = auto ; then
6824 _libmpeg2=yes
6825 if alpha && test cc_vendor=gnu; then
6826 case $cc_version in
6827 2*|3.0*|3.1*) # cannot compile MVI instructions
6828 _libmpeg2=no
6829 _res_comment="broken gcc"
6831 esac
6834 if test "$_libmpeg2" = yes ; then
6835 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6836 _codecmodules="libmpeg2(internal) $_codecmodules"
6837 else
6838 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6839 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6841 echores "$_libmpeg2"
6843 echocheck "libdca support"
6844 if test "$_libdca" = auto ; then
6845 _libdca=no
6846 cat > $TMPC << EOF
6847 #include <inttypes.h>
6848 #include <dts.h>
6849 int main(void) { dts_init(0); return 0; }
6851 for _ld_dca in -ldca -ldts ; do
6852 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6853 && _libdca=yes && break
6854 done
6856 if test "$_libdca" = yes ; then
6857 def_libdca='#define CONFIG_LIBDCA 1'
6858 _codecmodules="libdca $_codecmodules"
6859 else
6860 def_libdca='#undef CONFIG_LIBDCA'
6861 _nocodecmodules="libdca $_nocodecmodules"
6863 echores "$_libdca"
6865 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6866 if test "$_musepack" = auto ; then
6867 _musepack=no
6868 cat > $TMPC << EOF
6869 #include <stddef.h>
6870 #include <mpcdec/mpcdec.h>
6871 int main(void) {
6872 mpc_streaminfo info;
6873 mpc_decoder decoder;
6874 mpc_decoder_set_streaminfo(&decoder, &info);
6875 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6876 return 0;
6879 cc_check -lmpcdec $_ld_lm && _musepack=yes
6881 if test "$_musepack" = yes ; then
6882 def_musepack='#define CONFIG_MUSEPACK 1'
6883 extra_ldflags="$extra_ldflags -lmpcdec"
6884 _codecmodules="musepack $_codecmodules"
6885 else
6886 def_musepack='#undef CONFIG_MUSEPACK'
6887 _nocodecmodules="musepack $_nocodecmodules"
6889 echores "$_musepack"
6892 echocheck "FAAC support"
6893 if test "$_faac" = auto ; then
6894 cat > $TMPC <<EOF
6895 #include <inttypes.h>
6896 #include <faac.h>
6897 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6899 _faac=no
6900 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6901 cc_check -O4 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6902 done
6904 if test "$_faac" = yes ; then
6905 def_faac="#define CONFIG_FAAC 1"
6906 test "$_faac_lavc" = auto && _faac_lavc=yes
6907 if test "$_faac_lavc" = yes ; then
6908 def_faac_lavc="#define CONFIG_LIBFAAC 1"
6909 libs_mplayer="$libs_mplayer $_ld_faac"
6910 _libavencoders="$_libavencoders LIBFAAC_ENCODER"
6912 _codecmodules="faac $_codecmodules"
6913 else
6914 _faac_lavc=no
6915 def_faac="#undef CONFIG_FAAC"
6916 def_faac_lavc="#define CONFIG_LIBFAAC 0"
6917 _nocodecmodules="faac $_nocodecmodules"
6919 _res_comment="in libavcodec: $_faac_lavc"
6920 echores "$_faac"
6923 echocheck "FAAD2 support"
6924 if test "$_faad_internal" = auto ; then
6925 if x86_32 && test cc_vendor=gnu; then
6926 case $cc_version in
6927 3.1*|3.2) # ICE/insn with these versions
6928 _faad_internal=no
6929 _res_comment="broken gcc"
6932 _faad=yes
6933 _faad_internal=yes
6935 esac
6936 else
6937 _faad=yes
6938 _faad_internal=yes
6941 if test "$_faad" = auto ; then
6942 cat > $TMPC << EOF
6943 #include <faad.h>
6944 #ifndef FAAD_MIN_STREAMSIZE
6945 #error Too old version
6946 #endif
6947 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6948 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6950 cc_check -lfaad $_ld_lm && _faad=yes
6953 def_faad='#undef CONFIG_FAAD'
6954 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6955 if test "$_faad_internal" = yes ; then
6956 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6957 _res_comment="internal floating-point"
6958 if test "$_faad_fixed" = yes ; then
6959 # The FIXED_POINT implementation of FAAD2 improves performance
6960 # on some platforms, especially for SBR files.
6961 cflags_faad_fixed="-DFIXED_POINT"
6962 _res_comment="internal fixed-point"
6964 elif test "$_faad" = yes ; then
6965 extra_ldflags="$extra_ldflags -lfaad"
6968 if test "$_faad" = yes ; then
6969 def_faad='#define CONFIG_FAAD 1'
6970 if test "$_faad_internal" = yes ; then
6971 _codecmodules="faad2(internal) $_codecmodules"
6972 else
6973 _codecmodules="faad2 $_codecmodules"
6975 else
6976 _faad=no
6977 _nocodecmodules="faad2 $_nocodecmodules"
6979 echores "$_faad"
6982 echocheck "LADSPA plugin support"
6983 if test "$_ladspa" = auto ; then
6984 cat > $TMPC <<EOF
6985 #include <stdio.h>
6986 #include <ladspa.h>
6987 int main(void) {
6988 const LADSPA_Descriptor *ld = NULL;
6989 return 0;
6992 _ladspa=no
6993 cc_check && _ladspa=yes
6995 if test "$_ladspa" = yes; then
6996 def_ladspa="#define CONFIG_LADSPA 1"
6997 else
6998 def_ladspa="#undef CONFIG_LADSPA"
7000 echores "$_ladspa"
7003 echocheck "libbs2b audio filter support"
7004 if test "$_libbs2b" = auto ; then
7005 cat > $TMPC <<EOF
7006 #include <bs2b.h>
7007 #if BS2B_VERSION_MAJOR < 3
7008 #error Please use libbs2b >= 3.0.0, older versions are not supported.
7009 #endif
7010 int main(void) {
7011 t_bs2bdp filter;
7012 filter=bs2b_open();
7013 bs2b_close(filter);
7014 return 0;
7017 _libbs2b=no
7018 if $_pkg_config --exists libbs2b ; then
7019 _inc_tmp=$($_pkg_config --cflags libbs2b)
7020 _ld_tmp=$($_pkg_config --libs libbs2b)
7021 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
7022 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
7023 else
7024 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
7025 -I/usr/local/include/bs2b ; do
7026 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
7027 extra_ldflags="$extra_ldflags -lbs2b"
7028 extra_cflags="$extra_cflags $_inc_tmp"
7029 _libbs2b=yes
7030 break
7032 done
7035 def_libbs2b="#undef CONFIG_LIBBS2B"
7036 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
7037 echores "$_libbs2b"
7040 if test -z "$_codecsdir" ; then
7041 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
7042 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
7043 if test -d "$dir" ; then
7044 _codecsdir="$dir"
7045 break;
7047 done
7049 # Fall back on default directory.
7050 if test -z "$_codecsdir" ; then
7051 _codecsdir="$_libdir/codecs"
7052 mingw32 && _codecsdir="codecs"
7053 os2 && _codecsdir="codecs"
7057 echocheck "Win32 codecs"
7058 if test "$_win32dll" = auto ; then
7059 _win32dll=no
7060 if x86_32 && ! qnx; then
7061 _win32dll=yes
7064 if test "$_win32dll" = yes ; then
7065 def_win32dll='#define CONFIG_WIN32DLL 1'
7066 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
7067 _res_comment="using $_win32codecsdir"
7068 if ! win32 ; then
7069 def_win32_loader='#define WIN32_LOADER 1'
7070 _win32_emulation=yes
7071 else
7072 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
7073 _res_comment="using native windows"
7075 _codecmodules="win32 $_codecmodules"
7076 else
7077 def_win32dll='#undef CONFIG_WIN32DLL'
7078 def_win32_loader='#undef WIN32_LOADER'
7079 _nocodecmodules="win32 $_nocodecmodules"
7081 echores "$_win32dll"
7084 echocheck "XAnim codecs"
7085 if test "$_xanim" = auto ; then
7086 _xanim=no
7087 _res_comment="dynamic loader support needed"
7088 if test "$_dl" = yes ; then
7089 _xanim=yes
7092 if test "$_xanim" = yes ; then
7093 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
7094 def_xanim='#define CONFIG_XANIM 1'
7095 def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
7096 _codecmodules="xanim $_codecmodules"
7097 _res_comment="using $_xanimcodecsdir"
7098 else
7099 def_xanim='#undef CONFIG_XANIM'
7100 def_xanim_path='#undef XACODEC_PATH'
7101 _nocodecmodules="xanim $_nocodecmodules"
7103 echores "$_xanim"
7106 echocheck "RealPlayer codecs"
7107 if test "$_real" = auto ; then
7108 _real=no
7109 _res_comment="dynamic loader support needed"
7110 if test "$_dl" = yes || test "$_win32dll" = yes &&
7111 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
7112 _real=yes
7115 if test "$_real" = yes ; then
7116 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
7117 def_real='#define CONFIG_REALCODECS 1'
7118 def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
7119 _codecmodules="real $_codecmodules"
7120 _res_comment="using $_realcodecsdir"
7121 else
7122 def_real='#undef CONFIG_REALCODECS'
7123 def_real_path="#undef REALCODEC_PATH"
7124 _nocodecmodules="real $_nocodecmodules"
7126 echores "$_real"
7129 echocheck "QuickTime codecs"
7130 _qtx_emulation=no
7131 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
7132 if test "$_qtx" = auto ; then
7133 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
7135 if test "$_qtx" = yes ; then
7136 def_qtx='#define CONFIG_QTX_CODECS 1'
7137 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
7138 _codecmodules="qtx $_codecmodules"
7139 darwin || win32 || _qtx_emulation=yes
7140 else
7141 def_qtx='#undef CONFIG_QTX_CODECS'
7142 _nocodecmodules="qtx $_nocodecmodules"
7144 echores "$_qtx"
7146 echocheck "Nemesi Streaming Media libraries"
7147 if test "$_nemesi" = auto && test "$_network" = yes ; then
7148 _nemesi=no
7149 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
7150 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
7151 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
7152 _nemesi=yes
7155 if test "$_nemesi" = yes; then
7156 _native_rtsp=no
7157 def_nemesi='#define CONFIG_LIBNEMESI 1'
7158 _inputmodules="nemesi $_inputmodules"
7159 else
7160 _native_rtsp="$_network"
7161 _nemesi=no
7162 def_nemesi='#undef CONFIG_LIBNEMESI'
7163 _noinputmodules="nemesi $_noinputmodules"
7165 echores "$_nemesi"
7167 echocheck "LIVE555 Streaming Media libraries"
7168 if test "$_live" = auto && test "$_network" = yes ; then
7169 cat > $TMPCPP << EOF
7170 #include <liveMedia.hh>
7171 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
7172 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
7173 #endif
7174 int main(void) { return 0; }
7177 _live=no
7178 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
7179 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
7180 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
7181 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
7182 $_livelibdir/groupsock/libgroupsock.a \
7183 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
7184 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
7185 $extra_ldflags -lstdc++" \
7186 extra_cxxflags="-I$_livelibdir/liveMedia/include \
7187 -I$_livelibdir/UsageEnvironment/include \
7188 -I$_livelibdir/BasicUsageEnvironment/include \
7189 -I$_livelibdir/groupsock/include" && \
7190 _live=yes && break
7191 done
7192 if test "$_live" != yes ; then
7193 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
7194 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
7195 _live_dist=yes
7199 if test "$_live" = yes && test "$_network" = yes; then
7200 test $_livelibdir && _res_comment="using $_livelibdir"
7201 def_live='#define CONFIG_LIVE555 1'
7202 _inputmodules="live555 $_inputmodules"
7203 elif test "$_live_dist" = yes && test "$_network" = yes; then
7204 _res_comment="using distribution version"
7205 _live="yes"
7206 def_live='#define CONFIG_LIVE555 1'
7207 extra_ldflags="$extra_ldflags $ld_tmp"
7208 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
7209 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
7210 _inputmodules="live555 $_inputmodules"
7211 else
7212 _live=no
7213 def_live='#undef CONFIG_LIVE555'
7214 _noinputmodules="live555 $_noinputmodules"
7216 echores "$_live"
7219 echocheck "FFmpeg libavutil"
7220 if test "$_libavutil_a" = auto ; then
7221 if test -d libavutil ; then
7222 _libavutil_a=yes
7223 _res_comment="static"
7224 else
7225 die "MPlayer will not compile without libavutil in the source tree."
7227 elif test "$_libavutil_so" = auto ; then
7228 _libavutil_so=no
7229 cat > $TMPC << EOF
7230 #include <libavutil/common.h>
7231 int main(void) { av_clip(1, 1, 1); return 0; }
7233 if $_pkg_config --exists libavutil ; then
7234 _inc_libavutil=$($_pkg_config --cflags libavutil)
7235 _ld_tmp=$($_pkg_config --libs libavutil)
7236 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7237 && _libavutil_so=yes
7238 elif cc_check -lavutil $_ld_lm ; then
7239 extra_ldflags="$extra_ldflags -lavutil"
7240 _libavutil_so=yes
7241 _res_comment="using libavutil.so, but static libavutil is recommended"
7244 _libavutil=no
7245 def_libavutil='#undef CONFIG_LIBAVUTIL'
7246 def_libavutil_a='#undef CONFIG_LIBAVUTIL_A'
7247 def_libavutil_so='#undef CONFIG_LIBAVUTIL_SO'
7248 test "$_libavutil_a" = yes || test "$_libavutil_so" = yes && _libavutil=yes
7249 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
7250 test "$_libavutil_a" = yes && def_libavutil_a='#define CONFIG_LIBAVUTIL_A 1'
7251 test "$_libavutil_so" = yes && def_libavutil_so='#define CONFIG_LIBAVUTIL_SO 1'
7252 # neither static nor shared libavutil is available, but it is mandatory ...
7253 if test "$_libavutil" = no ; then
7254 die "You need static or shared libavutil, MPlayer will not compile without!"
7256 echores "$_libavutil"
7258 echocheck "FFmpeg libavcodec"
7259 if test "$_libavcodec_a" = auto ; then
7260 _libavcodec_a=no
7261 if test -d libavcodec && test -f libavcodec/utils.c ; then
7262 _libavcodec_a="yes"
7263 _res_comment="static"
7265 elif test "$_libavcodec_so" = auto ; then
7266 _libavcodec_so=no
7267 _res_comment="libavcodec.so is discouraged over static libavcodec"
7268 cat > $TMPC << EOF
7269 #include <libavcodec/avcodec.h>
7270 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
7272 if $_pkg_config --exists libavcodec ; then
7273 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
7274 _ld_tmp=$($_pkg_config --libs libavcodec)
7275 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7276 && _libavcodec_so=yes
7277 elif cc_check -lavcodec $_ld_lm ; then
7278 extra_ldflags="$extra_ldflags -lavcodec"
7279 _libavcodec_so=yes
7280 _res_comment="using libavcodec.so, but static libavcodec is recommended"
7283 _libavcodec=no
7284 def_libavcodec='#undef CONFIG_LIBAVCODEC'
7285 def_libavcodec_a='#undef CONFIG_LIBAVCODEC_A'
7286 def_libavcodec_so='#undef CONFIG_LIBAVCODEC_SO'
7287 test "$_libavcodec_a" = yes || test "$_libavcodec_so" = yes && _libavcodec=yes
7288 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
7289 test "$_libavcodec_a" = yes && def_libavcodec_a='#define CONFIG_LIBAVCODEC_A 1'
7290 test "$_libavcodec_so" = yes && def_libavcodec_so='#define CONFIG_LIBAVCODEC_SO 1'
7291 test "$_libavcodec_mpegaudio_hp" = yes \
7292 && def_libavcodec_mpegaudio_hp='#define CONFIG_MPEGAUDIO_HP 1' \
7293 && mak_libavcodec_mpegaudio_hp='CONFIG_MPEGAUDIO_HP = yes'
7294 if test "$_libavcodec_a" = yes ; then
7295 _codecmodules="libavcodec(internal) $_codecmodules"
7296 elif test "$_libavcodec_so" = yes ; then
7297 _codecmodules="libavcodec.so $_codecmodules"
7298 else
7299 _nocodecmodules="libavcodec $_nocodecmodules"
7301 echores "$_libavcodec"
7303 echocheck "FFmpeg libavformat"
7304 if test "$_libavformat_a" = auto ; then
7305 _libavformat_a=no
7306 if test -d libavformat && test -f libavformat/utils.c ; then
7307 _libavformat_a=yes
7308 _res_comment="static"
7310 elif test "$_libavformat_so" = auto ; then
7311 _libavformat_so=no
7312 cat > $TMPC <<EOF
7313 #include <libavformat/avformat.h>
7314 #include <libavcodec/opt.h>
7315 int main(void) { av_alloc_format_context(); return 0; }
7317 if $_pkg_config --exists libavformat ; then
7318 _inc_libavformat=$($_pkg_config --cflags libavformat)
7319 _ld_tmp=$($_pkg_config --libs libavformat)
7320 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7321 && _libavformat_so=yes
7322 elif cc_check $_ld_lm -lavformat ; then
7323 extra_ldflags="$extra_ldflags -lavformat"
7324 _libavformat_so=yes
7325 _res_comment="using libavformat.so, but static libavformat is recommended"
7328 _libavformat=no
7329 def_libavformat='#undef CONFIG_LIBAVFORMAT'
7330 def_libavformat_a='#undef CONFIG_LIBAVFORMAT_A'
7331 def_libavformat_so='#undef CONFIG_LIBAVFORMAT_SO'
7332 test "$_libavformat_a" = yes || test "$_libavformat_so" = yes && _libavformat=yes
7333 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
7334 test "$_libavformat_a" = yes && def_libavformat_a='#define CONFIG_LIBAVFORMAT_A 1'
7335 test "$_libavformat_so" = yes \
7336 && def_libavformat_so='#define CONFIG_LIBAVFORMAT_SO 1'
7337 echores "$_libavformat"
7339 echocheck "FFmpeg libpostproc"
7340 if test "$_libpostproc_a" = auto ; then
7341 _libpostproc_a=no
7342 if test -d libpostproc && test -f libpostproc/postprocess.h ; then
7343 _libpostproc_a='yes'
7344 _res_comment="static"
7346 elif test "$_libpostproc_so" = auto ; then
7347 _libpostproc_so=no
7348 cat > $TMPC << EOF
7349 #include <inttypes.h>
7350 #include <libpostproc/postprocess.h>
7351 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
7353 if cc_check -lpostproc $_ld_lm ; then
7354 extra_ldflags="$extra_ldflags -lpostproc"
7355 _libpostproc_so=yes
7356 _res_comment="using libpostproc.so, but static libpostproc is recommended"
7359 _libpostproc=no
7360 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
7361 def_libpostproc_a='#undef CONFIG_LIBPOSTPROC_A'
7362 def_libpostproc_so='#undef CONFIG_LIBPOSTPROC_SO'
7363 test "$_libpostproc_a" = yes || test "$_libpostproc_so" = yes && _libpostproc=yes
7364 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
7365 test "$_libpostproc_a" = yes && def_libpostproc_a='#define CONFIG_LIBPOSTPROC_A 1'
7366 test "$_libpostproc_so" = yes \
7367 && def_libpostproc_so='#define CONFIG_LIBPOSTPROC_SO 1'
7368 echores "$_libpostproc"
7370 echocheck "FFmpeg libswscale"
7371 if test "$_libswscale_a" = auto ; then
7372 _libswscale_a=no
7373 if test -d libswscale && test -f libswscale/swscale.h ; then
7374 _libswscale_a='yes'
7375 _res_comment="static"
7377 elif test "$_libswscale_so" = auto ; then
7378 _libswscale_so=no
7379 _res_comment="using libswscale.so, but static libswscale is recommended"
7380 cat > $TMPC << EOF
7381 #include <libswscale/swscale.h>
7382 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7384 if $_pkg_config --exists libswscale ; then
7385 _inc_libswscale=$($_pkg_config --cflags libswscale)
7386 _ld_tmp=$($_pkg_config --libs libswscale)
7387 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7388 && _libswscale_so=yes
7389 elif cc_check -lswscale ; then
7390 extra_ldflags="$extra_ldflags -lswscale"
7391 _libswscale_so=yes
7394 _libswscale=no
7395 def_libswscale='#undef CONFIG_LIBSWSCALE'
7396 def_libswscale_a='#undef CONFIG_LIBSWSCALE_A'
7397 def_libswscale_so='#undef CONFIG_LIBSWSCALE_SO'
7398 test "$_libswscale_a" = yes || test "$_libswscale_so" = yes && _libswscale=yes
7399 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7400 test "$_libswscale_a" = yes && def_libswscale_a='#define CONFIG_LIBSWSCALE_A 1'
7401 test "$_libswscale_so" = yes \
7402 && def_libswscale_so='#define CONFIG_LIBSWSCALE_SO 1'
7403 echores "$_libswscale"
7405 echocheck "libopencore_amr narrowband"
7406 if test "$_libopencore_amrnb" = auto ; then
7407 _libopencore_amrnb=no
7408 cat > $TMPC << EOF
7409 #include <opencore-amrnb/interf_dec.h>
7410 int main(void) { Decoder_Interface_init(); return 0; }
7412 cc_check -lopencore-amrnb && _libopencore_amrnb=yes
7413 if test "$_libavcodec_a" != yes ; then
7414 _libopencore_amrnb=no
7415 _res_comment="libavcodec (static) is required by libopencore_amrnb, sorry"
7418 if test "$_libopencore_amrnb" = yes ; then
7419 _libopencore_amr=yes
7420 extra_ldflags="$extra_ldflags -lopencore-amrnb"
7421 def_libopencore_amrnb='#define CONFIG_LIBOPENCORE_AMRNB 1'
7422 _libavdecoders="$_libavdecoders LIBOPENCORE_AMRNB_DECODER"
7423 _libavencoders="$_libavencoders LIBOPENCORE_AMRNB_ENCODER"
7424 _codecmodules="libopencore_amrnb $_codecmodules"
7425 else
7426 def_libopencore_amrnb='#define CONFIG_LIBOPENCORE_AMRNB 0'
7427 _nocodecmodules="libopencore_amrnb $_nocodecmodules"
7429 echores "$_libopencore_amrnb"
7432 echocheck "libopencore_amr wideband"
7433 if test "$_libopencore_amrwb" = auto ; then
7434 _libopencore_amrwb=no
7435 cat > $TMPC << EOF
7436 #include <opencore-amrwb/dec_if.h>
7437 int main(void) { D_IF_init(); return 0; }
7439 cc_check -lopencore-amrwb && _libopencore_amrwb=yes
7440 if test "$_libavcodec_a" != yes ; then
7441 _libopencore_amrwb=no
7442 _res_comment="libavcodec (static) is required by libopencore_amrwb, sorry"
7445 if test "$_libopencore_amrwb" = yes ; then
7446 _libopencore_amr=yes
7447 extra_ldflags="$extra_ldflags -lopencore-amrwb"
7448 def_libopencore_amrwb='#define CONFIG_LIBOPENCORE_AMRWB 1'
7449 _libavdecoders="$_libavdecoders LIBOPENCORE_AMRWB_DECODER"
7450 _libavencoders="$_libavencoders LIBOPENCORE_AMRWB_DECODER"
7451 _codecmodules="libopencore_amrwb $_codecmodules"
7452 else
7453 def_libopencore_amrwb='#define LIBOPENCORE_AMRWB 0'
7454 _nocodecmodules="libopencore_amrwb $_nocodecmodules"
7456 echores "$_libopencore_amrwb"
7458 echocheck "libdv-0.9.5+"
7459 if test "$_libdv" = auto ; then
7460 _libdv=no
7461 cat > $TMPC <<EOF
7462 #include <libdv/dv.h>
7463 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7465 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7467 if test "$_libdv" = yes ; then
7468 def_libdv='#define CONFIG_LIBDV095 1'
7469 extra_ldflags="$extra_ldflags -ldv"
7470 _codecmodules="libdv $_codecmodules"
7471 else
7472 def_libdv='#undef CONFIG_LIBDV095'
7473 _nocodecmodules="libdv $_nocodecmodules"
7475 echores "$_libdv"
7478 echocheck "Xvid"
7479 if test "$_xvid" = auto ; then
7480 _xvid=no
7481 cat > $TMPC << EOF
7482 #include <xvid.h>
7483 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7485 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7486 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7487 done
7490 if test "$_xvid" = yes ; then
7491 def_xvid='#define CONFIG_XVID4 1'
7492 _codecmodules="xvid $_codecmodules"
7493 else
7494 def_xvid='#undef CONFIG_XVID4'
7495 _nocodecmodules="xvid $_nocodecmodules"
7497 echores "$_xvid"
7499 echocheck "Xvid two pass plugin"
7500 if test "$_xvid" = yes && test "$_xvid_lavc" = auto ; then
7501 cat > $TMPC << EOF
7502 #include <xvid.h>
7503 int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
7505 cc_check && _xvid_lavc=yes
7507 if test "$_xvid_lavc" = yes ; then
7508 def_xvid_lavc='#define CONFIG_LIBXVID 1'
7509 _libavencoders="$_libavencoders LIBXVID_ENCODER"
7510 else
7511 _xvid_lavc=no
7512 def_xvid_lavc='#define CONFIG_LIBXVID 0'
7514 echores "$_xvid_lavc"
7517 echocheck "x264"
7518 if test "$_x264" = auto ; then
7519 cat > $TMPC << EOF
7520 #include <inttypes.h>
7521 #include <x264.h>
7522 #if X264_BUILD < 83
7523 #error We do not support old versions of x264. Get the latest from git.
7524 #endif
7525 int main(void) { x264_encoder_open((void*)0); return 0; }
7527 _x264=no
7528 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7529 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7530 done
7533 if test "$_x264" = yes ; then
7534 def_x264='#define CONFIG_X264 1'
7535 _codecmodules="x264 $_codecmodules"
7536 test "$_x264_lavc" = auto && _x264_lavc=yes
7537 if test "$_x264_lavc" = yes ; then
7538 def_x264_lavc='#define CONFIG_LIBX264 1'
7539 libs_mplayer="$libs_mplayer $_ld_x264"
7540 _libavencoders="$_libavencoders LIBX264_ENCODER"
7542 else
7543 _x264_lavc=no
7544 def_x264='#undef CONFIG_X264'
7545 def_x264_lavc='#define CONFIG_LIBX264 0'
7546 _nocodecmodules="x264 $_nocodecmodules"
7548 _res_comment="in libavcodec: $_x264_lavc"
7549 echores "$_x264"
7552 echocheck "libdirac"
7553 if test "$_libdirac_lavc" = auto; then
7554 _libdirac_lavc=no
7555 if test "$_libavcodec_a" != yes; then
7556 _res_comment="libavcodec (static) is required by libdirac, sorry"
7557 else
7558 cat > $TMPC << EOF
7559 #include <libdirac_encoder/dirac_encoder.h>
7560 #include <libdirac_decoder/dirac_parser.h>
7561 int main(void)
7563 dirac_encoder_context_t enc_ctx;
7564 dirac_decoder_t *dec_handle;
7565 dirac_encoder_context_init(&enc_ctx, VIDEO_FORMAT_SD_576I50);
7566 dec_handle = dirac_decoder_init(0);
7567 if (dec_handle)
7568 dirac_decoder_close(dec_handle);
7569 return 0;
7572 if $_pkg_config --exists dirac ; then
7573 _inc_dirac=$($_pkg_config --silence-errors --cflags dirac)
7574 _ld_dirac=$($_pkg_config --silence-errors --libs dirac)
7575 cc_check $_inc_dirac $_ld_dirac &&
7576 _libdirac_lavc=yes &&
7577 extra_cflags="$extra_cflags $_inc_dirac" &&
7578 extra_ldflags="$extra_ldflags $_ld_dirac"
7582 if test "$_libdirac_lavc" = yes ; then
7583 def_libdirac_lavc='#define CONFIG_LIBDIRAC 1'
7584 _libavencoders="$_libavencoders LIBDIRAC_ENCODER"
7585 _libavdecoders="$_libavdecoders LIBDIRAC_DECODER"
7586 _codecmodules="libdirac $_codecmodules"
7587 else
7588 def_libdirac_lavc='#define CONFIG_LIBDIRAC 0'
7589 _nocodecmodules="libdirac $_nocodecmodules"
7591 echores "$_libdirac_lavc"
7594 echocheck "libschroedinger"
7595 if test "$_libschroedinger_lavc" = auto ; then
7596 _libschroedinger_lavc=no
7597 if test "$_libavcodec_a" != yes; then
7598 _res_comment="libavcodec (static) is required by libschroedinger, sorry"
7599 else
7600 cat > $TMPC << EOF
7601 #include <schroedinger/schro.h>
7602 int main(void) { schro_init(); return 0; }
7604 if $_pkg_config --exists schroedinger-1.0 ; then
7605 _inc_schroedinger=$($_pkg_config --silence-errors --cflags schroedinger-1.0)
7606 _ld_schroedinger=$($_pkg_config --silence-errors --libs schroedinger-1.0)
7607 cc_check $_inc_schroedinger $_ld_schroedinger &&
7608 _libschroedinger_lavc=yes &&
7609 extra_cflags="$extra_cflags $_inc_schroedinger" &&
7610 extra_ldflags="$extra_ldflags $_ld_schroedinger"
7614 if test "$_libschroedinger_lavc" = yes ; then
7615 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 1'
7616 _libavencoders="$_libavencoders LIBSCHROEDINGER_ENCODER"
7617 _libavdecoders="$_libavdecoders LIBSCHROEDINGER_DECODER"
7618 _codecmodules="libschroedinger $_codecmodules"
7619 else
7620 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 0'
7621 _nocodecmodules="libschroedinger $_nocodecmodules"
7623 echores "$_libschroedinger_lavc"
7625 echocheck "libnut"
7626 if test "$_libnut" = auto ; then
7627 cat > $TMPC << EOF
7628 #include <stdio.h>
7629 #include <stdlib.h>
7630 #include <inttypes.h>
7631 #include <libnut.h>
7632 nut_context_tt * nut;
7633 int main(void) { (void)nut_error(0); return 0; }
7635 _libnut=no
7636 cc_check -lnut && _libnut=yes
7639 if test "$_libnut" = yes ; then
7640 def_libnut='#define CONFIG_LIBNUT 1'
7641 extra_ldflags="$extra_ldflags -lnut"
7642 else
7643 def_libnut='#undef CONFIG_LIBNUT'
7645 echores "$_libnut"
7647 #check must be done after libavcodec one
7648 echocheck "zr"
7649 if test "$_zr" = auto ; then
7650 #36067's seem to identify themselves as 36057PQC's, so the line
7651 #below should work for 36067's and 36057's.
7652 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7653 _zr=yes
7654 else
7655 _zr=no
7658 if test "$_zr" = yes ; then
7659 if test "$_libavcodec_a" = yes ; then
7660 def_zr='#define CONFIG_ZR 1'
7661 _vomodules="zr zr2 $_vomodules"
7662 else
7663 _res_comment="libavcodec (static) is required by zr, sorry"
7664 _novomodules="zr $_novomodules"
7665 def_zr='#undef CONFIG_ZR'
7667 else
7668 def_zr='#undef CONFIG_ZR'
7669 _novomodules="zr zr2 $_novomodules"
7671 echores "$_zr"
7673 # mencoder requires (optional) those libs: libmp3lame
7674 if test "$_mencoder" != no ; then
7676 echocheck "libmp3lame"
7677 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7678 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7679 if test "$_mp3lame" = auto ; then
7680 _mp3lame=no
7681 cat > $TMPC <<EOF
7682 #include <lame/lame.h>
7683 int main(void) { lame_version_t lv; (void) lame_init();
7684 get_lame_version_numerical(&lv);
7685 return 0; }
7687 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7689 if test "$_mp3lame" = yes ; then
7690 def_mp3lame="#define CONFIG_MP3LAME 1"
7691 _ld_mp3lame=-lmp3lame
7692 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7693 cat > $TMPC << EOF
7694 #include <lame/lame.h>
7695 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7697 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7698 cat > $TMPC << EOF
7699 #include <lame/lame.h>
7700 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7702 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7703 test "$_mp3lame_lavc" = auto && _mp3lame_lavc=yes
7704 if test "$_mp3lame_lavc" = yes ; then
7705 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 1"
7706 _libavencoders="$_libavencoders LIBMP3LAME_ENCODER"
7707 libs_mplayer="$libs_mplayer $_ld_mp3lame"
7709 else
7710 _mp3lame_lavc=no
7711 def_mp3lame='#undef CONFIG_MP3LAME'
7712 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 0"
7714 _res_comment="in libavcodec: $_mp3lame_lavc"
7715 echores "$_mp3lame"
7717 fi # test "$_mencoder" != no
7719 echocheck "mencoder"
7720 if test "$_mencoder" = yes ; then
7721 def_muxers='#define CONFIG_MUXERS 1'
7722 else
7723 # mpeg1video for vf_lavc, snow for vf_uspp and vf_mcdeint, png for vf_screenshot
7724 _libavencoders="MPEG1VIDEO_ENCODER SNOW_ENCODER"
7725 test "$_zlib" = yes && _libavencoders="$_libavencoders PNG_ENCODER"
7726 _libavmuxers=""
7727 def_muxers='#define CONFIG_MUXERS 0'
7729 echores "$_mencoder"
7732 echocheck "UnRAR executable"
7733 if test "$_unrar_exec" = auto ; then
7734 _unrar_exec="yes"
7735 mingw32 && _unrar_exec="no"
7737 if test "$_unrar_exec" = yes ; then
7738 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7739 else
7740 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7742 echores "$_unrar_exec"
7744 echocheck "TV interface"
7745 if test "$_tv" = yes ; then
7746 def_tv='#define CONFIG_TV 1'
7747 _inputmodules="tv $_inputmodules"
7748 else
7749 _noinputmodules="tv $_noinputmodules"
7750 def_tv='#undef CONFIG_TV'
7752 echores "$_tv"
7755 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7756 echocheck "*BSD BT848 bt8xx header"
7757 _ioctl_bt848_h=no
7758 for file in "machine/ioctl_bt848.h" \
7759 "dev/bktr/ioctl_bt848.h" \
7760 "dev/video/bktr/ioctl_bt848.h" \
7761 "dev/ic/bt8xx.h" ; do
7762 cat > $TMPC <<EOF
7763 #include <sys/types.h>
7764 #include <sys/ioctl.h>
7765 #include <$file>
7766 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7768 if cc_check ; then
7769 _ioctl_bt848_h=yes
7770 _ioctl_bt848_h_name="$file"
7771 break;
7773 done
7774 if test "$_ioctl_bt848_h" = yes ; then
7775 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7776 _res_comment="using $_ioctl_bt848_h_name"
7777 else
7778 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7780 echores "$_ioctl_bt848_h"
7782 echocheck "*BSD ioctl_meteor.h"
7783 _ioctl_meteor_h=no
7784 for file in "machine/ioctl_meteor.h" \
7785 "dev/bktr/ioctl_meteor.h" \
7786 "dev/video/bktr/ioctl_meteor.h" ; do
7787 cat > $TMPC <<EOF
7788 #include <sys/types.h>
7789 #include <$file>
7790 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7792 if cc_check ; then
7793 _ioctl_meteor_h=yes
7794 _ioctl_meteor_h_name="$file"
7795 break;
7797 done
7798 if test "$_ioctl_meteor_h" = yes ; then
7799 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7800 _res_comment="using $_ioctl_meteor_h_name"
7801 else
7802 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7804 echores "$_ioctl_meteor_h"
7806 echocheck "*BSD BrookTree 848 TV interface"
7807 if test "$_tv_bsdbt848" = auto ; then
7808 _tv_bsdbt848=no
7809 if test "$_tv" = yes ; then
7810 cat > $TMPC <<EOF
7811 #include <sys/types.h>
7812 $def_ioctl_meteor_h_name
7813 $def_ioctl_bt848_h_name
7814 #ifdef IOCTL_METEOR_H_NAME
7815 #include IOCTL_METEOR_H_NAME
7816 #endif
7817 #ifdef IOCTL_BT848_H_NAME
7818 #include IOCTL_BT848_H_NAME
7819 #endif
7820 int main(void) {
7821 ioctl(0, METEORSINPUT, 0);
7822 ioctl(0, TVTUNER_GETFREQ, 0);
7823 return 0;
7826 cc_check && _tv_bsdbt848=yes
7829 if test "$_tv_bsdbt848" = yes ; then
7830 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7831 _inputmodules="tv-bsdbt848 $_inputmodules"
7832 else
7833 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7834 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7836 echores "$_tv_bsdbt848"
7837 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7840 echocheck "DirectShow TV interface"
7841 if test "$_tv_dshow" = auto ; then
7842 _tv_dshow=no
7843 if test "$_tv" = yes && win32 ; then
7844 cat > $TMPC <<EOF
7845 #include <ole2.h>
7846 int main(void) {
7847 void* p;
7848 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7849 return 0;
7852 cc_check -lole32 -luuid && _tv_dshow=yes
7855 if test "$_tv_dshow" = yes ; then
7856 _inputmodules="tv-dshow $_inputmodules"
7857 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7858 extra_ldflags="$extra_ldflags -lole32 -luuid"
7859 else
7860 _noinputmodules="tv-dshow $_noinputmodules"
7861 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7863 echores "$_tv_dshow"
7866 echocheck "Video 4 Linux TV interface"
7867 if test "$_tv_v4l1" = auto ; then
7868 _tv_v4l1=no
7869 if test "$_tv" = yes && linux ; then
7870 cat > $TMPC <<EOF
7871 #include <stdlib.h>
7872 #include <linux/videodev.h>
7873 int main(void) { return 0; }
7875 cc_check && _tv_v4l1=yes
7878 if test "$_tv_v4l1" = yes ; then
7879 _audio_input=yes
7880 _tv_v4l=yes
7881 def_tv_v4l='#define CONFIG_TV_V4L 1'
7882 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7883 _inputmodules="tv-v4l $_inputmodules"
7884 else
7885 _noinputmodules="tv-v4l1 $_noinputmodules"
7886 def_tv_v4l='#undef CONFIG_TV_V4L'
7888 echores "$_tv_v4l1"
7891 echocheck "Video 4 Linux 2 TV interface"
7892 if test "$_tv_v4l2" = auto ; then
7893 _tv_v4l2=no
7894 if test "$_tv" = yes && linux ; then
7895 cat > $TMPC <<EOF
7896 #include <stdlib.h>
7897 #include <linux/types.h>
7898 #include <linux/videodev2.h>
7899 int main(void) { return 0; }
7901 cc_check && _tv_v4l2=yes
7904 if test "$_tv_v4l2" = yes ; then
7905 _audio_input=yes
7906 _tv_v4l=yes
7907 def_tv_v4l='#define CONFIG_TV_V4L 1'
7908 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7909 _inputmodules="tv-v4l2 $_inputmodules"
7910 else
7911 _noinputmodules="tv-v4l2 $_noinputmodules"
7912 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7914 echores "$_tv_v4l2"
7917 echocheck "Radio interface"
7918 if test "$_radio" = yes ; then
7919 def_radio='#define CONFIG_RADIO 1'
7920 _inputmodules="radio $_inputmodules"
7921 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7922 _radio_capture=no
7924 if test "$_radio_capture" = yes ; then
7925 _audio_input=yes
7926 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7927 else
7928 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7930 else
7931 _noinputmodules="radio $_noinputmodules"
7932 def_radio='#undef CONFIG_RADIO'
7933 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7934 _radio_capture=no
7936 echores "$_radio"
7937 echocheck "Capture for Radio interface"
7938 echores "$_radio_capture"
7940 echocheck "Video 4 Linux 2 Radio interface"
7941 if test "$_radio_v4l2" = auto ; then
7942 _radio_v4l2=no
7943 if test "$_radio" = yes && linux ; then
7944 cat > $TMPC <<EOF
7945 #include <stdlib.h>
7946 #include <linux/types.h>
7947 #include <linux/videodev2.h>
7948 int main(void) { return 0; }
7950 cc_check && _radio_v4l2=yes
7953 if test "$_radio_v4l2" = yes ; then
7954 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7955 else
7956 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7958 echores "$_radio_v4l2"
7960 echocheck "Video 4 Linux Radio interface"
7961 if test "$_radio_v4l" = auto ; then
7962 _radio_v4l=no
7963 if test "$_radio" = yes && linux ; then
7964 cat > $TMPC <<EOF
7965 #include <stdlib.h>
7966 #include <linux/videodev.h>
7967 int main(void) { return 0; }
7969 cc_check && _radio_v4l=yes
7972 if test "$_radio_v4l" = yes ; then
7973 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7974 else
7975 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7977 echores "$_radio_v4l"
7979 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7980 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7981 echocheck "*BSD BrookTree 848 Radio interface"
7982 _radio_bsdbt848=no
7983 cat > $TMPC <<EOF
7984 #include <sys/types.h>
7985 $def_ioctl_bt848_h_name
7986 #ifdef IOCTL_BT848_H_NAME
7987 #include IOCTL_BT848_H_NAME
7988 #endif
7989 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7991 cc_check && _radio_bsdbt848=yes
7992 echores "$_radio_bsdbt848"
7993 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7995 if test "$_radio_bsdbt848" = yes ; then
7996 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7997 else
7998 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
8001 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
8002 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
8003 die "Radio driver requires BSD BT848, V4L or V4L2!"
8006 echocheck "Video 4 Linux 2 MPEG PVR interface"
8007 if test "$_pvr" = auto ; then
8008 _pvr=no
8009 if test "$_tv_v4l2" = yes && linux ; then
8010 cat > $TMPC <<EOF
8011 #include <stdlib.h>
8012 #include <inttypes.h>
8013 #include <linux/types.h>
8014 #include <linux/videodev2.h>
8015 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
8017 cc_check && _pvr=yes
8020 if test "$_pvr" = yes ; then
8021 def_pvr='#define CONFIG_PVR 1'
8022 _inputmodules="pvr $_inputmodules"
8023 else
8024 _noinputmodules="pvr $_noinputmodules"
8025 def_pvr='#undef CONFIG_PVR'
8027 echores "$_pvr"
8030 echocheck "ftp"
8031 if ! beos && test "$_ftp" = yes ; then
8032 def_ftp='#define CONFIG_FTP 1'
8033 _inputmodules="ftp $_inputmodules"
8034 else
8035 _noinputmodules="ftp $_noinputmodules"
8036 def_ftp='#undef CONFIG_FTP'
8038 echores "$_ftp"
8040 echocheck "vstream client"
8041 if test "$_vstream" = auto ; then
8042 _vstream=no
8043 cat > $TMPC <<EOF
8044 #include <vstream-client.h>
8045 void vstream_error(const char *format, ... ) {}
8046 int main(void) { vstream_start(); return 0; }
8048 cc_check -lvstream-client && _vstream=yes
8050 if test "$_vstream" = yes ; then
8051 def_vstream='#define CONFIG_VSTREAM 1'
8052 _inputmodules="vstream $_inputmodules"
8053 extra_ldflags="$extra_ldflags -lvstream-client"
8054 else
8055 _noinputmodules="vstream $_noinputmodules"
8056 def_vstream='#undef CONFIG_VSTREAM'
8058 echores "$_vstream"
8061 echocheck "OSD menu"
8062 if test "$_menu" = yes ; then
8063 def_menu='#define CONFIG_MENU 1'
8064 test $_dvbin = "yes" && _menu_dvbin=yes
8065 else
8066 def_menu='#undef CONFIG_MENU'
8067 _menu_dvbin=no
8069 echores "$_menu"
8072 echocheck "Subtitles sorting"
8073 if test "$_sortsub" = yes ; then
8074 def_sortsub='#define CONFIG_SORTSUB 1'
8075 else
8076 def_sortsub='#undef CONFIG_SORTSUB'
8078 echores "$_sortsub"
8081 echocheck "XMMS inputplugin support"
8082 if test "$_xmms" = yes ; then
8083 if ( xmms-config --version ) >/dev/null 2>&1 ; then
8084 _xmmsplugindir=$(xmms-config --input-plugin-dir)
8085 _xmmslibdir=$(xmms-config --exec-prefix)/lib
8086 else
8087 _xmmsplugindir=/usr/lib/xmms/Input
8088 _xmmslibdir=/usr/lib
8091 def_xmms='#define CONFIG_XMMS 1'
8092 if darwin ; then
8093 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
8094 else
8095 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
8097 else
8098 def_xmms='#undef CONFIG_XMMS'
8100 echores "$_xmms"
8103 # --------------- GUI specific tests begin -------------------
8104 echocheck "GUI"
8105 echo "$_gui"
8106 if test "$_gui" = yes ; then
8108 # Required libraries
8109 if test "$_libavcodec" != yes ||
8110 ! echo $_libavdecoders | grep -q PNG_DECODER ; then
8111 die "The GUI requires libavcodec with PNG support (needs zlib)."
8113 test "$_freetype" = no && test "$_bitmap_font" = no && \
8114 die "The GUI requires either FreeType or bitmap font support."
8115 if ! win32 ; then
8116 _gui_gtk=yes
8117 test "$_x11" != yes && die "X11 support required for GUI compilation."
8119 echocheck "XShape extension"
8120 if test "$_xshape" = auto ; then
8121 _xshape=no
8122 cat > $TMPC << EOF
8123 #include <X11/Xlib.h>
8124 #include <X11/Xproto.h>
8125 #include <X11/Xutil.h>
8126 #include <X11/extensions/shape.h>
8127 #include <stdlib.h>
8128 int main(void) {
8129 char *name = ":0.0";
8130 Display *wsDisplay;
8131 int exitvar = 0;
8132 int eventbase, errorbase;
8133 if (getenv("DISPLAY"))
8134 name=getenv("DISPLAY");
8135 wsDisplay=XOpenDisplay(name);
8136 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase))
8137 exitvar=1;
8138 XCloseDisplay(wsDisplay);
8139 return exitvar;
8142 cc_check -lXext && _xshape=yes
8144 if test "$_xshape" = yes ; then
8145 def_xshape='#define CONFIG_XSHAPE 1'
8146 else
8147 die "The GUI requires the X11 extension XShape (which was not found)."
8149 echores "$_xshape"
8151 #Check for GTK
8152 if test "$_gtk1" = no ; then
8153 #Check for GTK2 :
8154 echocheck "GTK+ version"
8156 if $_pkg_config gtk+-2.0 --exists ; then
8157 _gtk=$($_pkg_config gtk+-2.0 --modversion 2>/dev/null)
8158 extra_cflags="$extra_cflags $($_pkg_config gtk+-2.0 --cflags 2>/dev/null)"
8159 libs_mplayer="$libs_mplayer $($_pkg_config gtk+-2.0 --libs 2>/dev/null)"
8160 echores "$_gtk"
8162 # Check for GLIB2
8163 if $_pkg_config glib-2.0 --exists ; then
8164 echocheck "glib version"
8165 _glib=$($_pkg_config glib-2.0 --modversion 2>/dev/null)
8166 libs_mplayer="$libs_mplayer $($_pkg_config glib-2.0 --libs 2>/dev/null)"
8167 echores "$_glib"
8169 def_gui='#define CONFIG_GUI 1'
8170 def_gtk2='#define CONFIG_GTK2 1'
8171 else
8172 _gtk1=yes
8173 echo "GLIB-2 devel packages were not found, trying GTK 1.2"
8175 else
8176 echo "GTK-2 devel packages were not found, trying GTK 1.2"
8177 _gtk1=yes
8181 if test "$_gtk1" = yes ; then
8182 # Check for old GTK (1.2.x)
8183 echocheck "GTK version"
8184 if test -z "$_gtkconfig" ; then
8185 if ( gtk-config --version ) >/dev/null 2>&1 ; then
8186 _gtkconfig="gtk-config"
8187 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
8188 _gtkconfig="gtk12-config"
8189 else
8190 die "The GUI requires GTK devel packages (which were not found)."
8193 _gtk=$($_gtkconfig --version 2>&1)
8194 extra_cflags="$extra_cflags $($_gtkconfig --cflags 2>&1)"
8195 libs_mplayer="$libs_mplayer $($_gtkconfig --libs 2>&1)"
8196 echores "$_gtk (using $_gtkconfig)"
8198 # Check for GLIB
8199 echocheck "glib version"
8200 if test -z "$_glibconfig" ; then
8201 if ( glib-config --version ) >/dev/null 2>&1 ; then
8202 _glibconfig="glib-config"
8203 elif ( glib12-config --version ) >/dev/null 2>&1 ; then
8204 _glibconfig="glib12-config"
8205 else
8206 die "The GUI requires GLIB devel packages (which were not found)"
8209 _glib=$($_glibconfig --version 2>&1)
8210 libs_mplayer="$libs_mplayer $($_glibconfig --libs 2>&1)"
8211 echores "$_glib (using $_glibconfig)"
8213 def_gui='#define CONFIG_GUI 1'
8214 def_gtk2='#undef CONFIG_GTK2'
8217 else #if ! win32
8218 _gui_win32=yes
8219 libs_mplayer="$libs_mplayer -lcomdlg32 -lcomctl32 -lshell32 -lkernel32"
8220 def_gui='#define CONFIG_GUI 1'
8221 def_gtk2='#undef CONFIG_GTK2'
8222 fi #if ! win32
8224 else #if test "$_gui"
8225 def_gui='#undef CONFIG_GUI'
8226 def_gtk2='#undef CONFIG_GTK2'
8227 fi #if test "$_gui"
8228 # --------------- GUI specific tests end -------------------
8231 if test "$_charset" != "noconv" ; then
8232 def_charset="#define MSG_CHARSET \"$_charset\""
8233 else
8234 def_charset="#undef MSG_CHARSET"
8235 _charset="UTF-8"
8238 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
8239 echocheck "iconv program"
8240 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
8241 if test "$?" -ne 0 ; then
8242 echores "no"
8243 echo "No working iconv program found, use "
8244 echo "--charset=UTF-8 to continue anyway."
8245 echo "If you also have problems with iconv library functions use --charset=noconv."
8246 echo "Messages in the GTK-2 interface will be broken then."
8247 exit 1
8248 else
8249 echores "yes"
8253 #############################################################################
8255 echocheck "automatic gdb attach"
8256 if test "$_crash_debug" = yes ; then
8257 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
8258 else
8259 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
8260 _crash_debug=no
8262 echores "$_crash_debug"
8264 echocheck "compiler support for noexecstack"
8265 cat > $TMPC <<EOF
8266 int main(void) { return 0; }
8268 if cc_check -Wl,-z,noexecstack ; then
8269 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
8270 echores "yes"
8271 else
8272 echores "no"
8275 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
8276 if cc_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
8277 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
8278 echores "yes"
8279 else
8280 echores "no"
8284 # Dynamic linking flags
8285 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
8286 _ld_dl_dynamic=''
8287 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
8288 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
8289 _ld_dl_dynamic='-rdynamic'
8292 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
8293 bsdos && extra_ldflags="$extra_ldflags -ldvd"
8294 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
8296 def_debug='#undef MP_DEBUG'
8297 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
8300 echocheck "joystick"
8301 def_joystick='#undef CONFIG_JOYSTICK'
8302 if test "$_joystick" = yes ; then
8303 if linux ; then
8304 # TODO add some check
8305 def_joystick='#define CONFIG_JOYSTICK 1'
8306 else
8307 _joystick="no"
8308 _res_comment="unsupported under $system_name"
8311 echores "$_joystick"
8313 echocheck "lirc"
8314 if test "$_lirc" = auto ; then
8315 _lirc=no
8316 cat > $TMPC <<EOF
8317 #include <lirc/lirc_client.h>
8318 int main(void) { return 0; }
8320 cc_check -llirc_client && _lirc=yes
8322 if test "$_lirc" = yes ; then
8323 def_lirc='#define CONFIG_LIRC 1'
8324 libs_mplayer="$libs_mplayer -llirc_client"
8325 else
8326 def_lirc='#undef CONFIG_LIRC'
8328 echores "$_lirc"
8330 echocheck "lircc"
8331 if test "$_lircc" = auto ; then
8332 _lircc=no
8333 cat > $TMPC <<EOF
8334 #include <lirc/lircc.h>
8335 int main(void) { return 0; }
8337 cc_check -llircc && _lircc=yes
8339 if test "$_lircc" = yes ; then
8340 def_lircc='#define CONFIG_LIRCC 1'
8341 libs_mplayer="$libs_mplayer -llircc"
8342 else
8343 def_lircc='#undef CONFIG_LIRCC'
8345 echores "$_lircc"
8347 if arm; then
8348 # Detect maemo development platform libraries availability (http://www.maemo.org),
8349 # they are used when run on Nokia 770|8x0
8350 echocheck "maemo (Nokia 770|8x0)"
8351 if test "$_maemo" = auto ; then
8352 _maemo=no
8353 cat > $TMPC << EOF
8354 #include <libosso.h>
8355 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
8357 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
8359 if test "$_maemo" = yes ; then
8360 def_maemo='#define CONFIG_MAEMO 1'
8361 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
8362 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
8363 else
8364 def_maemo='#undef CONFIG_MAEMO'
8366 echores "$_maemo"
8369 #############################################################################
8371 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
8372 # the OMF format needs to come after the 'extern symbol prefix' check, which
8373 # uses nm.
8374 if os2 ; then
8375 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
8378 # linker paths should be the same for mencoder and mplayer
8379 _ld_tmp=""
8380 for I in $libs_mplayer ; do
8381 _tmp=$(echo $I | sed -e 's/^-L.*$//')
8382 if test -z "$_tmp" ; then
8383 extra_ldflags="$extra_ldflags $I"
8384 else
8385 _ld_tmp="$_ld_tmp $I"
8387 done
8388 libs_mplayer=$_ld_tmp
8391 #############################################################################
8392 # 64 bit file offsets?
8393 if test "$_largefiles" = yes || freebsd ; then
8394 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
8395 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
8396 # dvdread support requires this (for off64_t)
8397 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
8401 CXXFLAGS=" $CFLAGS -D__STDC_LIMIT_MACROS"
8403 # This must be the last test to be performed. Any other tests following it
8404 # could fail due to linker errors. libdvdnavmini is intentionally not linked
8405 # against libdvdread (to permit MPlayer to use its own copy of the library).
8406 # So any compilation using the flags added here but not linking against
8407 # libdvdread can fail.
8408 echocheck "DVD support (libdvdnav)"
8409 dvdnav_internal=no
8410 if test "$_dvdnav" = auto ; then
8411 if test "$_dvdread_internal" = yes ; then
8412 _dvdnav=yes
8413 dvdnav_internal=yes
8414 _res_comment="internal"
8415 else
8416 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
8419 if test "$_dvdnav" = auto ; then
8420 cat > $TMPC <<EOF
8421 #include <inttypes.h>
8422 #include <dvdnav/dvdnav.h>
8423 int main(void) { dvdnav_t *dvd=0; return 0; }
8425 _dvdnav=no
8426 _dvdnavdir=$($_dvdnavconfig --cflags)
8427 _dvdnavlibs=$($_dvdnavconfig --libs)
8428 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
8430 if test "$_dvdnav" = yes ; then
8431 _largefiles=yes
8432 def_dvdnav='#define CONFIG_DVDNAV 1'
8433 if test "$dvdnav_internal" = yes ; then
8434 cflags_libdvdnav="-Ilibdvdnav"
8435 _inputmodules="dvdnav(internal) $_inputmodules"
8436 else
8437 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
8438 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
8439 _inputmodules="dvdnav $_inputmodules"
8441 else
8442 def_dvdnav='#undef CONFIG_DVDNAV'
8443 _noinputmodules="dvdnav $_noinputmodules"
8445 echores "$_dvdnav"
8447 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
8448 # Read dvdnav comment above.
8450 #############################################################################
8451 echo "Creating config.mak"
8452 cat > config.mak << EOF
8453 # -------- Generated by configure -----------
8455 # Ensure that locale settings do not interfere with shell commands.
8456 export LC_ALL = C
8458 CONFIGURATION = $_configuration
8460 CHARSET = $_charset
8461 DOC_LANGS = $language_doc
8462 DOC_LANG_ALL = $doc_lang_all
8463 MAN_LANGS = $language_man
8464 MAN_LANG_ALL = $man_lang_all
8466 prefix = \$(DESTDIR)$_prefix
8467 BINDIR = \$(DESTDIR)$_bindir
8468 DATADIR = \$(DESTDIR)$_datadir
8469 LIBDIR = \$(DESTDIR)$_libdir
8470 MANDIR = \$(DESTDIR)$_mandir
8471 CONFDIR = \$(DESTDIR)$_confdir
8473 AR = $_ar
8474 AS = $_cc
8475 CC = $_cc
8476 CXX = $_cc
8477 HOST_CC = $_host_cc
8478 YASM = $_yasm
8479 INSTALL = $_install
8480 INSTALLSTRIP = $_install_strip
8481 RANLIB = $_ranlib
8482 WINDRES = $_windres
8484 CFLAGS = $CFLAGS $extra_cflags
8485 ASFLAGS = $CFLAGS $extra_cflags
8486 OPTFLAGS = $CFLAGS $extra_cflags
8487 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
8488 CFLAGS_DHAHELPER = $cflags_dhahelper
8489 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
8490 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
8491 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
8492 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
8493 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
8494 CFLAGS_STACKREALIGN = $cflags_stackrealign
8495 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
8496 CFLAGS_TREMOR_LOW = $cflags_tremor_low
8497 YASMFLAGS = $YASMFLAGS
8499 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
8500 EXTRALIBS_MPLAYER = $libs_mplayer
8501 EXTRALIBS_MENCODER = $libs_mencoder
8503 DEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.h,\$^) | sed "s,[0-9a-z._-]*: \(\$(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\\2&,"
8505 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 &,"
8506 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 &,"
8508 GETCH = $_getch
8509 HELP_FILE = $_mp_help
8510 TIMER = $_timer
8512 EXESUF = $_exesuf
8513 EXESUFS_ALL = .exe
8515 $_target_arch
8516 $_target_subarch
8517 $(echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/')
8519 MENCODER = $_mencoder
8520 MPLAYER = $_mplayer
8522 NEED_GETTIMEOFDAY = $_need_gettimeofday
8523 NEED_GLOB = $_need_glob
8524 NEED_MMAP = $_need_mmap
8525 NEED_SETENV = $_need_setenv
8526 NEED_SHMEM = $_need_shmem
8527 NEED_STRSEP = $_need_strsep
8528 NEED_SWAB = $_need_swab
8529 NEED_VSSCANF = $_need_vsscanf
8531 # features
8532 3DFX = $_3dfx
8533 AA = $_aa
8534 ALSA1X = $_alsa1x
8535 ALSA9 = $_alsa9
8536 ALSA5 = $_alsa5
8537 APPLE_IR = $_apple_ir
8538 APPLE_REMOTE = $_apple_remote
8539 ARTS = $_arts
8540 AUDIO_INPUT = $_audio_input
8541 BITMAP_FONT = $_bitmap_font
8542 BL = $_bl
8543 CACA = $_caca
8544 CDDA = $_cdda
8545 CDDB = $_cddb
8546 COREAUDIO = $_coreaudio
8547 COREVIDEO = $_corevideo
8548 DART = $_dart
8549 DFBMGA = $_dfbmga
8550 DGA = $_dga
8551 DIRECT3D = $_direct3d
8552 DIRECTFB = $_directfb
8553 DIRECTX = $_directx
8554 DVBIN = $_dvbin
8555 DVDNAV = $_dvdnav
8556 DVDNAV_INTERNAL = $dvdnav_internal
8557 DVDREAD = $_dvdread
8558 DVDREAD_INTERNAL = $_dvdread_internal
8559 DXR2 = $_dxr2
8560 DXR3 = $_dxr3
8561 ESD = $_esd
8562 FAAC=$_faac
8563 FAAD = $_faad
8564 FAAD_INTERNAL = $_faad_internal
8565 FASTMEMCPY = $_fastmemcpy
8566 $mak_hardcoded_tables
8567 $mak_libavcodec_mpegaudio_hp
8568 FBDEV = $_fbdev
8569 FREETYPE = $_freetype
8570 FTP = $_ftp
8571 GIF = $_gif
8572 GGI = $_ggi
8573 GL = $_gl
8574 GL_WIN32 = $_gl_win32
8575 GL_X11 = $_gl_x11
8576 MATRIXVIEW = $matrixview
8577 GUI = $_gui
8578 GUI_GTK = $_gui_gtk
8579 GUI_WIN32 = $_gui_win32
8580 HAVE_POSIX_SELECT = $_posix_select
8581 HAVE_SYS_MMAN_H = $_mman
8582 IVTV = $_ivtv
8583 JACK = $_jack
8584 JOYSTICK = $_joystick
8585 JPEG = $_jpeg
8586 KAI = $_kai
8587 KVA = $_kva
8588 LADSPA = $_ladspa
8589 LIBA52 = $_liba52
8590 LIBA52_INTERNAL = $_liba52_internal
8591 LIBASS = $_ass
8592 LIBASS_INTERNAL = $ass_internal
8593 LIBBS2B = $_libbs2b
8594 LIBDCA = $_libdca
8595 LIBDV = $_libdv
8596 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
8597 LIBLZO = $_liblzo
8598 LIBMAD = $_mad
8599 LIBMENU = $_menu
8600 LIBMENU_DVBIN = $_menu_dvbin
8601 LIBMPEG2 = $_libmpeg2
8602 LIBNEMESI = $_nemesi
8603 LIBNUT = $_libnut
8604 LIBSMBCLIENT = $_smb
8605 LIBTHEORA = $_theora
8606 LIRC = $_lirc
8607 LIVE555 = $_live
8608 MACOSX_BUNDLE = $_macosx_bundle
8609 MACOSX_FINDER = $_macosx_finder
8610 MD5SUM = $_md5sum
8611 MGA = $_mga
8612 MNG = $_mng
8613 MP3LAME = $_mp3lame
8614 MP3LIB = $_mp3lib
8615 MUSEPACK = $_musepack
8616 NAS = $_nas
8617 NATIVE_RTSP = $_native_rtsp
8618 NETWORK = $_network
8619 OPENAL = $_openal
8620 OSS = $_ossaudio
8621 PE_EXECUTABLE = $_pe_executable
8622 PNG = $_png
8623 PNM = $_pnm
8624 PRIORITY = $_priority
8625 PULSE = $_pulse
8626 PVR = $_pvr
8627 QTX_CODECS = $_qtx
8628 QTX_CODECS_WIN32 = $_qtx_codecs_win32
8629 QTX_EMULATION = $_qtx_emulation
8630 QUARTZ = $_quartz
8631 RADIO=$_radio
8632 RADIO_CAPTURE=$_radio_capture
8633 REAL_CODECS = $_real
8634 S3FB = $_s3fb
8635 SDL = $_sdl
8636 SPEEX = $_speex
8637 STREAM_CACHE = $_stream_cache
8638 SGIAUDIO = $_sgiaudio
8639 SUNAUDIO = $_sunaudio
8640 SVGA = $_svga
8641 TDFXFB = $_tdfxfb
8642 TDFXVID = $_tdfxvid
8643 TGA = $_tga
8644 TOOLAME=$_toolame
8645 TREMOR_INTERNAL = $_tremor_internal
8646 TV = $_tv
8647 TV_BSDBT848 = $_tv_bsdbt848
8648 TV_DSHOW = $_tv_dshow
8649 TV_V4L = $_tv_v4l
8650 TV_V4L1 = $_tv_v4l1
8651 TV_V4L2 = $_tv_v4l2
8652 TWOLAME=$_twolame
8653 UNRAR_EXEC = $_unrar_exec
8654 V4L2 = $_v4l2
8655 VCD = $_vcd
8656 VDPAU = $_vdpau
8657 VESA = $_vesa
8658 VIDIX = $_vidix
8659 VIDIX_PCIDB = $_vidix_pcidb_val
8660 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8661 VIDIX_IVTV=$_vidix_drv_ivtv
8662 VIDIX_MACH64=$_vidix_drv_mach64
8663 VIDIX_MGA=$_vidix_drv_mga
8664 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8665 VIDIX_NVIDIA=$_vidix_drv_nvidia
8666 VIDIX_PM2=$_vidix_drv_pm2
8667 VIDIX_PM3=$_vidix_drv_pm3
8668 VIDIX_RADEON=$_vidix_drv_radeon
8669 VIDIX_RAGE128=$_vidix_drv_rage128
8670 VIDIX_S3=$_vidix_drv_s3
8671 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8672 VIDIX_SIS=$_vidix_drv_sis
8673 VIDIX_UNICHROME=$_vidix_drv_unichrome
8674 VORBIS = $_vorbis
8675 VSTREAM = $_vstream
8676 WII = $_wii
8677 WIN32DLL = $_win32dll
8678 WIN32WAVEOUT = $_win32waveout
8679 WIN32_EMULATION = $_win32_emulation
8680 WINVIDIX = $winvidix
8681 X11 = $_x11
8682 X264 = $_x264
8683 XANIM_CODECS = $_xanim
8684 XMGA = $_xmga
8685 XMMS_PLUGINS = $_xmms
8686 XV = $_xv
8687 XVID4 = $_xvid
8688 XVIDIX = $xvidix
8689 XVMC = $_xvmc
8690 XVR100 = $_xvr100
8691 YUV4MPEG = $_yuv4mpeg
8692 ZR = $_zr
8694 # FFmpeg
8695 LIBAVUTIL = $_libavutil
8696 LIBAVUTIL_A = $_libavutil_a
8697 LIBAVUTIL_SO = $_libavutil_so
8698 LIBAVCODEC = $_libavcodec
8699 LIBAVCODEC_A = $_libavcodec_a
8700 LIBAVCODEC_SO = $_libavcodec_so
8701 LIBAVFORMAT = $_libavformat
8702 LIBAVFORMAT_A = $_libavformat_a
8703 LIBAVFORMAT_SO = $_libavformat_so
8704 LIBPOSTPROC = $_libpostproc
8705 LIBPOSTPROC_A = $_libpostproc_a
8706 LIBPOSTPROC_SO = $_libpostproc_so
8707 LIBSWSCALE = $_libswscale
8708 LIBSWSCALE_A = $_libswscale_a
8709 LIBSWSCALE_SO = $_libswscale_so
8711 HOSTCC=\$(HOST_CC)
8712 HOSTCFLAGS=-D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 -O3
8713 HOSTLIBS=-lm
8714 CC_O=-o \$@
8715 LD=gcc
8716 CONFIG_STATIC=yes
8717 SRC_PATH=..
8718 BUILD_ROOT=..
8719 LIBPREF=lib
8720 LIBSUF=.a
8721 LIBNAME=\$(LIBPREF)\$(NAME)\$(LIBSUF)
8722 FULLNAME=\$(NAME)\$(BUILDSUF)
8724 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8725 CONFIG_AANDCT=yes
8726 CONFIG_DCT=yes
8727 CONFIG_FFT=yes
8728 CONFIG_FFT_MMX=$fft_mmx
8729 CONFIG_GOLOMB=yes
8730 CONFIG_LPC=yes
8731 CONFIG_LSP=yes
8732 CONFIG_MDCT=yes
8733 CONFIG_RDFT=yes
8735 CONFIG_BZLIB=$bzlib
8736 CONFIG_ENCODERS=yes
8737 CONFIG_GPL=yes
8738 CONFIG_LIBDIRAC_DECODER=$_libdirac_lavc
8739 CONFIG_LIBDIRAC_ENCODER=$_libdirac_lavc
8740 CONFIG_LIBFAAC_ENCODER=$_faac_lavc
8741 CONFIG_LIBMP3LAME_ENCODER=$_mp3lame_lavc
8742 CONFIG_LIBOPENCORE_AMRNB_DECODER=$_libopencore_amrnb
8743 CONFIG_LIBOPENCORE_AMRNB_ENCODER=$_libopencore_amrnb
8744 CONFIG_LIBOPENCORE_AMRWB_DECODER=$_libopencore_amrwb
8745 OCNFIG_LIBOPENJPEG_DECODER = $libopenjpeg
8746 OCNFIG_LIBOPENJPEG_ENCODER = $libopenjpeg
8747 CONFIG_LIBSCHROEDINGER_DECODER=$_libschroedinger_lavc
8748 CONFIG_LIBSCHROEDINGER_ENCODER=$_libschroedinger_lavc
8749 CONFIG_LIBVORBIS_ENCODER=$_libvorbis
8750 CONFIG_LIBX264_ENCODER=$_x264_lavc
8751 CONFIG_LIBXVID_ENCODER=$_xvid_lavc
8752 CONFIG_MLIB = $_mlib
8753 CONFIG_MUXERS=$_mencoder
8754 CONFIG_POSTPROC = yes
8755 # Prevent building libavcodec/imgresample.c with conflicting symbols
8756 CONFIG_SWSCALE=yes
8757 CONFIG_VDPAU=$_vdpau
8758 CONFIG_XVMC=$_xvmc
8759 CONFIG_ZLIB=$_zlib
8761 HAVE_PTHREADS = $_pthreads
8762 HAVE_SHM = $_shm
8763 HAVE_W32THREADS = $_w32threads
8764 HAVE_YASM = $_have_yasm
8766 $(echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8767 $(echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8768 $(echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8769 $(echo $_libavdemuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8770 $(echo $_libavmuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8771 $(echo $_libavprotocols | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8772 $(echo $_libavbsfs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8773 $(echo $_libavhwaccels | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8776 #############################################################################
8778 ff_config_enable () {
8779 _nprefix=$3;
8780 test -z "$_nprefix" && _nprefix='CONFIG'
8781 for part in $1; do
8782 if $(echo $2 | grep -q -E "(^| )$part($| )"); then
8783 echo "#define ${_nprefix}_$part 1"
8784 else
8785 echo "#define ${_nprefix}_$part 0"
8787 done
8790 echo "Creating config.h"
8791 cat > $TMPH << EOF
8792 /*----------------------------------------------------------------------------
8793 ** This file has been automatically generated by configure any changes in it
8794 ** will be lost when you run configure again.
8795 ** Instead of modifying definitions here, use the --enable/--disable options
8796 ** of the configure script! See ./configure --help for details.
8797 *---------------------------------------------------------------------------*/
8799 #ifndef MPLAYER_CONFIG_H
8800 #define MPLAYER_CONFIG_H
8802 /* Undefine this if you do not want to select mono audio (left or right)
8803 with a stereo MPEG layer 2/3 audio stream. The command line option
8804 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8805 right-only), with 0 being the default.
8807 #define CONFIG_FAKE_MONO 1
8809 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8810 #define MAX_OUTBURST 65536
8812 /* set up audio OUTBURST. Do not change this! */
8813 #define OUTBURST 512
8815 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8816 #undef FAST_OSD
8817 #undef FAST_OSD_TABLE
8819 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8820 #define MPEG12_POSTPROC 1
8821 #define ATTRIBUTE_ALIGNED_MAX 16
8825 #define CONFIGURATION "$_configuration"
8827 #define MPLAYER_DATADIR "$_datadir"
8828 #define MPLAYER_CONFDIR "$_confdir"
8829 #define MPLAYER_LIBDIR "$_libdir"
8831 /* definitions needed by included libraries */
8832 #define HAVE_INTTYPES_H 1
8833 /* libmpeg2 + FFmpeg */
8834 $def_fast_inttypes
8835 /* libdvdcss */
8836 #define HAVE_ERRNO_H 1
8837 /* libdvdcss + libdvdread */
8838 #define HAVE_LIMITS_H 1
8839 /* libdvdcss + libfaad2 */
8840 #define HAVE_UNISTD_H 1
8841 /* libfaad2 + libdvdread */
8842 #define STDC_HEADERS 1
8843 #define HAVE_MEMCPY 1
8844 /* libfaad2 */
8845 #define HAVE_STRING_H 1
8846 #define HAVE_STRINGS_H 1
8847 #define HAVE_SYS_STAT_H 1
8848 #define HAVE_SYS_TYPES_H 1
8849 /* libdvdnav */
8850 #define READ_CACHE_TRACE 0
8851 /* libdvdread */
8852 #define HAVE_DLFCN_H 1
8853 $def_dvdcss
8856 /* system headers */
8857 $def_alloca_h
8858 $def_alsa_asoundlib_h
8859 $def_altivec_h
8860 $def_malloc_h
8861 $def_mman_h
8862 $def_mman_has_map_failed
8863 $def_soundcard_h
8864 $def_sys_asoundlib_h
8865 $def_sys_soundcard_h
8866 $def_sys_sysinfo_h
8867 $def_termios_h
8868 $def_termios_sys_h
8869 $def_winsock2_h
8872 /* system functions */
8873 $def_gethostbyname2
8874 $def_gettimeofday
8875 $def_glob
8876 $def_langinfo
8877 $def_lrintf
8878 $def_map_memalign
8879 $def_memalign
8880 $def_nanosleep
8881 $def_posix_select
8882 $def_select
8883 $def_setenv
8884 $def_setmode
8885 $def_shm
8886 $def_strsep
8887 $def_swab
8888 $def_sysi86
8889 $def_sysi86_iv
8890 $def_termcap
8891 $def_termios
8892 $def_vsscanf
8895 /* system-specific features */
8896 $def_asmalign_pot
8897 $def_builtin_expect
8898 $def_dl
8899 $def_dos_paths
8900 $def_extern_asm
8901 $def_extern_prefix
8902 $def_iconv
8903 $def_kstat
8904 $def_macosx_bundle
8905 $def_macosx_finder
8906 $def_maemo
8907 $def_named_asm_args
8908 $def_priority
8909 $def_quicktime
8910 $def_restrict_keyword
8911 $def_rtc
8912 $def_unrar_exec
8915 /* configurable options */
8916 $def_charset
8917 $def_crash_debug
8918 $def_debug
8919 $def_dynamic_plugins
8920 $def_fastmemcpy
8921 $def_menu
8922 $def_runtime_cpudetection
8923 $def_sighandler
8924 $def_sortsub
8925 $def_stream_cache
8926 $def_pthread_cache
8929 /* CPU stuff */
8930 #define __CPU__ $iproc
8931 $def_words_endian
8932 $def_bigendian
8933 $(ff_config_enable "$_arch_all" "$_arch" "ARCH")
8934 $(ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE")
8937 /* DVD/VCD/CD */
8938 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8939 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8940 $def_bsdi_dvd
8941 $def_cddb
8942 $def_cdio
8943 $def_cdparanoia
8944 $def_cdrom
8945 $def_dvd
8946 $def_dvd_bsd
8947 $def_dvd_darwin
8948 $def_dvd_linux
8949 $def_dvd_openbsd
8950 $def_dvdio
8951 $def_dvdnav
8952 $def_dvdread
8953 $def_hpux_scsi_h
8954 $def_libcdio
8955 $def_sol_scsi_h
8956 $def_vcd
8959 /* codec libraries */
8960 $def_faac
8961 $def_faad
8962 $def_faad_internal
8963 $def_liba52
8964 $def_liba52_internal
8965 $def_libdca
8966 $def_libdv
8967 $def_liblzo
8968 $def_libmpeg2
8969 $def_mad
8970 $def_mp3lame
8971 $def_mp3lame_preset
8972 $def_mp3lame_preset_medium
8973 $def_mp3lib
8974 $def_musepack
8975 $def_speex
8976 $def_theora
8977 $def_toolame
8978 $def_tremor
8979 $def_twolame
8980 $def_vorbis
8981 $def_x264
8982 $def_xvid
8983 $def_zlib
8985 $def_libnut
8988 /* binary codecs */
8989 $def_qtx
8990 $def_qtx_win32
8991 $def_real
8992 $def_real_path
8993 $def_win32_loader
8994 $def_win32dll
8995 #define WIN32_PATH "$_win32codecsdir"
8996 $def_xanim
8997 $def_xanim_path
8998 $def_xmms
8999 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
9002 /* GUI */
9003 $def_gtk2
9004 $def_gui
9005 $def_xshape
9008 /* Audio output drivers */
9009 $def_alsa
9010 $def_alsa1x
9011 $def_alsa5
9012 $def_alsa9
9013 $def_arts
9014 $def_coreaudio
9015 $def_dart
9016 $def_esd
9017 $def_esd_latency
9018 $def_jack
9019 $def_kai
9020 $def_nas
9021 $def_openal
9022 $def_openal_h
9023 $def_ossaudio
9024 $def_ossaudio_devdsp
9025 $def_ossaudio_devmixer
9026 $def_pulse
9027 $def_sgiaudio
9028 $def_sunaudio
9029 $def_win32waveout
9031 $def_ladspa
9032 $def_libbs2b
9035 /* input */
9036 $def_apple_ir
9037 $def_apple_remote
9038 $def_ioctl_bt848_h_name
9039 $def_ioctl_meteor_h_name
9040 $def_joystick
9041 $def_lirc
9042 $def_lircc
9043 $def_pvr
9044 $def_radio
9045 $def_radio_bsdbt848
9046 $def_radio_capture
9047 $def_radio_v4l
9048 $def_radio_v4l2
9049 $def_tv
9050 $def_tv_bsdbt848
9051 $def_tv_dshow
9052 $def_tv_v4l
9053 $def_tv_v4l1
9054 $def_tv_v4l2
9057 /* font stuff */
9058 $def_ass
9059 $def_ass_internal
9060 $def_bitmap_font
9061 $def_enca
9062 $def_fontconfig
9063 $def_freetype
9064 $def_fribidi
9067 /* networking */
9068 $def_closesocket
9069 $def_ftp
9070 $def_inet6
9071 $def_inet_aton
9072 $def_inet_pton
9073 $def_live
9074 $def_nemesi
9075 $def_network
9076 $def_smb
9077 $def_socklen_t
9078 $def_struct_ipv6_mreq
9079 $def_struct_sockaddr_in6
9080 $def_struct_sockaddr_sa_len
9081 $def_vstream
9082 $def_addrinfo
9083 $def_getaddrinfo
9084 $def_sockaddr_storage
9087 /* libvo options */
9088 $def_3dfx
9089 $def_aa
9090 $def_bl
9091 $def_caca
9092 $def_corevideo
9093 $def_dfbmga
9094 $def_dga
9095 $def_dga1
9096 $def_dga2
9097 $def_direct3d
9098 $def_directfb
9099 $def_directfb_version
9100 $def_directx
9101 $def_dvb
9102 $def_dvbin
9103 $def_dxr2
9104 $def_dxr3
9105 $def_fbdev
9106 $def_ggi
9107 $def_ggiwmh
9108 $def_gif
9109 $def_gif_4
9110 $def_gif_tvt_hack
9111 $def_gl
9112 $def_gl_win32
9113 $def_gl_x11
9114 $def_matrixview
9115 $def_ivtv
9116 $def_jpeg
9117 $def_kva
9118 $def_md5sum
9119 $def_mga
9120 $def_mng
9121 $def_png
9122 $def_pnm
9123 $def_quartz
9124 $def_s3fb
9125 $def_sdl
9126 $def_sdl_sdl_h
9127 $def_sdlbuggy
9128 $def_svga
9129 $def_tdfxfb
9130 $def_tdfxvid
9131 $def_tga
9132 $def_v4l2
9133 $def_vdpau
9134 $def_vesa
9135 $def_vidix
9136 $def_vidix_drv_cyberblade
9137 $def_vidix_drv_ivtv
9138 $def_vidix_drv_mach64
9139 $def_vidix_drv_mga
9140 $def_vidix_drv_mga_crtc2
9141 $def_vidix_drv_nvidia
9142 $def_vidix_drv_pm3
9143 $def_vidix_drv_radeon
9144 $def_vidix_drv_rage128
9145 $def_vidix_drv_s3
9146 $def_vidix_drv_sh_veu
9147 $def_vidix_drv_sis
9148 $def_vidix_drv_unichrome
9149 $def_vidix_pfx
9150 $def_vm
9151 $def_wii
9152 $def_x11
9153 $def_xdpms
9154 $def_xf86keysym
9155 $def_xinerama
9156 $def_xmga
9157 $def_xss
9158 $def_xv
9159 $def_xvmc
9160 $def_xvr100
9161 $def_yuv4mpeg
9162 $def_zr
9165 /* FFmpeg */
9166 $def_libavcodec
9167 $def_libavcodec_a
9168 $def_libavcodec_so
9169 $def_libavformat
9170 $def_libavformat_a
9171 $def_libavformat_so
9172 $def_libavutil
9173 $def_libavutil_a
9174 $def_libavutil_so
9175 $def_libpostproc
9176 $def_libpostproc_a
9177 $def_libpostproc_so
9178 $def_libswscale
9179 $def_libswscale_a
9180 $def_libswscale_so
9182 #define CONFIG_DECODERS 1
9183 #define CONFIG_ENCODERS 1
9184 #define CONFIG_DEMUXERS 1
9185 $def_muxers
9187 $def_arpa_inet_h
9188 $def_bswap
9189 $def_bzlib
9190 $def_dcbzl
9191 $def_exp2
9192 $def_exp2f
9193 $def_fast_64bit
9194 $def_fast_unaligned
9195 $def_hardcoded_tables
9196 $def_libavcodec_mpegaudio_hp
9197 $def_llrint
9198 $def_local_aligned_8
9199 $def_local_aligned_16
9200 $def_log2
9201 $def_log2f
9202 $def_lrint
9203 $def_memalign_hack
9204 $def_mlib
9205 $def_mkstemp
9206 $def_posix_memalign
9207 $def_pthreads
9208 $def_round
9209 $def_roundf
9210 $def_ten_operands
9211 $def_threads
9212 $def_truncf
9213 $def_xform_asm
9214 $def_yasm
9216 #define CONFIG_FASTDIV 0
9217 #define CONFIG_FFSERVER 0
9218 #define CONFIG_GPL 1
9219 #define CONFIG_GRAY 0
9220 #define CONFIG_LIBVORBIS 0
9221 #define CONFIG_POWERPC_PERF 0
9222 #define CONFIG_SMALL 0
9223 #define CONFIG_SWSCALE 1
9224 #define CONFIG_SWSCALE_ALPHA 1
9226 #if defined(HAVE_AF_INET6) && (!defined(_WIN32) || defined(__CYGWIN__))
9227 #define CONFIG_IPV6 1
9228 #else
9229 #define CONFIG_IPV6 0
9230 #endif
9232 #define HAVE_ATTRIBUTE_MAY_ALIAS 1
9233 #define av_alias __attribute__((may_alias))
9234 #define HAVE_ATTRIBUTE_PACKED 1
9235 #define HAVE_GETHRTIME 0
9236 #define HAVE_INLINE_ASM 1
9237 #define HAVE_LDBRX 0
9238 #define HAVE_POLL_H 1
9239 #define HAVE_PPC4XX 0
9240 #define HAVE_SYS_SELECT_H 0
9241 #define HAVE_VFP_ARGS 1
9242 #define HAVE_VIRTUALALLOC 0
9244 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
9245 #define CONFIG_AANDCT 1
9246 #define CONFIG_FFT 1
9247 #define CONFIG_GOLOMB 1
9248 #define CONFIG_LPC 1
9249 #define CONFIG_MDCT 1
9250 #define CONFIG_RDFT 1
9252 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
9253 $def_ebx_available
9254 #ifndef MP_DEBUG
9255 #define HAVE_EBP_AVAILABLE 1
9256 #else
9257 #define HAVE_EBP_AVAILABLE 0
9258 #endif
9260 #define FFMPEG_CONFIGURATION "--enable-gpl --enable-postproc"
9261 #define FFMPEG_LICENSE "GPL version 2 or later"
9263 /* External libraries used through libavcodec. */
9264 $def_faac_lavc
9265 $def_libdirac_lavc
9266 $def_libopencore_amrnb
9267 $def_libopencore_amrwb
9268 $def_libopenjpeg
9269 $def_libschroedinger_lavc
9270 $def_mp3lame_lavc
9271 $def_x264_lavc
9272 $def_xvid_lavc
9274 $(ff_config_enable "$_libavdecoders_all" "$_libavdecoders")
9275 $(ff_config_enable "$_libavencoders_all" "$_libavencoders")
9276 $(ff_config_enable "$_libavparsers_all" "$_libavparsers")
9277 $(ff_config_enable "$_libavdemuxers_all" "$_libavdemuxers")
9278 $(ff_config_enable "$_libavmuxers_all" "$_libavmuxers")
9279 $(ff_config_enable "$_libavprotocols_all" "$_libavprotocols")
9280 $(ff_config_enable "$_libavbsfs_all" "$_libavbsfs")
9281 $(ff_config_enable "$_libavhwaccels_all" "$_libavhwaccels")
9283 #endif /* MPLAYER_CONFIG_H */
9286 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
9287 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
9289 ############################################################################
9291 # Create avconfig.h for FFmpeg.
9292 cat > "$TMPH" << EOF
9293 /* Generated by mpconfigure */
9294 #ifndef AVUTIL_AVCONFIG_H
9295 #define AVUTIL_AVCONFIG_H
9296 $def_av_bigendian
9297 #endif /* AVUTIL_AVCONFIG_H */
9300 # Do not overwrite an unchanged avconfig.h to avoid superfluous rebuilds.
9301 cmp -s "$TMPH" libavutil/avconfig.h || mv -f "$TMPH" libavutil/avconfig.h
9303 #############################################################################
9305 cat << EOF
9307 Config files successfully generated by ./configure $_configuration !
9309 Install prefix: $_prefix
9310 Data directory: $_datadir
9311 Config direct.: $_confdir
9313 Byte order: $_byte_order
9314 Optimizing for: $_optimizing
9316 Languages:
9317 Messages/GUI: $language_msg
9318 Manual pages: $language_man
9319 Documentation: $language_doc
9321 Enabled optional drivers:
9322 Input: $_inputmodules
9323 Codecs: $_codecmodules
9324 Audio output: $_aomodules
9325 Video output: $_vomodules
9327 Disabled optional drivers:
9328 Input: $_noinputmodules
9329 Codecs: $_nocodecmodules
9330 Audio output: $_noaomodules
9331 Video output: $_novomodules
9333 'config.h' and 'config.mak' contain your configuration options.
9334 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
9335 compile *** DO NOT REPORT BUGS if you tweak these files ***
9337 'make' will now compile MPlayer and 'make install' will install it.
9338 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
9343 if test "$_mtrr" = yes ; then
9344 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
9345 echo
9348 if ! x86_32; then
9349 cat <<EOF
9350 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
9351 operating system ($system_name). You may encounter a few files that cannot
9352 be played due to missing open source video/audio codec support.
9358 cat <<EOF
9359 Check $TMPLOG if you wonder why an autodetection failed (make sure
9360 development headers/packages are installed).
9362 NOTE: The --enable-* parameters unconditionally force options on, completely
9363 skipping autodetection. This behavior is unlike what you may be used to from
9364 autoconf-based configure scripts that can decide to override you. This greater
9365 level of control comes at a price. You may have to provide the correct compiler
9366 and linker flags yourself.
9367 If you used one of these options (except --enable-gui and similar ones that
9368 turn on internal features) and experience a compilation or linking failure,
9369 make sure you have passed the necessary compiler/linker flags to configure.
9371 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
9375 if test "$_warn_CFLAGS" = yes; then
9376 cat <<EOF
9378 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
9379 but:
9381 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
9383 It is strongly recommended to let MPlayer choose the correct CFLAGS!
9384 To do so, execute 'CFLAGS= ./configure <options>'
9389 # Last move:
9390 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"