Fix compilation after FFmpeg r22565.
[mplayer/glamo.git] / configure
blobb7e4c391572ddb6d35fd3ab481e1677dab306110
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]
222 Optional features:
223 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
224 --disable-mplayer disable MPlayer compilation [enable]
225 --enable-gui enable GMPlayer compilation (GTK+ GUI) [disable]
226 --enable-gtk1 force using GTK 1.2 for the GUI [disable]
227 --disable-largefiles disable support for files > 2GB [enable]
228 --enable-linux-devfs set default devices to devfs [disable]
229 --enable-termcap use termcap database for key codes [autodetect]
230 --enable-termios use termios database for key codes [autodetect]
231 --disable-iconv disable iconv for encoding conversion [autodetect]
232 --disable-langinfo do not use langinfo [autodetect]
233 --enable-lirc enable LIRC (remote control) support [autodetect]
234 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
235 --enable-joystick enable joystick support [disable]
236 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
237 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
238 --disable-vm disable X video mode extensions [autodetect]
239 --disable-xf86keysym disable support for multimedia keys [autodetect]
240 --enable-radio enable radio interface [disable]
241 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
242 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
243 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
244 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
245 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
246 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
247 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
248 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
249 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
250 --disable-network disable networking [enable]
251 --enable-winsock2_h enable winsock2_h [autodetect]
252 --enable-smb enable Samba (SMB) input [autodetect]
253 --enable-live enable LIVE555 Streaming Media [autodetect]
254 --enable-nemesi enable Nemesi Streaming Media [autodetect]
255 --disable-vcd disable VCD support [autodetect]
256 --disable-dvdnav disable libdvdnav [autodetect]
257 --disable-dvdread disable libdvdread [autodetect]
258 --disable-dvdread-internal disable internal libdvdread [autodetect]
259 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
260 --disable-cdparanoia disable cdparanoia [autodetect]
261 --disable-cddb disable cddb [autodetect]
262 --disable-bitmap-font disable bitmap font support [enable]
263 --disable-freetype disable FreeType 2 font rendering [autodetect]
264 --disable-fontconfig disable fontconfig font lookup [autodetect]
265 --disable-unrarexec disable using of UnRAR executable [enabled]
266 --enable-menu enable OSD menu (not DVD menu) [disabled]
267 --disable-sortsub disable subtitle sorting [enabled]
268 --enable-fribidi enable the FriBiDi libs [autodetect]
269 --disable-enca disable ENCA charset oracle library [autodetect]
270 --disable-maemo disable maemo specific features [autodetect]
271 --enable-macosx-finder enable Mac OS X Finder invocation parameter
272 parsing [disabled]
273 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
274 --disable-inet6 disable IPv6 support [autodetect]
275 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
276 --disable-ftp disable FTP support [enabled]
277 --disable-vstream disable TiVo vstream client support [autodetect]
278 --disable-pthreads disable Posix threads support [autodetect]
279 --disable-w32threads disable Win32 threads support [autodetect]
280 --disable-ass-internal disable internal SSA/ASS subtitle support [autodetect]
281 --disable-ass disable SSA/ASS subtitle support [autodetect]
282 --enable-rpath enable runtime linker path for extra libs [disabled]
284 Codecs:
285 --enable-gif enable GIF support [autodetect]
286 --enable-png enable PNG input/output support [autodetect]
287 --enable-mng enable MNG input support [autodetect]
288 --enable-jpeg enable JPEG input/output support [autodetect]
289 --enable-libcdio enable libcdio support [autodetect]
290 --enable-liblzo enable liblzo support [autodetect]
291 --disable-win32dll disable Win32 DLL support [autodetect]
292 --disable-qtx disable QuickTime codecs support [enabled]
293 --disable-xanim disable XAnim codecs support [enabled]
294 --disable-real disable RealPlayer codecs support [enabled]
295 --disable-xvid disable Xvid [autodetect]
296 --disable-xvid-lavc disable Xvid in libavcodec [autodetect]
297 --disable-x264 disable x264 [autodetect]
298 --disable-x264-lavc disable x264 in libavcodec [autodetect]
299 --disable-libdirac-lavc disable Dirac in libavcodec [autodetect]
300 --disable-libschroedinger-lavc disable Dirac in libavcodec (Schroedinger
301 decoder) [autodetect]
302 --disable-libnut disable libnut [autodetect]
303 --disable-libavutil_a disable static libavutil [autodetect]
304 --disable-libavcodec_a disable static libavcodec [autodetect]
305 --disable-libavformat_a disable static libavformat [autodetect]
306 --disable-libpostproc_a disable static libpostproc [autodetect]
307 --disable-libswscale_a disable static libswscale [autodetect]
308 --disable-libavutil_so disable shared libavutil [autodetect]
309 --disable-libavcodec_so disable shared libavcodec [autodetect]
310 --disable-libavformat_so disable shared libavformat [autodetect]
311 --disable-libpostproc_so disable shared libpostproc [autodetect]
312 --disable-libswscale_so disable shared libswscale [autodetect]
313 --disable-libavcodec_mpegaudio_hp disable high precision audio decoding
314 in libavcodec [enabled]
315 --disable-tremor-internal disable internal Tremor [enabled]
316 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
317 --enable-tremor enable external Tremor [autodetect]
318 --disable-libvorbis disable libvorbis support [autodetect]
319 --disable-speex disable Speex support [autodetect]
320 --enable-theora enable OggTheora libraries [autodetect]
321 --enable-faad enable external FAAD2 (AAC) [autodetect]
322 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
323 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
324 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
325 --disable-faac-lavc disable support for FAAC in libavcodec [autodetect]
326 --disable-ladspa disable LADSPA plugin support [autodetect]
327 --disable-libbs2b disable libbs2b audio filter support [autodetect]
328 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
329 --disable-mad disable libmad (MPEG audio) support [autodetect]
330 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
331 --disable-mp3lame-lavc disable LAME in libavcodec [autodetect]
332 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
333 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
334 --enable-xmms enable XMMS input plugin support [disabled]
335 --enable-libdca enable libdca support [autodetect]
336 --disable-mp3lib disable builtin mp3lib [autodetect]
337 --disable-liba52 disable liba52 [autodetect]
338 --enable-liba52-internal enable builtin liba52 [disabled]
339 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
340 --disable-musepack disable musepack support [autodetect]
341 --disable-libopencore_amrnb disable libopencore_amr narrowband [autodetect]
342 --disable-libopencore_amrwb disable libopencore_amr wideband [autodetect]
343 --disable-libopenjpeg disable OpenJPEG (JPEG2000) input/output support [autodetect]
344 --disable-decoder=DECODER disable specified FFmpeg decoder
345 --enable-decoder=DECODER enable specified FFmpeg decoder
346 --disable-encoder=ENCODER disable specified FFmpeg encoder
347 --enable-encoder=ENCODER enable specified FFmpeg encoder
348 --disable-parser=PARSER disable specified FFmpeg parser
349 --enable-parser=PARSER enable specified FFmpeg parser
350 --disable-protocol=PROTO disable specified FFmpeg protocol
351 --enable-protocol=PROTO enable specified FFmpeg protocol
352 --disable-demuxer=DEMUXER disable specified FFmpeg demuxer
353 --enable-demuxer=DEMUXER enable specified FFmpeg demuxer
354 --disable-muxer=MUXER disable specified FFmpeg muxer
355 --enable-muxer=MUXER enable specified FFmpeg muxer
357 Video output:
358 --disable-vidix disable VIDIX [for x86 *nix]
359 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
360 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
361 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
362 --disable-vidix-pcidb disable VIDIX PCI device name database
363 --enable-dhahelper enable VIDIX dhahelper support
364 --enable-svgalib_helper enable VIDIX svgalib_helper support
365 --enable-gl enable OpenGL video output [autodetect]
366 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
367 --enable-dga2 enable DGA 2 support [autodetect]
368 --enable-dga1 enable DGA 1 support [autodetect]
369 --enable-vesa enable VESA video output [autodetect]
370 --enable-svga enable SVGAlib video output [autodetect]
371 --enable-sdl enable SDL video output [autodetect]
372 --enable-kva enable KVA video output [autodetect]
373 --enable-aa enable AAlib video output [autodetect]
374 --enable-caca enable CACA video output [autodetect]
375 --enable-ggi enable GGI video output [autodetect]
376 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
377 --enable-direct3d enable Direct3D video output [autodetect]
378 --enable-directx enable DirectX video output [autodetect]
379 --enable-dxr2 enable DXR2 video output [autodetect]
380 --enable-dxr3 enable DXR3/H+ video output [autodetect]
381 --enable-ivtv enable IVTV TV-Out video output [autodetect]
382 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
383 --enable-dvb enable DVB video output [autodetect]
384 --enable-mga enable mga_vid video output [autodetect]
385 --enable-xmga enable mga_vid X11 video output [autodetect]
386 --enable-xv enable Xv video output [autodetect]
387 --enable-xvmc enable XvMC acceleration [disable]
388 --enable-vdpau enable VDPAU acceleration [autodetect]
389 --enable-vm enable XF86VidMode support [autodetect]
390 --enable-xinerama enable Xinerama support [autodetect]
391 --enable-x11 enable X11 video output [autodetect]
392 --enable-xshape enable XShape support [autodetect]
393 --disable-xss disable screensaver support via xss [autodetect]
394 --enable-fbdev enable FBDev video output [autodetect]
395 --enable-mlib enable mediaLib video output (Solaris) [disable]
396 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
397 --enable-tdfxfb enable tdfxfb video output [disable]
398 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
399 --enable-wii enable Nintendo Wii/GameCube video output [disable]
400 --enable-directfb enable DirectFB video output [autodetect]
401 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
402 --enable-bl enable Blinkenlights video output [disable]
403 --enable-tdfxvid enable tdfx_vid video output [disable]
404 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
405 --disable-tga disable Targa video output [enable]
406 --disable-pnm disable PNM video output [enable]
407 --disable-md5sum disable md5sum video output [enable]
408 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
409 --disable-corevideo disable CoreVideo video output [autodetect]
410 --disable-quartz disable Quartz video output [autodetect]
412 Audio output:
413 --disable-alsa disable ALSA audio output [autodetect]
414 --disable-ossaudio disable OSS audio output [autodetect]
415 --disable-arts disable aRts audio output [autodetect]
416 --disable-esd disable esd audio output [autodetect]
417 --disable-pulse disable Pulseaudio audio output [autodetect]
418 --disable-jack disable JACK audio output [autodetect]
419 --disable-openal disable OpenAL audio output [autodetect]
420 --disable-nas disable NAS audio output [autodetect]
421 --disable-sgiaudio disable SGI audio output [autodetect]
422 --disable-sunaudio disable Sun audio output [autodetect]
423 --disable-kai disable KAI audio output [autodetect]
424 --disable-dart disable DART audio output [autodetect]
425 --disable-win32waveout disable Windows waveout audio output [autodetect]
426 --disable-coreaudio disable CoreAudio audio output [autodetect]
427 --disable-select disable using select() on the audio device [enable]
429 Language options:
430 --charset=charset convert the console messages to this character set
431 --language-doc=lang language to use for the documentation [en]
432 --language-man=lang language to use for the man pages [en]
433 --language-msg=lang language to use for the messages and the GUI [en]
434 --language=lang default language to use [en]
435 Specific options override --language. You can pass a list of languages separated
436 by whitespace or commas instead of a single language. Nonexisting translations
437 will be dropped from each list. All documentation and man page translations
438 available in the list will be installed, for the messages the first available
439 translation will be used. The value "all" will activate all translations. The
440 LINGUAS environment variable is honored. In all cases the fallback is English.
441 Available values are: all $msg_lang_all
443 Miscellaneous options:
444 --enable-runtime-cpudetection enable runtime CPU detection [disable]
445 --enable-cross-compile enable cross-compilation [autodetect]
446 --cc=COMPILER C compiler to build MPlayer [gcc]
447 --host-cc=COMPILER C compiler for tools needed while building [gcc]
448 --as=ASSEMBLER assembler to build MPlayer [as]
449 --nm=NM nm tool to build MPlayer [nm]
450 --yasm=YASM Yasm assembler to build MPlayer [yasm]
451 --ar=AR librarian to build MPlayer [ar]
452 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
453 --windres=WINDRES windres to build MPlayer [windres]
454 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
455 --enable-static build a statically linked binary
456 --with-install=PATH path to a custom install program
458 Advanced options:
459 --enable-mmx enable MMX [autodetect]
460 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
461 --enable-3dnow enable 3DNow! [autodetect]
462 --enable-3dnowext enable extended 3DNow! [autodetect]
463 --enable-sse enable SSE [autodetect]
464 --enable-sse2 enable SSE2 [autodetect]
465 --enable-ssse3 enable SSSE3 [autodetect]
466 --enable-shm enable shm [autodetect]
467 --enable-altivec enable AltiVec (PowerPC) [autodetect]
468 --enable-armv5te enable DSP extensions (ARM) [autodetect]
469 --enable-armv6 enable ARMv6 (ARM) [autodetect]
470 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
471 --enable-armvfp enable ARM VFP (ARM) [autodetect]
472 --enable-neon enable NEON (ARM) [autodetect]
473 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
474 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
475 --enable-hardcoded-tables put tables in binary instead of calculating them at startup [disable]
476 --enable-big-endian force byte order to big-endian [autodetect]
477 --enable-debug[=1-3] compile-in debugging information [disable]
478 --enable-profile compile-in profiling information [disable]
479 --disable-sighandler disable sighandler for crashes [enable]
480 --enable-crash-debug enable automatic gdb attach on crash [disable]
481 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
483 Use these options if autodetection fails:
484 --extra-cflags=FLAGS extra CFLAGS
485 --extra-ldflags=FLAGS extra LDFLAGS
486 --extra-libs=FLAGS extra linker flags
487 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
488 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
489 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
491 --with-freetype-config=PATH path to freetype-config
492 --with-fribidi-config=PATH path to fribidi-config
493 --with-glib-config=PATH path to glib*-config
494 --with-gtk-config=PATH path to gtk*-config
495 --with-sdl-config=PATH path to sdl*-config
496 --with-dvdnav-config=PATH path to dvdnav-config
497 --with-dvdread-config=PATH path to dvdread-config
499 This configure script is NOT autoconf-based, even though its output is similar.
500 It will try to autodetect all configuration options. If you --enable an option
501 it will be forcefully turned on, skipping autodetection. This can break
502 compilation, so you need to know what you are doing.
504 exit 0
505 } #show_help()
507 # GOTCHA: the variables below defines the default behavior for autodetection
508 # and have - unless stated otherwise - at least 2 states : yes no
509 # If autodetection is available then the third state is: auto
510 _mmx=auto
511 _3dnow=auto
512 _3dnowext=auto
513 _mmxext=auto
514 _sse=auto
515 _sse2=auto
516 _ssse3=auto
517 _cmov=auto
518 _fast_cmov=auto
519 _fast_clz=auto
520 _armv5te=auto
521 _armv6=auto
522 _armv6t2=auto
523 _armvfp=auto
524 neon=auto
525 _iwmmxt=auto
526 _mtrr=auto
527 _altivec=auto
528 _install=install
529 _ranlib=ranlib
530 _windres=windres
531 _cc=cc
532 _ar=ar
533 test "$CC" && _cc="$CC"
534 _as=auto
535 _nm=auto
536 _yasm=yasm
537 _runtime_cpudetection=no
538 _cross_compile=auto
539 _prefix="/usr/local"
540 _libavutil_a=auto
541 _libavutil_so=auto
542 _libavcodec_a=auto
543 _libopencore_amrnb=auto
544 _libopencore_amrwb=auto
545 libopenjpeg=auto
546 _libavdecoders_all=$(sed -n 's/^[^#]*DEC.*(.*, *\(.*\)).*/\1_decoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
547 _libavdecoders=$(echo $_libavdecoders_all | sed -e 's/ LIB[A-Z0-9_]*_DECODER//g' -e s/MPEG4AAC_DECODER//)
548 _libavencoders_all=$(sed -n 's/^[^#]*ENC.*(.*, *\(.*\)).*/\1_encoder/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
549 _libavencoders=$(echo $_libavencoders_all | sed -e 's/ LIB[A-Z0-9_]*_ENCODER//g' -e s/AAC_ENCODER//)
550 _libavparsers_all=$(sed -n 's/^[^#]*PARSER.*(.*, *\(.*\)).*/\1_parser/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
551 _libavparsers=$_libavparsers_all
552 _libavbsfs_all=$(sed -n 's/^[^#]*BSF.*(.*, *\(.*\)).*/\1_bsf/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
553 _libavbsfs=$_libavbsfs_all
554 _libavhwaccels_all=$(sed -n 's/^[^#]*HWACCEL.*(.*, *\(.*\)).*/\1_hwaccel/p' libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]')
555 # Disable all hardware accelerators for now.
556 _libavhwaccels=
557 _libavdemuxers_all=$(sed -n 's/^[^#]*DEMUX.*(.*, *\(.*\)).*/\1_demuxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
558 _libavdemuxers=$(echo $_libavdemuxers_all | sed -e 's/ LIB[A-Z0-9_]*_DEMUXER//g' -e s/REDIR_DEMUXER// -e s/AVISYNTH_DEMUXER//)
559 _libavmuxers_all=$(sed -n 's/^[^#]*_MUX.*(.*, *\(.*\)).*/\1_muxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
560 _libavmuxers=$(echo $_libavmuxers_all | sed -e 's/ LIB[A-Z0-9_]*_MUXER//g' -e s/RTP_MUXER// -e s/RTSP_MUXER//)
561 _libavprotocols_all=$(sed -n 's/^[^#]*PROTOCOL.*(.*, *\(.*\)).*/\1_protocol/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]')
562 _libavprotocols=$_libavprotocols_all
563 _libavcodec_so=auto
564 _libavformat_a=auto
565 _libavformat_so=auto
566 _libpostproc_a=auto
567 _libpostproc_so=auto
568 _libswscale_a=auto
569 _libswscale_so=auto
570 _libavcodec_mpegaudio_hp=yes
571 _mencoder=yes
572 _mplayer=yes
573 _x11=auto
574 _xshape=auto
575 _xss=auto
576 _dga1=auto
577 _dga2=auto
578 _xv=auto
579 _xvmc=no #auto when complete
580 _vdpau=auto
581 _sdl=auto
582 _kva=auto
583 _direct3d=auto
584 _directx=auto
585 _win32waveout=auto
586 _nas=auto
587 _png=auto
588 _mng=auto
589 _jpeg=auto
590 _pnm=yes
591 _md5sum=yes
592 _yuv4mpeg=yes
593 _gif=auto
594 _gl=auto
595 matrixview=yes
596 _ggi=auto
597 _ggiwmh=auto
598 _aa=auto
599 _caca=auto
600 _svga=auto
601 _vesa=auto
602 _fbdev=auto
603 _dvb=auto
604 _dxr2=auto
605 _dxr3=auto
606 _ivtv=auto
607 _v4l2=auto
608 _iconv=auto
609 _langinfo=auto
610 _rtc=auto
611 _ossaudio=auto
612 _arts=auto
613 _esd=auto
614 _pulse=auto
615 _jack=auto
616 _kai=auto
617 _dart=auto
618 _openal=auto
619 _libcdio=auto
620 _liblzo=auto
621 _mad=auto
622 _mp3lame=auto
623 _mp3lame_lavc=auto
624 _toolame=auto
625 _twolame=auto
626 _tremor=auto
627 _tremor_internal=yes
628 _tremor_low=no
629 _libvorbis=auto
630 _speex=auto
631 _theora=auto
632 _mp3lib=auto
633 _liba52=auto
634 _liba52_internal=no
635 _libdca=auto
636 _libmpeg2=auto
637 _faad=auto
638 _faad_internal=auto
639 _faad_fixed=no
640 _faac=auto
641 _faac_lavc=auto
642 _ladspa=auto
643 _libbs2b=auto
644 _xmms=no
645 _vcd=auto
646 _dvdnav=auto
647 _dvdnavconfig=dvdnav-config
648 _dvdreadconfig=dvdread-config
649 _dvdread=auto
650 _dvdread_internal=auto
651 _libdvdcss_internal=auto
652 _xanim=auto
653 _real=auto
654 _live=auto
655 _nemesi=auto
656 _native_rtsp=yes
657 _xinerama=auto
658 _mga=auto
659 _xmga=auto
660 _vm=auto
661 _xf86keysym=auto
662 _mlib=no #broken, thus disabled
663 _sgiaudio=auto
664 _sunaudio=auto
665 _alsa=auto
666 _fastmemcpy=yes
667 hardcoded_tables=no
668 _unrar_exec=auto
669 _win32dll=auto
670 _select=yes
671 _radio=no
672 _radio_capture=no
673 _radio_v4l=auto
674 _radio_v4l2=auto
675 _radio_bsdbt848=auto
676 _tv=yes
677 _tv_v4l1=auto
678 _tv_v4l2=auto
679 _tv_bsdbt848=auto
680 _tv_dshow=auto
681 _pvr=auto
682 _network=yes
683 _winsock2_h=auto
684 _struct_addrinfo=auto
685 _getaddrinfo=auto
686 _struct_sockaddr_storage=auto
687 _smb=auto
688 _vidix=auto
689 _vidix_pcidb=yes
690 _dhahelper=no
691 _svgalib_helper=no
692 _joystick=no
693 _xvid=auto
694 _xvid_lavc=auto
695 _x264=auto
696 _x264_lavc=auto
697 _libdirac_lavc=auto
698 _libschroedinger_lavc=auto
699 _libnut=auto
700 _lirc=auto
701 _lircc=auto
702 _apple_remote=auto
703 _apple_ir=auto
704 _gui=no
705 _gtk1=no
706 _termcap=auto
707 _termios=auto
708 _3dfx=no
709 _s3fb=no
710 _wii=no
711 _tdfxfb=no
712 _tdfxvid=no
713 _xvr100=auto
714 _tga=yes
715 _directfb=auto
716 _zr=auto
717 _bl=no
718 _largefiles=yes
719 #language=en
720 _shm=auto
721 _linux_devfs=no
722 _charset="UTF-8"
723 _dynamic_plugins=no
724 _crash_debug=no
725 _sighandler=yes
726 _libdv=auto
727 _cdparanoia=auto
728 _cddb=auto
729 _big_endian=auto
730 _bitmap_font=yes
731 _freetype=auto
732 _fontconfig=auto
733 _menu=no
734 _qtx=auto
735 _maemo=auto
736 _coreaudio=auto
737 _corevideo=auto
738 _quartz=auto
739 quicktime=auto
740 _macosx_finder=no
741 _macosx_bundle=auto
742 _sortsub=yes
743 _freetypeconfig='freetype-config'
744 _fribidi=auto
745 _fribidiconfig='fribidi-config'
746 _enca=auto
747 _inet6=auto
748 _gethostbyname2=auto
749 _ftp=yes
750 _musepack=auto
751 _vstream=auto
752 _pthreads=auto
753 _w32threads=auto
754 _ass=auto
755 ass_internal=yes
756 _rpath=no
757 _asmalign_pot=auto
758 _stream_cache=yes
759 _priority=no
760 def_dos_paths="#define HAVE_DOS_PATHS 0"
761 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
762 def_priority="#undef CONFIG_PRIORITY"
763 def_pthread_cache="#undef PTHREAD_CACHE"
764 _need_shmem=yes
765 for ac_option do
766 case "$ac_option" in
767 --help|-help|-h)
768 show_help
770 --prefix=*)
771 _prefix=$(echo $ac_option | cut -d '=' -f 2)
773 --bindir=*)
774 _bindir=$(echo $ac_option | cut -d '=' -f 2)
776 --datadir=*)
777 _datadir=$(echo $ac_option | cut -d '=' -f 2)
779 --mandir=*)
780 _mandir=$(echo $ac_option | cut -d '=' -f 2)
782 --confdir=*)
783 _confdir=$(echo $ac_option | cut -d '=' -f 2)
785 --libdir=*)
786 _libdir=$(echo $ac_option | cut -d '=' -f 2)
788 --codecsdir=*)
789 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
792 --with-install=*)
793 _install=$(echo $ac_option | cut -d '=' -f 2 )
795 --with-xvmclib=*)
796 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
799 --with-sdl-config=*)
800 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
802 --with-freetype-config=*)
803 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
805 --with-fribidi-config=*)
806 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
808 --with-gtk-config=*)
809 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
811 --with-glib-config=*)
812 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
814 --with-dvdnav-config=*)
815 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
817 --with-dvdread-config=*)
818 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
821 --extra-cflags=*)
822 extra_cflags=$(echo $ac_option | cut -d '=' -f 2-)
824 --extra-ldflags=*)
825 extra_ldflags=$(echo $ac_option | cut -d '=' -f 2-)
827 --extra-libs=*)
828 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
830 --extra-libs-mplayer=*)
831 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
833 --extra-libs-mencoder=*)
834 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
837 --target=*)
838 _target=$(echo $ac_option | cut -d '=' -f 2)
840 --cc=*)
841 _cc=$(echo $ac_option | cut -d '=' -f 2)
843 --host-cc=*)
844 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
846 --as=*)
847 _as=$(echo $ac_option | cut -d '=' -f 2)
849 --nm=*)
850 _nm=$(echo $ac_option | cut -d '=' -f 2)
852 --yasm=*)
853 _yasm=$(echo $ac_option | cut -d '=' -f 2)
855 --ar=*)
856 _ar=$(echo $ac_option | cut -d '=' -f 2)
858 --ranlib=*)
859 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
861 --windres=*)
862 _windres=$(echo $ac_option | cut -d '=' -f 2)
864 --charset=*)
865 _charset=$(echo $ac_option | cut -d '=' -f 2)
867 --language-doc=*)
868 language_doc=$(echo $ac_option | cut -d '=' -f 2)
870 --language-man=*)
871 language_man=$(echo $ac_option | cut -d '=' -f 2)
873 --language-msg=*)
874 language_msg=$(echo $ac_option | cut -d '=' -f 2)
876 --language=*)
877 language=$(echo $ac_option | cut -d '=' -f 2)
880 --enable-static)
881 _ld_static='-static'
883 --disable-static)
884 _ld_static=''
886 --enable-profile)
887 _profile='-p'
889 --disable-profile)
890 _profile=
892 --enable-debug)
893 _debug='-g'
895 --enable-debug=*)
896 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
898 --disable-debug)
899 _debug=
901 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
902 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
903 --enable-cross-compile) _cross_compile=yes ;;
904 --disable-cross-compile) _cross_compile=no ;;
905 --enable-mencoder) _mencoder=yes ;;
906 --disable-mencoder) _mencoder=no ;;
907 --enable-mplayer) _mplayer=yes ;;
908 --disable-mplayer) _mplayer=no ;;
909 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
910 --disable-dynamic-plugins) _dynamic_plugins=no ;;
911 --enable-x11) _x11=yes ;;
912 --disable-x11) _x11=no ;;
913 --enable-xshape) _xshape=yes ;;
914 --disable-xshape) _xshape=no ;;
915 --enable-xss) _xss=yes ;;
916 --disable-xss) _xss=no ;;
917 --enable-xv) _xv=yes ;;
918 --disable-xv) _xv=no ;;
919 --enable-xvmc) _xvmc=yes ;;
920 --disable-xvmc) _xvmc=no ;;
921 --enable-vdpau) _vdpau=yes ;;
922 --disable-vdpau) _vdpau=no ;;
923 --enable-sdl) _sdl=yes ;;
924 --disable-sdl) _sdl=no ;;
925 --enable-kva) _kva=yes ;;
926 --disable-kva) _kva=no ;;
927 --enable-direct3d) _direct3d=yes ;;
928 --disable-direct3d) _direct3d=no ;;
929 --enable-directx) _directx=yes ;;
930 --disable-directx) _directx=no ;;
931 --enable-win32waveout) _win32waveout=yes ;;
932 --disable-win32waveout) _win32waveout=no ;;
933 --enable-nas) _nas=yes ;;
934 --disable-nas) _nas=no ;;
935 --enable-png) _png=yes ;;
936 --disable-png) _png=no ;;
937 --enable-mng) _mng=yes ;;
938 --disable-mng) _mng=no ;;
939 --enable-jpeg) _jpeg=yes ;;
940 --disable-jpeg) _jpeg=no ;;
941 --enable-libopenjpeg) libopenjpeg=yes ;;
942 --disable-libopenjpeg)libopenjpeg=no ;;
943 --enable-pnm) _pnm=yes ;;
944 --disable-pnm) _pnm=no ;;
945 --enable-md5sum) _md5sum=yes ;;
946 --disable-md5sum) _md5sum=no ;;
947 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
948 --disable-yuv4mpeg) _yuv4mpeg=no ;;
949 --enable-gif) _gif=yes ;;
950 --disable-gif) _gif=no ;;
951 --enable-gl) _gl=yes ;;
952 --disable-gl) _gl=no ;;
953 --enable-matrixview) matrixview=yes ;;
954 --disable-matrixview) matrixview=no ;;
955 --enable-ggi) _ggi=yes ;;
956 --disable-ggi) _ggi=no ;;
957 --enable-ggiwmh) _ggiwmh=yes ;;
958 --disable-ggiwmh) _ggiwmh=no ;;
959 --enable-aa) _aa=yes ;;
960 --disable-aa) _aa=no ;;
961 --enable-caca) _caca=yes ;;
962 --disable-caca) _caca=no ;;
963 --enable-svga) _svga=yes ;;
964 --disable-svga) _svga=no ;;
965 --enable-vesa) _vesa=yes ;;
966 --disable-vesa) _vesa=no ;;
967 --enable-fbdev) _fbdev=yes ;;
968 --disable-fbdev) _fbdev=no ;;
969 --enable-dvb) _dvb=yes ;;
970 --disable-dvb) _dvb=no ;;
971 --enable-dxr2) _dxr2=yes ;;
972 --disable-dxr2) _dxr2=no ;;
973 --enable-dxr3) _dxr3=yes ;;
974 --disable-dxr3) _dxr3=no ;;
975 --enable-ivtv) _ivtv=yes ;;
976 --disable-ivtv) _ivtv=no ;;
977 --enable-v4l2) _v4l2=yes ;;
978 --disable-v4l2) _v4l2=no ;;
979 --enable-iconv) _iconv=yes ;;
980 --disable-iconv) _iconv=no ;;
981 --enable-langinfo) _langinfo=yes ;;
982 --disable-langinfo) _langinfo=no ;;
983 --enable-rtc) _rtc=yes ;;
984 --disable-rtc) _rtc=no ;;
985 --enable-libdv) _libdv=yes ;;
986 --disable-libdv) _libdv=no ;;
987 --enable-ossaudio) _ossaudio=yes ;;
988 --disable-ossaudio) _ossaudio=no ;;
989 --enable-arts) _arts=yes ;;
990 --disable-arts) _arts=no ;;
991 --enable-esd) _esd=yes ;;
992 --disable-esd) _esd=no ;;
993 --enable-pulse) _pulse=yes ;;
994 --disable-pulse) _pulse=no ;;
995 --enable-jack) _jack=yes ;;
996 --disable-jack) _jack=no ;;
997 --enable-openal) _openal=yes ;;
998 --disable-openal) _openal=no ;;
999 --enable-kai) _kai=yes ;;
1000 --disable-kai) _kai=no ;;
1001 --enable-dart) _dart=yes ;;
1002 --disable-dart) _dart=no ;;
1003 --enable-mad) _mad=yes ;;
1004 --disable-mad) _mad=no ;;
1005 --enable-mp3lame) _mp3lame=yes ;;
1006 --disable-mp3lame) _mp3lame=no ;;
1007 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;;
1008 --disable-mp3lame-lavc) _mp3lame_lavc=no ;;
1009 --enable-toolame) _toolame=yes ;;
1010 --disable-toolame) _toolame=no ;;
1011 --enable-twolame) _twolame=yes ;;
1012 --disable-twolame) _twolame=no ;;
1013 --enable-libcdio) _libcdio=yes ;;
1014 --disable-libcdio) _libcdio=no ;;
1015 --enable-liblzo) _liblzo=yes ;;
1016 --disable-liblzo) _liblzo=no ;;
1017 --enable-libvorbis) _libvorbis=yes ;;
1018 --disable-libvorbis) _libvorbis=no ;;
1019 --enable-speex) _speex=yes ;;
1020 --disable-speex) _speex=no ;;
1021 --enable-tremor) _tremor=yes ;;
1022 --disable-tremor) _tremor=no ;;
1023 --enable-tremor-internal) _tremor_internal=yes ;;
1024 --disable-tremor-internal) _tremor_internal=no ;;
1025 --enable-tremor-low) _tremor_low=yes ;;
1026 --disable-tremor-low) _tremor_low=no ;;
1027 --enable-theora) _theora=yes ;;
1028 --disable-theora) _theora=no ;;
1029 --enable-mp3lib) _mp3lib=yes ;;
1030 --disable-mp3lib) _mp3lib=no ;;
1031 --enable-liba52-internal) _liba52_internal=yes ;;
1032 --disable-liba52-internal) _liba52_internal=no ;;
1033 --enable-liba52) _liba52=yes ;;
1034 --disable-liba52) _liba52=no ;;
1035 --enable-libdca) _libdca=yes ;;
1036 --disable-libdca) _libdca=no ;;
1037 --enable-libmpeg2) _libmpeg2=yes ;;
1038 --disable-libmpeg2) _libmpeg2=no ;;
1039 --enable-musepack) _musepack=yes ;;
1040 --disable-musepack) _musepack=no ;;
1041 --enable-faad) _faad=yes ;;
1042 --disable-faad) _faad=no ;;
1043 --enable-faad-internal) _faad_internal=yes ;;
1044 --disable-faad-internal) _faad_internal=no ;;
1045 --enable-faad-fixed) _faad_fixed=yes ;;
1046 --disable-faad-fixed) _faad_fixed=no ;;
1047 --enable-faac) _faac=yes ;;
1048 --disable-faac) _faac=no ;;
1049 --enable-faac-lavc) _faac_lavc=yes ;;
1050 --disable-faac-lavc) _faac_lavc=no ;;
1051 --enable-ladspa) _ladspa=yes ;;
1052 --disable-ladspa) _ladspa=no ;;
1053 --enable-libbs2b) _libbs2b=yes ;;
1054 --disable-libbs2b) _libbs2b=no ;;
1055 --enable-xmms) _xmms=yes ;;
1056 --disable-xmms) _xmms=no ;;
1057 --enable-vcd) _vcd=yes ;;
1058 --disable-vcd) _vcd=no ;;
1059 --enable-dvdread) _dvdread=yes ;;
1060 --disable-dvdread) _dvdread=no ;;
1061 --enable-dvdread-internal) _dvdread_internal=yes ;;
1062 --disable-dvdread-internal) _dvdread_internal=no ;;
1063 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1064 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1065 --enable-dvdnav) _dvdnav=yes ;;
1066 --disable-dvdnav) _dvdnav=no ;;
1067 --enable-xanim) _xanim=yes ;;
1068 --disable-xanim) _xanim=no ;;
1069 --enable-real) _real=yes ;;
1070 --disable-real) _real=no ;;
1071 --enable-live) _live=yes ;;
1072 --disable-live) _live=no ;;
1073 --enable-nemesi) _nemesi=yes ;;
1074 --disable-nemesi) _nemesi=no ;;
1075 --enable-xinerama) _xinerama=yes ;;
1076 --disable-xinerama) _xinerama=no ;;
1077 --enable-mga) _mga=yes ;;
1078 --disable-mga) _mga=no ;;
1079 --enable-xmga) _xmga=yes ;;
1080 --disable-xmga) _xmga=no ;;
1081 --enable-vm) _vm=yes ;;
1082 --disable-vm) _vm=no ;;
1083 --enable-xf86keysym) _xf86keysym=yes ;;
1084 --disable-xf86keysym) _xf86keysym=no ;;
1085 --enable-mlib) _mlib=yes ;;
1086 --disable-mlib) _mlib=no ;;
1087 --enable-sunaudio) _sunaudio=yes ;;
1088 --disable-sunaudio) _sunaudio=no ;;
1089 --enable-sgiaudio) _sgiaudio=yes ;;
1090 --disable-sgiaudio) _sgiaudio=no ;;
1091 --enable-alsa) _alsa=yes ;;
1092 --disable-alsa) _alsa=no ;;
1093 --enable-tv) _tv=yes ;;
1094 --disable-tv) _tv=no ;;
1095 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1096 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1097 --enable-tv-v4l1) _tv_v4l1=yes ;;
1098 --disable-tv-v4l1) _tv_v4l1=no ;;
1099 --enable-tv-v4l2) _tv_v4l2=yes ;;
1100 --disable-tv-v4l2) _tv_v4l2=no ;;
1101 --enable-tv-dshow) _tv_dshow=yes ;;
1102 --disable-tv-dshow) _tv_dshow=no ;;
1103 --enable-radio) _radio=yes ;;
1104 --enable-radio-capture) _radio_capture=yes ;;
1105 --disable-radio-capture) _radio_capture=no ;;
1106 --disable-radio) _radio=no ;;
1107 --enable-radio-v4l) _radio_v4l=yes ;;
1108 --disable-radio-v4l) _radio_v4l=no ;;
1109 --enable-radio-v4l2) _radio_v4l2=yes ;;
1110 --disable-radio-v4l2) _radio_v4l2=no ;;
1111 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1112 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1113 --enable-pvr) _pvr=yes ;;
1114 --disable-pvr) _pvr=no ;;
1115 --enable-fastmemcpy) _fastmemcpy=yes ;;
1116 --disable-fastmemcpy) _fastmemcpy=no ;;
1117 --enable-hardcoded-tables) hardcoded_tables=yes ;;
1118 --disable-hardcoded-tables) hardcoded_tables=no ;;
1119 --enable-network) _network=yes ;;
1120 --disable-network) _network=no ;;
1121 --enable-winsock2_h) _winsock2_h=yes ;;
1122 --disable-winsock2_h) _winsock2_h=no ;;
1123 --enable-smb) _smb=yes ;;
1124 --disable-smb) _smb=no ;;
1125 --enable-vidix) _vidix=yes ;;
1126 --disable-vidix) _vidix=no ;;
1127 --with-vidix-drivers=*)
1128 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1130 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1131 --enable-dhahelper) _dhahelper=yes ;;
1132 --disable-dhahelper) _dhahelper=no ;;
1133 --enable-svgalib_helper) _svgalib_helper=yes ;;
1134 --disable-svgalib_helper) _svgalib_helper=no ;;
1135 --enable-joystick) _joystick=yes ;;
1136 --disable-joystick) _joystick=no ;;
1137 --enable-xvid) _xvid=yes ;;
1138 --disable-xvid) _xvid=no ;;
1139 --enable-xvid-lavc) _xvid_lavc=yes ;;
1140 --disable-xvid-lavc) _xvid_lavc=no ;;
1141 --enable-x264) _x264=yes ;;
1142 --disable-x264) _x264=no ;;
1143 --enable-x264-lavc) _x264_lavc=yes ;;
1144 --disable-x264-lavc) _x264_lavc=no ;;
1145 --enable-libdirac-lavc) _libdirac_lavc=yes ;;
1146 --disable-libdirac-lavc) _libdirac_lavc=no ;;
1147 --enable-libschroedinger-lavc) _libschroedinger_lavc=yes ;;
1148 --disable-libschroedinger-lavc) _libschroedinger_lavc=no ;;
1149 --enable-libnut) _libnut=yes ;;
1150 --disable-libnut) _libnut=no ;;
1151 --enable-libavutil_a) _libavutil_a=yes ;;
1152 --disable-libavutil_a) _libavutil_a=no ;;
1153 --enable-libavutil_so) _libavutil_so=yes ;;
1154 --disable-libavutil_so) _libavutil_so=no ;;
1155 --enable-libavcodec_a) _libavcodec_a=yes ;;
1156 --disable-libavcodec_a) _libavcodec_a=no ;;
1157 --enable-libavcodec_so) _libavcodec_so=yes ;;
1158 --disable-libavcodec_so) _libavcodec_so=no ;;
1159 --enable-libopencore_amrnb) _libopencore_amrnb=yes ;;
1160 --disable-libopencore_amrnb) _libopencore_amrnb=no ;;
1161 --enable-libopencore_amrwb) _libopencore_amrwb=yes ;;
1162 --disable-libopencore_amrwb) _libopencore_amrwb=no ;;
1163 --enable-decoder=*) _libavdecoders="$_libavdecoders $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1164 --disable-decoder=*) _libavdecoders=$(echo $_libavdecoders | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1165 --enable-encoder=*) _libavencoders="$_libavencoders $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1166 --disable-encoder=*) _libavencoders=$(echo $_libavencoders | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1167 --enable-parser=*) _libavparsers="$_libavparsers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1168 --disable-parser=*) _libavparsers=$(echo $_libavparsers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1169 --enable-protocol=*) _libavprotocols="$_libavprotocols $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1170 --disable-protocol=*) _libavprotocols=$(echo $_libavprotocols | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1171 --enable-demuxer=*) _libavdemuxers="$_libavdemuxers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1172 --disable-demuxer=*) _libavdemuxers=$(echo $_libavdemuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1173 --enable-muxer=*) _libavmuxers="$_libavmuxers $(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')" ;;
1174 --disable-muxer=*) _libavmuxers=$(echo $_libavmuxers | sed "s/$(echo $ac_option | cut -d '=' -f 2 | tr '[a-z]' '[A-Z]')//g") ;;
1175 --enable-libavformat_a) _libavformat_a=yes ;;
1176 --disable-libavformat_a) _libavformat_a=no ;;
1177 --enable-libavformat_so) _libavformat_so=yes ;;
1178 --disable-libavformat_so) _libavformat_so=no ;;
1179 --enable-libpostproc_a) _libpostproc_a=yes ;;
1180 --disable-libpostproc_a) _libpostproc_a=no ;;
1181 --enable-libpostproc_so) _libpostproc_so=yes ;;
1182 --disable-libpostproc_so) _libpostproc_so=no ;;
1183 --enable-libswscale_a) _libswscale_a=yes ;;
1184 --disable-libswscale_a) _libswscale_a=no ;;
1185 --enable-libswscale_so) _libswscale_so=yes ;;
1186 --disable-libswscale_so) _libswscale_so=no ;;
1187 --enable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=yes ;;
1188 --disable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=no ;;
1190 --enable-lirc) _lirc=yes ;;
1191 --disable-lirc) _lirc=no ;;
1192 --enable-lircc) _lircc=yes ;;
1193 --disable-lircc) _lircc=no ;;
1194 --enable-apple-remote) _apple_remote=yes ;;
1195 --disable-apple-remote) _apple_remote=no ;;
1196 --enable-apple-ir) _apple_ir=yes ;;
1197 --disable-apple-ir) _apple_ir=no ;;
1198 --enable-gui) _gui=yes ;;
1199 --disable-gui) _gui=no ;;
1200 --enable-gtk1) _gtk1=yes ;;
1201 --disable-gtk1) _gtk1=no ;;
1202 --enable-termcap) _termcap=yes ;;
1203 --disable-termcap) _termcap=no ;;
1204 --enable-termios) _termios=yes ;;
1205 --disable-termios) _termios=no ;;
1206 --enable-3dfx) _3dfx=yes ;;
1207 --disable-3dfx) _3dfx=no ;;
1208 --enable-s3fb) _s3fb=yes ;;
1209 --disable-s3fb) _s3fb=no ;;
1210 --enable-wii) _wii=yes ;;
1211 --disable-wii) _wii=no ;;
1212 --enable-tdfxfb) _tdfxfb=yes ;;
1213 --disable-tdfxfb) _tdfxfb=no ;;
1214 --disable-tdfxvid) _tdfxvid=no ;;
1215 --enable-tdfxvid) _tdfxvid=yes ;;
1216 --disable-xvr100) _xvr100=no ;;
1217 --enable-xvr100) _xvr100=yes ;;
1218 --disable-tga) _tga=no ;;
1219 --enable-tga) _tga=yes ;;
1220 --enable-directfb) _directfb=yes ;;
1221 --disable-directfb) _directfb=no ;;
1222 --enable-zr) _zr=yes ;;
1223 --disable-zr) _zr=no ;;
1224 --enable-bl) _bl=yes ;;
1225 --disable-bl) _bl=no ;;
1226 --enable-mtrr) _mtrr=yes ;;
1227 --disable-mtrr) _mtrr=no ;;
1228 --enable-largefiles) _largefiles=yes ;;
1229 --disable-largefiles) _largefiles=no ;;
1230 --enable-shm) _shm=yes ;;
1231 --disable-shm) _shm=no ;;
1232 --enable-select) _select=yes ;;
1233 --disable-select) _select=no ;;
1234 --enable-linux-devfs) _linux_devfs=yes ;;
1235 --disable-linux-devfs) _linux_devfs=no ;;
1236 --enable-cdparanoia) _cdparanoia=yes ;;
1237 --disable-cdparanoia) _cdparanoia=no ;;
1238 --enable-cddb) _cddb=yes ;;
1239 --disable-cddb) _cddb=no ;;
1240 --enable-big-endian) _big_endian=yes ;;
1241 --disable-big-endian) _big_endian=no ;;
1242 --enable-bitmap-font) _bitmap_font=yes ;;
1243 --disable-bitmap-font) _bitmap_font=no ;;
1244 --enable-freetype) _freetype=yes ;;
1245 --disable-freetype) _freetype=no ;;
1246 --enable-fontconfig) _fontconfig=yes ;;
1247 --disable-fontconfig) _fontconfig=no ;;
1248 --enable-unrarexec) _unrar_exec=yes ;;
1249 --disable-unrarexec) _unrar_exec=no ;;
1250 --enable-ftp) _ftp=yes ;;
1251 --disable-ftp) _ftp=no ;;
1252 --enable-vstream) _vstream=yes ;;
1253 --disable-vstream) _vstream=no ;;
1254 --enable-pthreads) _pthreads=yes ;;
1255 --disable-pthreads) _pthreads=no ;;
1256 --enable-w32threads) _w32threads=yes ;;
1257 --disable-w32threads) _w32threads=no ;;
1258 --enable-ass) _ass=yes ;;
1259 --disable-ass) _ass=no ;;
1260 --enable-ass-internal) ass_internal=yes ;;
1261 --disable-ass-internal) ass_internal=no ;;
1262 --enable-rpath) _rpath=yes ;;
1263 --disable-rpath) _rpath=no ;;
1265 --enable-fribidi) _fribidi=yes ;;
1266 --disable-fribidi) _fribidi=no ;;
1268 --enable-enca) _enca=yes ;;
1269 --disable-enca) _enca=no ;;
1271 --enable-inet6) _inet6=yes ;;
1272 --disable-inet6) _inet6=no ;;
1274 --enable-gethostbyname2) _gethostbyname2=yes ;;
1275 --disable-gethostbyname2) _gethostbyname2=no ;;
1277 --enable-dga1) _dga1=yes ;;
1278 --disable-dga1) _dga1=no ;;
1279 --enable-dga2) _dga2=yes ;;
1280 --disable-dga2) _dga2=no ;;
1282 --enable-menu) _menu=yes ;;
1283 --disable-menu) _menu=no ;;
1285 --enable-qtx) _qtx=yes ;;
1286 --disable-qtx) _qtx=no ;;
1288 --enable-coreaudio) _coreaudio=yes ;;
1289 --disable-coreaudio) _coreaudio=no ;;
1290 --enable-corevideo) _corevideo=yes ;;
1291 --disable-corevideo) _corevideo=no ;;
1292 --enable-quartz) _quartz=yes ;;
1293 --disable-quartz) _quartz=no ;;
1294 --enable-macosx-finder) _macosx_finder=yes ;;
1295 --disable-macosx-finder) _macosx_finder=no ;;
1296 --enable-macosx-bundle) _macosx_bundle=yes ;;
1297 --disable-macosx-bundle) _macosx_bundle=no ;;
1299 --enable-maemo) _maemo=yes ;;
1300 --disable-maemo) _maemo=no ;;
1302 --enable-sortsub) _sortsub=yes ;;
1303 --disable-sortsub) _sortsub=no ;;
1305 --enable-crash-debug) _crash_debug=yes ;;
1306 --disable-crash-debug) _crash_debug=no ;;
1307 --enable-sighandler) _sighandler=yes ;;
1308 --disable-sighandler) _sighandler=no ;;
1309 --enable-win32dll) _win32dll=yes ;;
1310 --disable-win32dll) _win32dll=no ;;
1312 --enable-sse) _sse=yes ;;
1313 --disable-sse) _sse=no ;;
1314 --enable-sse2) _sse2=yes ;;
1315 --disable-sse2) _sse2=no ;;
1316 --enable-ssse3) _ssse3=yes ;;
1317 --disable-ssse3) _ssse3=no ;;
1318 --enable-mmxext) _mmxext=yes ;;
1319 --disable-mmxext) _mmxext=no ;;
1320 --enable-3dnow) _3dnow=yes ;;
1321 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1322 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1323 --disable-3dnowext) _3dnowext=no ;;
1324 --enable-cmov) _cmov=yes ;;
1325 --disable-cmov) _cmov=no ;;
1326 --enable-fast-cmov) _fast_cmov=yes ;;
1327 --disable-fast-cmov) _fast_cmov=no ;;
1328 --enable-fast-clz) _fast_clz=yes ;;
1329 --disable-fast-clz) _fast_clz=no ;;
1330 --enable-altivec) _altivec=yes ;;
1331 --disable-altivec) _altivec=no ;;
1332 --enable-armv5te) _armv5te=yes ;;
1333 --disable-armv5te) _armv5te=no ;;
1334 --enable-armv6) _armv6=yes ;;
1335 --disable-armv6) _armv6=no ;;
1336 --enable-armv6t2) _armv6t2=yes ;;
1337 --disable-armv6t2) _armv6t2=no ;;
1338 --enable-armvfp) _armvfp=yes ;;
1339 --disable-armvfp) _armvfp=no ;;
1340 --enable-neon) neon=yes ;;
1341 --disable-neon) neon=no ;;
1342 --enable-iwmmxt) _iwmmxt=yes ;;
1343 --disable-iwmmxt) _iwmmxt=no ;;
1344 --enable-mmx) _mmx=yes ;;
1345 --disable-mmx) # 3Dnow! and MMX2 require MMX
1346 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1349 echo "Unknown parameter: $ac_option"
1350 exit 1
1353 esac
1354 done
1356 # Atmos: moved this here, to be correct, if --prefix is specified
1357 test -z "$_bindir" && _bindir="$_prefix/bin"
1358 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1359 test -z "$_mandir" && _mandir="$_prefix/share/man"
1360 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1361 test -z "$_libdir" && _libdir="$_prefix/lib"
1363 # Determine our OS name and CPU architecture
1364 if test -z "$_target" ; then
1365 # OS name
1366 system_name=$(uname -s 2>&1)
1367 case "$system_name" in
1368 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1370 Haiku)
1371 system_name=BeOS
1373 IRIX*)
1374 system_name=IRIX
1376 GNU/kFreeBSD)
1377 system_name=FreeBSD
1379 HP-UX*)
1380 system_name=HP-UX
1382 [cC][yY][gG][wW][iI][nN]*)
1383 system_name=CYGWIN
1385 MINGW32*)
1386 system_name=MINGW32
1388 OS/2*)
1389 system_name=OS/2
1392 system_name="$system_name-UNKNOWN"
1394 esac
1397 # host's CPU/instruction set
1398 host_arch=$(uname -p 2>&1)
1399 case "$host_arch" in
1400 i386|sparc|ppc|alpha|arm|mips|vax)
1402 powerpc) # Darwin returns 'powerpc'
1403 host_arch=ppc
1405 *) # uname -p on Linux returns 'unknown' for the processor type,
1406 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1408 # Maybe uname -m (machine hardware name) returns something we
1409 # recognize.
1411 # x86/x86pc is used by QNX
1412 case "$(uname -m 2>&1)" in
1413 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 ;;
1414 ia64) host_arch=ia64 ;;
1415 macppc|ppc) host_arch=ppc ;;
1416 ppc64) host_arch=ppc64 ;;
1417 alpha) host_arch=alpha ;;
1418 sparc) host_arch=sparc ;;
1419 sparc64) host_arch=sparc64 ;;
1420 parisc*|hppa*|9000*) host_arch=hppa ;;
1421 arm*|zaurus|cats) host_arch=arm ;;
1422 sh3|sh4|sh4a) host_arch=sh ;;
1423 s390) host_arch=s390 ;;
1424 s390x) host_arch=s390x ;;
1425 *mips*) host_arch=mips ;;
1426 vax) host_arch=vax ;;
1427 xtensa*) host_arch=xtensa ;;
1428 *) host_arch=UNKNOWN ;;
1429 esac
1431 esac
1432 else # if test -z "$_target"
1433 system_name=$(echo $_target | cut -d '-' -f 2)
1434 case "$(echo $system_name | tr A-Z a-z)" in
1435 linux) system_name=Linux ;;
1436 freebsd) system_name=FreeBSD ;;
1437 gnu/kfreebsd) system_name=FreeBSD ;;
1438 netbsd) system_name=NetBSD ;;
1439 bsd/os) system_name=BSD/OS ;;
1440 openbsd) system_name=OpenBSD ;;
1441 dragonfly) system_name=DragonFly ;;
1442 sunos) system_name=SunOS ;;
1443 qnx) system_name=QNX ;;
1444 morphos) system_name=MorphOS ;;
1445 amigaos) system_name=AmigaOS ;;
1446 mingw32*) system_name=MINGW32 ;;
1447 esac
1448 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1449 host_arch=$(echo $_target | cut -d '-' -f 1)
1450 if test $(echo $host_arch) != "x86_64" ; then
1451 host_arch=$(echo $host_arch | tr '_' '-')
1455 extra_cflags="-I. $extra_cflags"
1456 _timer=timer-linux.c
1457 _getch=getch2.c
1458 if freebsd ; then
1459 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1460 extra_cflags="$extra_cflags -I/usr/local/include"
1463 if netbsd || dragonfly ; then
1464 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1465 extra_cflags="$extra_cflags -I/usr/pkg/include"
1468 if darwin; then
1469 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1470 _timer=timer-darwin.c
1473 if aix ; then
1474 extra_ldflags="$extra_ldflags -lC"
1477 if irix ; then
1478 _ranlib='ar -r'
1479 elif linux ; then
1480 _ranlib='true'
1483 if win32 ; then
1484 _exesuf=".exe"
1485 extra_cflags="$extra_cflags -fno-common"
1486 # -lwinmm is always needed for osdep/timer-win2.c
1487 extra_ldflags="$extra_ldflags -lwinmm"
1488 _pe_executable=yes
1489 _timer=timer-win2.c
1490 _priority=yes
1491 def_dos_paths="#define HAVE_DOS_PATHS 1"
1492 def_priority="#define CONFIG_PRIORITY 1"
1495 if mingw32 ; then
1496 _getch=getch2-win.c
1497 _need_shmem=no
1500 if amigaos ; then
1501 _select=no
1502 _sighandler=no
1503 _stream_cache=no
1504 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1505 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1508 if qnx ; then
1509 extra_ldflags="$extra_ldflags -lph"
1512 if os2 ; then
1513 _exesuf=".exe"
1514 _getch=getch2-os2.c
1515 _need_shmem=no
1516 _priority=yes
1517 def_dos_paths="#define HAVE_DOS_PATHS 1"
1518 def_priority="#define CONFIG_PRIORITY 1"
1521 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1522 test "$I" && break
1523 done
1526 TMPLOG="configure.log"
1527 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1528 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1529 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1530 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1531 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1533 rm -f "$TMPLOG"
1534 echo configuration: $_configuration > "$TMPLOG"
1535 echo >> "$TMPLOG"
1538 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1539 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1543 # Checking CC version...
1544 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1545 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1546 echocheck "$_cc version"
1547 cc_vendor=intel
1548 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1549 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1550 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1551 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1552 # TODO verify older icc/ecc compatibility
1553 case $cc_version in
1555 cc_version="v. ?.??, bad"
1556 cc_fail=yes
1558 10.1|11.0|11.1)
1559 cc_version="$cc_version, ok"
1562 cc_version="$cc_version, bad"
1563 cc_fail=yes
1565 esac
1566 echores "$cc_version"
1567 else
1568 for _cc in "$_cc" gcc cc ; do
1569 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1570 if test "$cc_name_tmp" = "gcc"; then
1571 cc_name=$cc_name_tmp
1572 echocheck "$_cc version"
1573 cc_vendor=gnu
1574 cc_version=$($_cc -dumpversion 2>&1)
1575 case $cc_version in
1576 2.96*)
1577 cc_fail=yes
1580 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1581 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1582 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1584 esac
1585 echores "$cc_version"
1586 break
1588 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1589 if test "$cc_name_tmp" = "Sun C"; then
1590 echocheck "$_cc version"
1591 cc_vendor=sun
1592 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1593 _res_comment="experimental support only"
1594 echores "Sun C $cc_version"
1595 break
1597 done
1598 fi # icc
1599 test "$cc_fail" = yes && die "unsupported compiler version"
1601 if test -z "$_target" && x86 ; then
1602 cat > $TMPC << EOF
1603 int main(void) {
1604 int test[(int)sizeof(char *)-7];
1605 return 0;
1608 cc_check && host_arch=x86_64 || host_arch=i386
1611 echo "Detected operating system: $system_name"
1612 echo "Detected host architecture: $host_arch"
1614 echocheck "host cc"
1615 test "$_host_cc" || _host_cc=$_cc
1616 echores $_host_cc
1618 echocheck "cross compilation"
1619 if test $_cross_compile = auto ; then
1620 cat > $TMPC << EOF
1621 int main(void) { return 0; }
1623 _cross_compile=yes
1624 cc_check && "$TMPEXE" && _cross_compile=no
1626 echores $_cross_compile
1628 if test $_cross_compile = yes; then
1629 tmp_run() {
1630 return 0
1634 # ---
1636 # now that we know what compiler should be used for compilation, try to find
1637 # out which assembler is used by the $_cc compiler
1638 if test "$_as" = auto ; then
1639 _as=$($_cc -print-prog-name=as)
1640 test -z "$_as" && _as=as
1643 if test "$_nm" = auto ; then
1644 _nm=$($_cc -print-prog-name=nm)
1645 test -z "$_nm" && _nm=nm
1648 # XXX: this should be ok..
1649 _cpuinfo="echo"
1651 if test "$_runtime_cpudetection" = no ; then
1653 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1654 # FIXME: Remove the cygwin check once AMD CPUs are supported
1655 if test -r /proc/cpuinfo && ! cygwin; then
1656 # Linux with /proc mounted, extract CPU information from it
1657 _cpuinfo="cat /proc/cpuinfo"
1658 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1659 # FreeBSD with Linux emulation /proc mounted,
1660 # extract CPU information from it
1661 # Don't use it on x86 though, it never reports 3Dnow
1662 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1663 elif darwin && ! x86 ; then
1664 # use hostinfo on Darwin
1665 _cpuinfo="hostinfo"
1666 elif aix; then
1667 # use 'lsattr' on AIX
1668 _cpuinfo="lsattr -E -l proc0 -a type"
1669 elif x86; then
1670 # all other OSes try to extract CPU information from a small helper
1671 # program cpuinfo instead
1672 $_cc -o cpuinfo$_exesuf cpuinfo.c
1673 _cpuinfo="./cpuinfo$_exesuf"
1676 if x86 ; then
1677 # gather more CPU information
1678 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1679 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1680 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1681 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1682 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1684 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1686 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1687 -e s/xmm/sse/ -e s/kni/sse/)
1689 for ext in $pparam ; do
1690 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1691 done
1693 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1694 test $_sse = kernel_check && _mmxext=kernel_check
1696 echocheck "CPU vendor"
1697 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1699 echocheck "CPU type"
1700 echores "$pname"
1703 fi # test "$_runtime_cpudetection" = no
1705 if x86 && test "$_runtime_cpudetection" = no ; then
1706 extcheck() {
1707 if test "$1" = kernel_check ; then
1708 echocheck "kernel support of $2"
1709 cat > $TMPC <<EOF
1710 #include <stdlib.h>
1711 #include <signal.h>
1712 void catch() { exit(1); }
1713 int main(void) {
1714 signal(SIGILL, catch);
1715 __asm__ volatile ("$3":::"memory"); return 0;
1719 if cc_check && tmp_run ; then
1720 eval _$2=yes
1721 echores "yes"
1722 _optimizing="$_optimizing $2"
1723 return 0
1724 else
1725 eval _$2=no
1726 echores "failed"
1727 echo "It seems that your kernel does not correctly support $2."
1728 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1729 return 1
1732 return 0
1735 extcheck $_mmx "mmx" "emms"
1736 extcheck $_mmxext "mmxext" "sfence"
1737 extcheck $_3dnow "3dnow" "femms"
1738 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1739 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1740 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1741 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1742 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1744 echocheck "mtrr support"
1745 if test "$_mtrr" = kernel_check ; then
1746 _mtrr="yes"
1747 _optimizing="$_optimizing mtrr"
1749 echores "$_mtrr"
1751 if test "$_gcc3_ext" != ""; then
1752 # if we had to disable sse/sse2 because the active kernel does not
1753 # support this instruction set extension, we also have to tell
1754 # gcc3 to not generate sse/sse2 instructions for normal C code
1755 cat > $TMPC << EOF
1756 int main(void) { return 0; }
1758 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1764 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1765 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1766 def_local_aligned_8='#define HAVE_LOCAL_ALIGNED_8 0'
1767 def_local_aligned_16='#define HAVE_LOCAL_ALIGNED_16 0'
1768 _arch_all='X86 X86_32 X86_64 IA64 SPARC ARM AVR32 SH4 PPC PPC64 ALPHA MIPS SGI_MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1769 case "$host_arch" in
1770 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1771 _arch='X86 X86_32'
1772 _target_arch="ARCH_X86 = yes"
1773 _target_subarch="ARCH_X86_32 = yes"
1774 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1775 def_local_aligned_8='#define HAVE_LOCAL_ALIGNED_8 1'
1776 def_local_aligned_16='#define HAVE_LOCAL_ALIGNED_16 1'
1777 iproc=486
1778 proc=i486
1781 if test "$_runtime_cpudetection" = no ; then
1782 case "$pvendor" in
1783 AuthenticAMD)
1784 case "$pfamily" in
1785 3) proc=i386 iproc=386 ;;
1786 4) proc=i486 iproc=486 ;;
1787 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1788 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1789 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1790 proc=k6-3
1791 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1792 proc=geode
1793 elif test "$pmodel" -ge 8; then
1794 proc=k6-2
1795 elif test "$pmodel" -ge 6; then
1796 proc=k6
1797 else
1798 proc=i586
1801 6) iproc=686
1802 # It's a bit difficult to determine the correct type of Family 6
1803 # AMD CPUs just from their signature. Instead, we check directly
1804 # whether it supports SSE.
1805 if test "$_sse" = yes; then
1806 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1807 proc=athlon-xp
1808 else
1809 # Again, gcc treats athlon and athlon-tbird similarly.
1810 proc=athlon
1813 15) iproc=686
1814 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1815 # caught and remedied in the optimization tests below.
1816 proc=k8
1819 *) proc=amdfam10 iproc=686
1820 test $_fast_clz = "auto" && _fast_clz=yes
1822 esac
1824 GenuineIntel)
1825 case "$pfamily" in
1826 3) proc=i386 iproc=386 ;;
1827 4) proc=i486 iproc=486 ;;
1828 5) iproc=586
1829 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1830 proc=pentium-mmx # 4 is desktop, 8 is mobile
1831 else
1832 proc=i586
1835 6) iproc=686
1836 if test "$pmodel" -ge 15; then
1837 proc=core2
1838 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1839 proc=pentium-m
1840 elif test "$pmodel" -ge 7; then
1841 proc=pentium3
1842 elif test "$pmodel" -ge 3; then
1843 proc=pentium2
1844 else
1845 proc=i686
1847 test $_fast_clz = "auto" && _fast_clz=yes
1849 15) iproc=686
1850 # A nocona in 32-bit mode has no more capabilities than a prescott.
1851 if test "$pmodel" -ge 3; then
1852 proc=prescott
1853 else
1854 proc=pentium4
1855 test $_fast_clz = "auto" && _fast_clz=yes
1857 test $_fast_cmov = "auto" && _fast_cmov=no
1859 *) proc=prescott iproc=686 ;;
1860 esac
1862 CentaurHauls)
1863 case "$pfamily" in
1864 5) iproc=586
1865 if test "$pmodel" -ge 8; then
1866 proc=winchip2
1867 elif test "$pmodel" -ge 4; then
1868 proc=winchip-c6
1869 else
1870 proc=i586
1873 6) iproc=686
1874 if test "$pmodel" -ge 9; then
1875 proc=c3-2
1876 else
1877 proc=c3
1878 iproc=586
1881 *) proc=i686 iproc=i686 ;;
1882 esac
1884 unknown)
1885 case "$pfamily" in
1886 3) proc=i386 iproc=386 ;;
1887 4) proc=i486 iproc=486 ;;
1888 *) proc=i586 iproc=586 ;;
1889 esac
1892 proc=i586 iproc=586 ;;
1893 esac
1894 test $_fast_clz = "auto" && _fast_clz=no
1895 fi # test "$_runtime_cpudetection" = no
1898 # check that gcc supports our CPU, if not, fall back to earlier ones
1899 # LGB: check -mcpu and -march swithing step by step with enabling
1900 # to fall back till 386.
1902 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1904 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1905 cpuopt=-mtune
1906 else
1907 cpuopt=-mcpu
1910 echocheck "GCC & CPU optimization abilities"
1911 cat > $TMPC << EOF
1912 int main(void) { return 0; }
1914 if test "$_runtime_cpudetection" = no ; then
1915 cc_check -march=native && proc=native
1916 if test "$proc" = "k8"; then
1917 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1919 if test "$proc" = "athlon-xp"; then
1920 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1922 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1923 cc_check -march=$proc $cpuopt=$proc || proc=k6
1925 if test "$proc" = "k6" || test "$proc" = "c3"; then
1926 if ! cc_check -march=$proc $cpuopt=$proc; then
1927 if cc_check -march=i586 $cpuopt=i686; then
1928 proc=i586-i686
1929 else
1930 proc=i586
1934 if test "$proc" = "prescott" ; then
1935 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1937 if test "$proc" = "core2" ; then
1938 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1940 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
1941 cc_check -march=$proc $cpuopt=$proc || proc=i686
1943 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1944 cc_check -march=$proc $cpuopt=$proc || proc=i586
1946 if test "$proc" = "i586"; then
1947 cc_check -march=$proc $cpuopt=$proc || proc=i486
1949 if test "$proc" = "i486" ; then
1950 cc_check -march=$proc $cpuopt=$proc || proc=i386
1952 if test "$proc" = "i386" ; then
1953 cc_check -march=$proc $cpuopt=$proc || proc=error
1955 if test "$proc" = "error" ; then
1956 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1957 _mcpu=""
1958 _march=""
1959 _optimizing=""
1960 elif test "$proc" = "i586-i686"; then
1961 _march="-march=i586"
1962 _mcpu="$cpuopt=i686"
1963 _optimizing="$proc"
1964 else
1965 _march="-march=$proc"
1966 _mcpu="$cpuopt=$proc"
1967 _optimizing="$proc"
1969 else # if test "$_runtime_cpudetection" = no
1970 _mcpu="$cpuopt=generic"
1971 # at least i486 required, for bswap instruction
1972 _march="-march=i486"
1973 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1974 cc_check $_mcpu || _mcpu=""
1975 cc_check $_march $_mcpu || _march=""
1978 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1979 ## autodetected mcpu/march parameters
1980 if test "$_target" ; then
1981 # TODO: it may be a good idea to check GCC and fall back in all cases
1982 if test "$host_arch" = "i586-i686"; then
1983 _march="-march=i586"
1984 _mcpu="$cpuopt=i686"
1985 else
1986 _march="-march=$host_arch"
1987 _mcpu="$cpuopt=$host_arch"
1990 proc="$host_arch"
1992 case "$proc" in
1993 i386) iproc=386 ;;
1994 i486) iproc=486 ;;
1995 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1996 i686|athlon*|pentium*) iproc=686 ;;
1997 *) iproc=586 ;;
1998 esac
2001 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
2002 _fast_cmov="yes"
2003 else
2004 _fast_cmov="no"
2006 test $_fast_clz = "auto" && _fast_clz=yes
2008 echores "$proc"
2011 ia64)
2012 _arch='IA64'
2013 _target_arch='ARCH_IA64 = yes'
2014 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2015 iproc='ia64'
2018 x86_64|amd64)
2019 _arch='X86 X86_64'
2020 _target_subarch='ARCH_X86_64 = yes'
2021 _target_arch="ARCH_X86 = yes"
2022 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2023 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2024 iproc='x86_64'
2026 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
2027 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
2028 cpuopt=-mtune
2029 else
2030 cpuopt=-mcpu
2032 if test "$_runtime_cpudetection" = no ; then
2033 case "$pvendor" in
2034 AuthenticAMD)
2035 case "$pfamily" in
2036 15) proc=k8
2037 test $_fast_clz = "auto" && _fast_clz=no
2039 *) proc=amdfam10;;
2040 esac
2042 GenuineIntel)
2043 case "$pfamily" in
2044 6) proc=core2;;
2046 # 64-bit prescotts exist, but as far as GCC is concerned they
2047 # have the same capabilities as a nocona.
2048 proc=nocona
2049 test $_fast_cmov = "auto" && _fast_cmov=no
2050 test $_fast_clz = "auto" && _fast_clz=no
2052 esac
2055 proc=error;;
2056 esac
2057 fi # test "$_runtime_cpudetection" = no
2059 echocheck "GCC & CPU optimization abilities"
2060 cat > $TMPC << EOF
2061 int main(void) { return 0; }
2063 # This is a stripped-down version of the i386 fallback.
2064 if test "$_runtime_cpudetection" = no ; then
2065 cc_check -march=native && proc=native
2066 # --- AMD processors ---
2067 if test "$proc" = "k8"; then
2068 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2070 # This will fail if gcc version < 3.3, which is ok because earlier
2071 # versions don't really support 64-bit on amd64.
2072 # Is this a valid assumption? -Corey
2073 if test "$proc" = "athlon-xp"; then
2074 cc_check -march=$proc $cpuopt=$proc || proc=error
2076 # --- Intel processors ---
2077 if test "$proc" = "core2"; then
2078 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
2080 if test "$proc" = "x86-64"; then
2081 cc_check -march=$proc $cpuopt=$proc || proc=nocona
2083 if test "$proc" = "nocona"; then
2084 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
2086 if test "$proc" = "pentium4"; then
2087 cc_check -march=$proc $cpuopt=$proc || proc=error
2090 _march="-march=$proc"
2091 _mcpu="$cpuopt=$proc"
2092 if test "$proc" = "error" ; then
2093 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2094 _mcpu=""
2095 _march=""
2097 else # if test "$_runtime_cpudetection" = no
2098 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2099 _march="-march=x86-64"
2100 _mcpu="$cpuopt=generic"
2101 cc_check $_mcpu || _mcpu="x86-64"
2102 cc_check $_mcpu || _mcpu=""
2103 cc_check $_march $_mcpu || _march=""
2106 _optimizing="$proc"
2107 test $_fast_cmov = "auto" && _fast_cmov=yes
2108 test $_fast_clz = "auto" && _fast_clz=yes
2110 echores "$proc"
2113 sparc|sparc64)
2114 _arch='SPARC'
2115 _target_arch='ARCH_SPARC = yes'
2116 iproc='sparc'
2117 if test "$host_arch" = "sparc64" ; then
2118 _vis='yes'
2119 proc='ultrasparc'
2120 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2121 elif sunos ; then
2122 echocheck "CPU type"
2123 karch=$(uname -m)
2124 case "$(echo $karch)" in
2125 sun4) proc=v7 ;;
2126 sun4c) proc=v7 ;;
2127 sun4d) proc=v8 ;;
2128 sun4m) proc=v8 ;;
2129 sun4u) proc=ultrasparc _vis='yes' ;;
2130 sun4v) proc=v9 ;;
2131 *) proc=v8 ;;
2132 esac
2133 echores "$proc"
2134 else
2135 proc=v8
2137 _mcpu="-mcpu=$proc"
2138 _optimizing="$proc"
2141 arm*)
2142 _arch='ARM'
2143 _target_arch='ARCH_ARM = yes'
2144 iproc='arm'
2147 avr32)
2148 _arch='AVR32'
2149 _target_arch='ARCH_AVR32 = yes'
2150 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2151 iproc='avr32'
2152 test $_fast_clz = "auto" && _fast_clz=yes
2155 sh|sh4)
2156 _arch='SH4'
2157 _target_arch='ARCH_SH4 = yes'
2158 iproc='sh4'
2161 ppc|ppc64|powerpc|powerpc64)
2162 _arch='PPC'
2163 def_dcbzl='#define HAVE_DCBZL 0'
2164 _target_arch='ARCH_PPC = yes'
2165 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2166 def_local_aligned_8='#define HAVE_LOCAL_ALIGNED_8 1'
2167 def_local_aligned_16='#define HAVE_LOCAL_ALIGNED_16 1'
2168 iproc='ppc'
2170 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2171 _arch='PPC PPC64'
2172 _target_subarch='ARCH_PPC64 = yes'
2173 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2175 echocheck "CPU type"
2176 case $system_name in
2177 Linux)
2178 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2179 if test -n "$($_cpuinfo | grep altivec)"; then
2180 test $_altivec = auto && _altivec=yes
2183 Darwin)
2184 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2185 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2186 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2187 test $_altivec = auto && _altivec=yes
2190 NetBSD)
2191 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2192 case $cc_version in
2193 2*|3.0*|3.1*|3.2*|3.3*)
2196 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2197 test $_altivec = auto && _altivec=yes
2200 esac
2202 AIX)
2203 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2205 esac
2206 if test "$_altivec" = yes; then
2207 echores "$proc altivec"
2208 else
2209 _altivec=no
2210 echores "$proc"
2213 echocheck "GCC & CPU optimization abilities"
2215 if test -n "$proc"; then
2216 case "$proc" in
2217 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2218 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2219 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2220 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2221 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2222 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2223 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2224 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2225 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2226 *) ;;
2227 esac
2228 # gcc 3.1(.1) and up supports 7400 and 7450
2229 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2230 case "$proc" in
2231 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2232 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2233 *) ;;
2234 esac
2236 # gcc 3.2 and up supports 970
2237 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2238 case "$proc" in
2239 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2240 def_dcbzl='#define HAVE_DCBZL 1' ;;
2241 *) ;;
2242 esac
2244 # gcc 3.3 and up supports POWER4
2245 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2246 case "$proc" in
2247 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2248 *) ;;
2249 esac
2251 # gcc 3.4 and up supports 440*
2252 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2253 case "$proc" in
2254 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2255 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2256 *) ;;
2257 esac
2259 # gcc 4.0 and up supports POWER5
2260 if test "$_cc_major" -ge "4"; then
2261 case "$proc" in
2262 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2263 *) ;;
2264 esac
2268 if test -n "$_mcpu"; then
2269 _optimizing=$(echo $_mcpu | cut -c 8-)
2270 echores "$_optimizing"
2271 else
2272 echores "none"
2275 test $_fast_clz = "auto" && _fast_clz=yes
2279 alpha*)
2280 _arch='ALPHA'
2281 _target_arch='ARCH_ALPHA = yes'
2282 iproc='alpha'
2284 echocheck "CPU type"
2285 cat > $TMPC << EOF
2286 int main(void) {
2287 unsigned long ver, mask;
2288 __asm__ ("implver %0" : "=r" (ver));
2289 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2290 printf("%ld-%x\n", ver, ~mask);
2291 return 0;
2294 $_cc -o "$TMPEXE" "$TMPC"
2295 case $("$TMPEXE") in
2297 0-0) proc="ev4"; _mvi="0";;
2298 1-0) proc="ev5"; _mvi="0";;
2299 1-1) proc="ev56"; _mvi="0";;
2300 1-101) proc="pca56"; _mvi="1";;
2301 2-303) proc="ev6"; _mvi="1";;
2302 2-307) proc="ev67"; _mvi="1";;
2303 2-1307) proc="ev68"; _mvi="1";;
2304 esac
2305 echores "$proc"
2307 echocheck "GCC & CPU optimization abilities"
2308 if test "$proc" = "ev68" ; then
2309 cc_check -mcpu=$proc || proc=ev67
2311 if test "$proc" = "ev67" ; then
2312 cc_check -mcpu=$proc || proc=ev6
2314 _mcpu="-mcpu=$proc"
2315 echores "$proc"
2317 test $_fast_clz = "auto" && _fast_clz=yes
2319 _optimizing="$proc"
2322 mips)
2323 _arch='SGI_MIPS'
2324 _target_arch='ARCH_SGI_MIPS = yes'
2325 iproc='sgi-mips'
2327 if irix ; then
2328 echocheck "CPU type"
2329 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2330 case "$(echo $proc)" in
2331 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2332 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2333 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2334 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2335 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2336 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2337 esac
2338 # gcc < 3.x does not support -mtune.
2339 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2340 _mcpu=''
2342 echores "$proc"
2345 test $_fast_clz = "auto" && _fast_clz=yes
2349 hppa)
2350 _arch='PA_RISC'
2351 _target_arch='ARCH_PA_RISC = yes'
2352 iproc='PA-RISC'
2355 s390)
2356 _arch='S390'
2357 _target_arch='ARCH_S390 = yes'
2358 iproc='390'
2361 s390x)
2362 _arch='S390X'
2363 _target_arch='ARCH_S390X = yes'
2364 iproc='390x'
2367 vax)
2368 _arch='VAX'
2369 _target_arch='ARCH_VAX = yes'
2370 iproc='vax'
2373 xtensa)
2374 _arch='XTENSA'
2375 _target_arch='ARCH_XTENSA = yes'
2376 iproc='xtensa'
2379 generic)
2380 _arch='GENERIC'
2381 _target_arch='ARCH_GENERIC = yes'
2385 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2386 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2387 die "unsupported architecture $host_arch"
2389 esac # case "$host_arch" in
2391 if test "$_runtime_cpudetection" = yes ; then
2392 if x86 ; then
2393 test "$_cmov" != no && _cmov=yes
2394 x86_32 && _cmov=no
2395 test "$_mmx" != no && _mmx=yes
2396 test "$_3dnow" != no && _3dnow=yes
2397 test "$_3dnowext" != no && _3dnowext=yes
2398 test "$_mmxext" != no && _mmxext=yes
2399 test "$_sse" != no && _sse=yes
2400 test "$_sse2" != no && _sse2=yes
2401 test "$_ssse3" != no && _ssse3=yes
2402 test "$_mtrr" != no && _mtrr=yes
2404 if ppc; then
2405 _altivec=yes
2410 # endian testing
2411 echocheck "byte order"
2412 if test "$_big_endian" = auto ; then
2413 cat > $TMPC <<EOF
2414 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2415 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2416 int main(void) { return (int)ascii_name; }
2418 if cc_check ; then
2419 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2420 _big_endian=yes
2421 else
2422 _big_endian=no
2424 else
2425 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2428 if test "$_big_endian" = yes ; then
2429 _byte_order='big-endian'
2430 def_words_endian='#define WORDS_BIGENDIAN 1'
2431 def_bigendian='#define HAVE_BIGENDIAN 1'
2432 def_av_bigendian='#define AV_HAVE_BIGENDIAN 1'
2433 else
2434 _byte_order='little-endian'
2435 def_words_endian='#undef WORDS_BIGENDIAN'
2436 def_bigendian='#define HAVE_BIGENDIAN 0'
2437 def_av_bigendian='#define AV_HAVE_BIGENDIAN 0'
2439 echores "$_byte_order"
2442 echocheck "extern symbol prefix"
2443 cat > $TMPC << EOF
2444 int ff_extern;
2446 cc_check -c || die "Symbol mangling check failed."
2447 sym=$($_nm -P -g $TMPEXE)
2448 extern_prefix=${sym%%ff_extern*}
2449 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2450 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2451 echores $extern_prefix
2454 echocheck "assembler support of -pipe option"
2455 cat > $TMPC << EOF
2456 int main(void) { return 0; }
2458 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2459 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2462 echocheck "compiler support of named assembler arguments"
2463 _named_asm_args=yes
2464 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2465 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2466 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2467 _named_asm_args=no
2468 def_named_asm_args="#undef NAMED_ASM_ARGS"
2470 echores $_named_asm_args
2473 if darwin && test "$cc_vendor" = "gnu" ; then
2474 echocheck "GCC support of -mstackrealign"
2475 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2476 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2477 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2478 # wrong code with this flag, but this can be worked around by adding
2479 # -fno-unit-at-a-time as described in the blog post at
2480 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2481 cat > $TMPC << EOF
2482 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2483 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2485 cc_check -O4 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2486 test -z "$cflags_stackrealign" && cc_check -O4 -mstackrealign -fno-unit-at-a-time \
2487 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2488 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2489 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2492 # Checking for CFLAGS
2493 _install_strip="-s"
2494 if test "$_profile" != "" || test "$_debug" != "" ; then
2495 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2496 _install_strip=
2497 elif test -z "$CFLAGS" ; then
2498 if test "$cc_vendor" = "intel" ; then
2499 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2500 elif test "$cc_vendor" = "sun" ; then
2501 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2502 elif test "$cc_vendor" != "gnu" ; then
2503 CFLAGS="-O2 $_march $_mcpu $_pipe"
2504 else
2505 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2506 extra_ldflags="$extra_ldflags -ffast-math"
2508 else
2509 _warn_CFLAGS=yes
2512 cat > $TMPC << EOF
2513 int main(void) { return 0; }
2515 if test "$cc_vendor" = "gnu" ; then
2516 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2517 cc_check -Wdeclaration-after-statement && CFLAGS="-Wdeclaration-after-statement $CFLAGS"
2518 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2519 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2520 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2521 cc_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2522 cc_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2523 else
2524 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2527 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2530 if test -n "$LDFLAGS" ; then
2531 extra_ldflags="$extra_ldflags $LDFLAGS"
2532 _warn_CFLAGS=yes
2533 elif test "$cc_vendor" = "intel" ; then
2534 extra_ldflags="$extra_ldflags -i-static"
2536 if test -n "$CPPFLAGS" ; then
2537 extra_cflags="$extra_cflags $CPPFLAGS"
2538 _warn_CFLAGS=yes
2543 if x86_32 ; then
2544 # Checking assembler (_as) compatibility...
2545 # Added workaround for older as that reads from stdin by default - atmos
2546 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2547 echocheck "assembler ($_as $as_version)"
2549 _pref_as_version='2.9.1'
2550 echo 'nop' > $TMPS
2551 if test "$_mmx" = yes ; then
2552 echo 'emms' >> $TMPS
2554 if test "$_3dnow" = yes ; then
2555 _pref_as_version='2.10.1'
2556 echo 'femms' >> $TMPS
2558 if test "$_3dnowext" = yes ; then
2559 _pref_as_version='2.10.1'
2560 echo 'pswapd %mm0, %mm0' >> $TMPS
2562 if test "$_mmxext" = yes ; then
2563 _pref_as_version='2.10.1'
2564 echo 'movntq %mm0, (%eax)' >> $TMPS
2566 if test "$_sse" = yes ; then
2567 _pref_as_version='2.10.1'
2568 echo 'xorps %xmm0, %xmm0' >> $TMPS
2570 #if test "$_sse2" = yes ; then
2571 # _pref_as_version='2.11'
2572 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2574 if test "$_cmov" = yes ; then
2575 _pref_as_version='2.10.1'
2576 echo 'cmovb %eax, %ebx' >> $TMPS
2578 if test "$_ssse3" = yes ; then
2579 _pref_as_version='2.16.92'
2580 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2582 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2584 if test "$as_verc_fail" != yes ; then
2585 echores "ok"
2586 else
2587 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2588 echores "failed"
2589 die "obsolete binutils version"
2592 fi #if x86_32
2594 echocheck ".align is a power of two"
2595 if test "$_asmalign_pot" = auto ; then
2596 _asmalign_pot=no
2597 cat > $TMPC << EOF
2598 int main(void) { __asm__ (".align 3"); return 0; }
2600 cc_check && _asmalign_pot=yes
2602 if test "$_asmalign_pot" = "yes" ; then
2603 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2604 else
2605 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2607 echores $_asmalign_pot
2609 if x86 ; then
2610 echocheck "10 assembler operands"
2611 ten_operands=no
2612 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2613 cat > $TMPC << EOF
2614 int main(void) {
2615 int x=0;
2616 __asm__ volatile(
2618 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2620 return 0;
2623 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2624 echores $ten_operands
2626 echocheck "ebx availability"
2627 ebx_available=no
2628 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2629 cat > $TMPC << EOF
2630 int main(void) {
2631 int x;
2632 __asm__ volatile(
2633 "xor %0, %0"
2634 :"=b"(x)
2635 // just adding ebx to clobber list seems unreliable with some
2636 // compilers, e.g. Haiku's gcc 2.95
2638 // and the above check does not work for OSX 64 bit...
2639 __asm__ volatile("":::"%ebx");
2640 return 0;
2643 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2644 echores $ebx_available
2646 echocheck "PIC"
2647 pic=no
2648 cat > $TMPC << EOF
2649 int main(void) {
2650 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2651 #error PIC not enabled
2652 #endif
2653 return 0;
2656 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2657 echores $pic
2659 echocheck "yasm"
2660 if test -z "$YASMFLAGS" ; then
2661 if darwin ; then
2662 x86_64 && objformat="macho64" || objformat="macho"
2663 elif win32 ; then
2664 objformat="win32"
2665 else
2666 objformat="elf"
2668 # currently tested for Linux x86, x86_64
2669 YASMFLAGS="-f $objformat"
2670 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2671 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2672 case "$objformat" in
2673 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2674 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2675 esac
2676 else
2677 _warn_CFLAGS=yes
2680 echo "pabsw xmm0, xmm0" > $TMPS
2681 yasm_check || _yasm=""
2682 if test $_yasm ; then
2683 def_yasm='#define HAVE_YASM 1'
2684 have_yasm="yes"
2685 echores "$_yasm"
2686 else
2687 def_yasm='#define HAVE_YASM 0'
2688 have_yasm="no"
2689 echores "no"
2692 echocheck "bswap"
2693 def_bswap='#define HAVE_BSWAP 0'
2694 echo 'bswap %eax' > $TMPS
2695 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2696 echores "$bswap"
2697 fi #if x86
2700 #FIXME: This should happen before the check for CFLAGS..
2701 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2702 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2704 # check if AltiVec is supported by the compiler, and how to enable it
2705 echocheck "GCC AltiVec flags"
2706 cat > $TMPC << EOF
2707 int main(void) { return 0; }
2709 if $(cc_check -maltivec -mabi=altivec) ; then
2710 _altivec_gcc_flags="-maltivec -mabi=altivec"
2711 # check if <altivec.h> should be included
2712 cat > $TMPC << EOF
2713 #include <altivec.h>
2714 int main(void) { return 0; }
2716 if $(cc_check $_altivec_gcc_flags) ; then
2717 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2718 inc_altivec_h='#include <altivec.h>'
2719 else
2720 cat > $TMPC << EOF
2721 int main(void) { return 0; }
2723 if $(cc_check -faltivec) ; then
2724 _altivec_gcc_flags="-faltivec"
2725 else
2726 _altivec=no
2727 _altivec_gcc_flags="none, AltiVec disabled"
2731 echores "$_altivec_gcc_flags"
2733 # check if the compiler supports braces for vector declarations
2734 cat > $TMPC << EOF
2735 $inc_altivec_h
2736 int main(void) { (vector int) {1}; return 0; }
2738 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2740 # Disable runtime cpudetection if we cannot generate AltiVec code or
2741 # AltiVec is disabled by the user.
2742 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2743 && _runtime_cpudetection=no
2745 # Show that we are optimizing for AltiVec (if enabled and supported).
2746 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2747 && _optimizing="$_optimizing altivec"
2749 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2750 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2753 if ppc ; then
2754 def_xform_asm='#define HAVE_XFORM_ASM 0'
2755 xform_asm=no
2756 echocheck "XFORM ASM support"
2757 cat > $TMPC << EOF
2758 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2760 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2761 echores "$xform_asm"
2764 if arm ; then
2765 echocheck "ARM pld instruction"
2766 cat > $TMPC << EOF
2767 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2769 pld=no
2770 cc_check && pld=yes
2771 echores "$pld"
2773 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2774 if test $_armv5te = "auto" ; then
2775 cat > $TMPC << EOF
2776 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2778 _armv5te=no
2779 cc_check && _armv5te=yes
2781 echores "$_armv5te"
2783 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2785 echocheck "ARMv6 (SIMD instructions)"
2786 if test $_armv6 = "auto" ; then
2787 cat > $TMPC << EOF
2788 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2790 _armv6=no
2791 cc_check && _armv6=yes
2793 echores "$_armv6"
2795 echocheck "ARMv6t2 (SIMD instructions)"
2796 if test $_armv6t2 = "auto" ; then
2797 cat > $TMPC << EOF
2798 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2800 _armv6t2=no
2801 cc_check && _armv6t2=yes
2803 echores "$_armv6"
2805 echocheck "ARM VFP"
2806 if test $_armvfp = "auto" ; then
2807 cat > $TMPC << EOF
2808 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2810 _armvfp=no
2811 cc_check && _armvfp=yes
2813 echores "$_armvfp"
2815 echocheck "ARM NEON"
2816 if test $neon = "auto" ; then
2817 cat > $TMPC << EOF
2818 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2820 neon=no
2821 cc_check && neon=yes
2823 echores "$neon"
2825 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2826 if test $_iwmmxt = "auto" ; then
2827 cat > $TMPC << EOF
2828 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2830 _iwmmxt=no
2831 cc_check && _iwmmxt=yes
2833 echores "$_iwmmxt"
2836 _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'
2837 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2838 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2839 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2840 test "$_3dnow" = yes && _cpuexts="AMD3DNOW $_cpuexts"
2841 test "$_3dnowext" = yes && _cpuexts="AMD3DNOWEXT $_cpuexts"
2842 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2843 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2844 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2845 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2846 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2847 test "$_fast_clz" = yes && _cpuexts="FAST_CLZ $_cpuexts"
2848 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2849 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2850 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2851 test "$_armv6t2" = yes && _cpuexts="ARMV6T2 $_cpuexts"
2852 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2853 test "$neon" = yes && _cpuexts="NEON $_cpuexts"
2854 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2855 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2856 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2858 # Checking kernel version...
2859 if x86_32 && linux ; then
2860 _k_verc_problem=no
2861 kernel_version=$(uname -r 2>&1)
2862 echocheck "$system_name kernel version"
2863 case "$kernel_version" in
2864 '') kernel_version="?.??"; _k_verc_fail=yes;;
2865 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2866 _k_verc_problem=yes;;
2867 esac
2868 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2869 _k_verc_fail=yes
2871 if test "$_k_verc_fail" ; then
2872 echores "$kernel_version, fail"
2873 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2874 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2875 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2876 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2877 echo "2.2.x you must upgrade it to get SSE support!"
2878 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2879 else
2880 echores "$kernel_version, ok"
2884 ######################
2885 # MAIN TESTS GO HERE #
2886 ######################
2889 echocheck "-lposix"
2890 cat > $TMPC <<EOF
2891 int main(void) { return 0; }
2893 if cc_check -lposix ; then
2894 extra_ldflags="$extra_ldflags -lposix"
2895 echores "yes"
2896 else
2897 echores "no"
2900 echocheck "-lm"
2901 cat > $TMPC <<EOF
2902 int main(void) { return 0; }
2904 if cc_check -lm ; then
2905 _ld_lm="-lm"
2906 echores "yes"
2907 else
2908 _ld_lm=""
2909 echores "no"
2913 echocheck "langinfo"
2914 if test "$_langinfo" = auto ; then
2915 cat > $TMPC <<EOF
2916 #include <langinfo.h>
2917 int main(void) { nl_langinfo(CODESET); return 0; }
2919 _langinfo=no
2920 cc_check && _langinfo=yes
2922 if test "$_langinfo" = yes ; then
2923 def_langinfo='#define HAVE_LANGINFO 1'
2924 else
2925 def_langinfo='#undef HAVE_LANGINFO'
2927 echores "$_langinfo"
2930 echocheck "language"
2931 # Set preferred languages, "all" uses English as main language.
2932 test -z "$language" && language=$LINGUAS
2933 test -z "$language_doc" && language_doc=$language
2934 test -z "$language_man" && language_man=$language
2935 test -z "$language_msg" && language_msg=$language
2936 language_doc=$(echo $language_doc | tr , " ")
2937 language_man=$(echo $language_man | tr , " ")
2938 language_msg=$(echo $language_msg | tr , " ")
2940 test "$language_doc" = "all" && language_doc=$doc_lang_all
2941 test "$language_man" = "all" && language_man=$man_lang_all
2942 test "$language_msg" = "all" && language_msg=en
2944 # Prune non-existing translations from language lists.
2945 # Set message translation to the first available language.
2946 # Fall back on English.
2947 for lang in $language_doc ; do
2948 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2949 done
2950 language_doc=$tmp_language_doc
2951 test -z "$language_doc" && language_doc=en
2953 for lang in $language_man ; do
2954 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2955 done
2956 language_man=$tmp_language_man
2957 test -z "$language_man" && language_man=en
2959 for lang in $language_msg ; do
2960 test -f "help/help_mp-${lang}.h" && tmp_language_msg=$lang && break
2961 done
2962 language_msg=$tmp_language_msg
2963 test -z "$language_msg" && language_msg=en
2964 _mp_help="help/help_mp-${language_msg}.h"
2965 echores "messages: $language_msg - man pages: $language_man - documentation: $language_doc"
2968 echocheck "enable sighandler"
2969 if test "$_sighandler" = yes ; then
2970 def_sighandler='#define CONFIG_SIGHANDLER 1'
2971 else
2972 def_sighandler='#undef CONFIG_SIGHANDLER'
2974 echores "$_sighandler"
2976 echocheck "runtime cpudetection"
2977 if test "$_runtime_cpudetection" = yes ; then
2978 _optimizing="Runtime CPU-Detection enabled"
2979 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2980 else
2981 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2983 echores "$_runtime_cpudetection"
2986 echocheck "restrict keyword"
2987 for restrict_keyword in restrict __restrict __restrict__ ; do
2988 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2989 if cc_check; then
2990 def_restrict_keyword=$restrict_keyword
2991 break;
2993 done
2994 if [ -n "$def_restrict_keyword" ]; then
2995 echores "$def_restrict_keyword"
2996 else
2997 echores "none"
2999 # Avoid infinite recursion loop ("#define restrict restrict")
3000 if [ "$def_restrict_keyword" != "restrict" ]; then
3001 def_restrict_keyword="#define restrict $def_restrict_keyword"
3002 else
3003 def_restrict_keyword=""
3007 echocheck "__builtin_expect"
3008 # GCC branch prediction hint
3009 cat > $TMPC << EOF
3010 int foo(int a) {
3011 a = __builtin_expect(a, 10);
3012 return a == 10 ? 0 : 1;
3014 int main(void) { return foo(10) && foo(0); }
3016 _builtin_expect=no
3017 cc_check && _builtin_expect=yes
3018 if test "$_builtin_expect" = yes ; then
3019 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
3020 else
3021 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
3023 echores "$_builtin_expect"
3026 echocheck "kstat"
3027 cat > $TMPC << EOF
3028 #include <kstat.h>
3029 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
3031 _kstat=no
3032 cc_check -lkstat && _kstat=yes
3033 if test "$_kstat" = yes ; then
3034 def_kstat="#define HAVE_LIBKSTAT 1"
3035 extra_ldflags="$extra_ldflags -lkstat"
3036 else
3037 def_kstat="#undef HAVE_LIBKSTAT"
3039 echores "$_kstat"
3042 echocheck "posix4"
3043 # required for nanosleep on some systems
3044 cat > $TMPC << EOF
3045 #include <time.h>
3046 int main(void) { (void) nanosleep(0, 0); return 0; }
3048 _posix4=no
3049 cc_check -lposix4 && _posix4=yes
3050 if test "$_posix4" = yes ; then
3051 extra_ldflags="$extra_ldflags -lposix4"
3053 echores "$_posix4"
3055 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
3056 echocheck $func
3057 cat > $TMPC << EOF
3058 #include <math.h>
3059 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
3061 eval _$func=no
3062 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
3063 if eval test "x\$_$func" = "xyes"; then
3064 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
3065 echores yes
3066 else
3067 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
3068 echores no
3070 done
3073 echocheck "mkstemp"
3074 cat > $TMPC << EOF
3075 #include <stdlib.h>
3076 int main(void) { char a; mkstemp(&a); return 0; }
3078 _mkstemp=no
3079 cc_check && _mkstemp=yes
3080 if test "$_mkstemp" = yes ; then
3081 def_mkstemp='#define HAVE_MKSTEMP 1'
3082 else
3083 def_mkstemp='#undef HAVE_MKSTEMP'
3085 echores "$_mkstemp"
3088 echocheck "nanosleep"
3089 # also check for nanosleep
3090 cat > $TMPC << EOF
3091 #include <time.h>
3092 int main(void) { (void) nanosleep(0, 0); return 0; }
3094 _nanosleep=no
3095 cc_check && _nanosleep=yes
3096 if test "$_nanosleep" = yes ; then
3097 def_nanosleep='#define HAVE_NANOSLEEP 1'
3098 else
3099 def_nanosleep='#undef HAVE_NANOSLEEP'
3101 echores "$_nanosleep"
3104 echocheck "socklib"
3105 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3106 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3107 cat > $TMPC << EOF
3108 #include <netdb.h>
3109 #include <sys/socket.h>
3110 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3112 _socklib=no
3113 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3114 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3115 done
3116 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3117 if test $_winsock2_h = auto ; then
3118 _winsock2_h=no
3119 cat > $TMPC << EOF
3120 #include <winsock2.h>
3121 int main(void) { (void) gethostbyname(0); return 0; }
3123 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3125 test "$_ld_sock" && _res_comment="using $_ld_sock"
3126 echores "$_socklib"
3129 if test $_winsock2_h = yes ; then
3130 _ld_sock="-lws2_32"
3131 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3132 cc_check_winsock2_h='-DHAVE_WINSOCK2_H=1'
3133 else
3134 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3135 cc_check_winsock2_h='-DHAVE_WINSOCK2_H=0'
3139 echocheck "netdb.h, struct addrinfo"
3140 if test "$_struct_addrinfo" = auto; then
3141 _struct_addrinfo=no
3142 cat > $TMPC << EOF
3143 #if HAVE_WINSOCK2_H
3144 #include <winsock2.h>
3145 #include <ws2tcpip.h>
3146 #else
3147 #include <sys/types.h>
3148 #include <sys/socket.h>
3149 #include <netdb.h>
3150 #endif
3151 int main(void) { struct addrinfo ai; return 0; }
3153 cc_check $cc_check_winsock2_h && _struct_addrinfo=yes
3155 echores "$_struct_addrinfo"
3157 if test "$_struct_addrinfo" = yes; then
3158 def_addrinfo="#define HAVE_STRUCT_ADDRINFO 1"
3159 else
3160 def_addrinfo="#define HAVE_STRUCT_ADDRINFO 0"
3164 echocheck "netdb.h, getaddrinfo()"
3165 if test "$_getaddrinfo" = auto; then
3166 _getaddrinfo=no
3167 cat > $TMPC << EOF
3168 #if HAVE_WINSOCK2_H
3169 #include <winsock2.h>
3170 #else
3171 #include <sys/types.h>
3172 #include <sys/socket.h>
3173 #include <netdb.h>
3174 #endif
3175 int main(void) { (void) getaddrinfo(0, 0, 0, 0); return 0; }
3177 cc_check $cc_check_winsock2_h && _getaddrinfo=yes
3179 echores "$_getaddrinfo"
3181 if test "$_getaddrinfo" = yes; then
3182 def_getaddrinfo="#define HAVE_GETADDRINFO 1"
3183 else
3184 def_getaddrinfo="#define HAVE_GETADDRINFO 0"
3188 echocheck "sockaddr_storage"
3189 if test "$_struct_sockaddr_storage" = auto; then
3190 _struct_sockaddr_storage=no
3191 cat > $TMPC << EOF
3192 #if HAVE_WINSOCK2_H
3193 #include <winsock2.h>
3194 #else
3195 #include <sys/socket.h>
3196 #endif
3197 int main(void) { struct sockaddr_storage sas; return 0; }
3199 cc_check $cc_check_winsock2_h && _struct_sockaddr_storage=yes
3201 echores "$_struct_sockaddr_storage"
3203 if test "$_struct_sockaddr_storage" = yes; then
3204 def_sockaddr_storage="#define HAVE_STRUCT_SOCKADDR_STORAGE 1"
3205 else
3206 def_sockaddr_storage="#define HAVE_STRUCT_SOCKADDR_STORAGE 0"
3210 echocheck "struct ipv6_mreq"
3211 _struct_ipv6_mreq=no
3212 def_struct_ipv6_mreq="#define HAVE_STRUCT_IPV6_MREQ 0"
3213 for header in "netinet/in.h" "ws2tcpip.h" ; do
3214 cat > $TMPC << EOF
3215 #include <$header>
3216 int main(void) { struct ipv6_mreq mreq6; return 0; }
3218 cc_check && _struct_ipv6_mreq=yes && \
3219 def_struct_ipv6_mreq="#define HAVE_STRUCT_IPV6_MREQ 1" && break
3220 done
3221 echores "$_struct_ipv6_mreq"
3224 echocheck "struct sockaddr_in6"
3225 _struct_sockaddr_in6=no
3226 def_struct_sockaddr_in6="#define HAVE_STRUCT_SOCKADDR_IN6 0"
3227 for header in "netinet/in.h" "ws2tcpip.h" ; do
3228 cat > $TMPC << EOF
3229 #include <$header>
3230 int main(void) { struct sockaddr_in6 addr; return 0; }
3232 cc_check && _struct_sockaddr_in6=yes && \
3233 def_struct_sockaddr_in6="#define HAVE_STRUCT_SOCKADDR_IN6 1" && break
3234 done
3235 echores "$_struct_sockaddr_in6"
3238 echocheck "struct sockaddr sa_len"
3239 _struct_sockaddr_sa_len=no
3240 def_struct_sockaddr_sa_len="#define HAVE_STRUCT_SOCKADDR_SA_LEN 0"
3241 cat > $TMPC << EOF
3242 #if HAVE_WINSOCK2_H
3243 #include <winsock2.h>
3244 #else
3245 #include <sys/types.h>
3246 #include <sys/socket.h>
3247 #endif
3248 int main(void) { const void *p = &((struct sockaddr *)0)->sa_len; return 0; }
3250 cc_check $cc_check_winsock2_h && _struct_sockaddr_sa_len=yes && \
3251 def_struct_sockaddr_sa_len="#define HAVE_STRUCT_SOCKADDR_SA_LEN 1"
3252 echores "$_struct_sockaddr_sa_len"
3255 echocheck "arpa/inet.h"
3256 arpa_inet_h=no
3257 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3258 cat > $TMPC << EOF
3259 #include <arpa/inet.h>
3260 int main(void) { return 0; }
3262 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3263 echores "$arpa_inet_h"
3266 echocheck "inet_pton()"
3267 def_inet_pton='#define HAVE_INET_PTON 0'
3268 inet_pton=no
3269 cat > $TMPC << EOF
3270 #include <sys/types.h>
3271 #include <sys/socket.h>
3272 #include <arpa/inet.h>
3273 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3275 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3276 cc_check $_ld_tmp && inet_pton=yes && break
3277 done
3278 if test $inet_pton = yes ; then
3279 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3280 def_inet_pton='#define HAVE_INET_PTON 1'
3282 echores "$inet_pton"
3285 echocheck "inet_aton()"
3286 def_inet_aton='#define HAVE_INET_ATON 0'
3287 inet_aton=no
3288 cat > $TMPC << EOF
3289 #include <sys/types.h>
3290 #include <sys/socket.h>
3291 #include <arpa/inet.h>
3292 int main(void) { (void) inet_aton(0, 0); return 0; }
3294 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3295 cc_check $_ld_tmp && inet_aton=yes && break
3296 done
3297 if test $inet_aton = yes ; then
3298 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3299 def_inet_aton='#define HAVE_INET_ATON 1'
3301 echores "$inet_aton"
3304 echocheck "socklen_t"
3305 _socklen_t=no
3306 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3307 cat > $TMPC << EOF
3308 #include <$header>
3309 int main(void) { socklen_t v = 0; return v; }
3311 cc_check && _socklen_t=yes && break
3312 done
3313 if test "$_socklen_t" = yes ; then
3314 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3315 else
3316 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3318 echores "$_socklen_t"
3321 echocheck "closesocket()"
3322 _closesocket=no
3323 cat > $TMPC << EOF
3324 #include <winsock2.h>
3325 int main(void) { closesocket(~0); return 0; }
3327 cc_check $_ld_sock && _closesocket=yes
3328 if test "$_closesocket" = yes ; then
3329 def_closesocket='#define HAVE_CLOSESOCKET 1'
3330 else
3331 def_closesocket='#define HAVE_CLOSESOCKET 0'
3333 echores "$_closesocket"
3336 echocheck "network"
3337 test $_winsock2_h = no && test $inet_pton = no &&
3338 test $inet_aton = no && _network=no
3339 if test "$_network" = yes ; then
3340 def_network='#define CONFIG_NETWORK 1'
3341 extra_ldflags="$extra_ldflags $_ld_sock"
3342 _inputmodules="network $_inputmodules"
3343 else
3344 _noinputmodules="network $_noinputmodules"
3345 def_network='#undef CONFIG_NETWORK'
3346 _ftp=no
3347 _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//)
3348 _libavdemuxers=$(echo $_libavdemuxers | sed -e s/RTSP_DEMUXER// -e s/SDP_DEMUXER//)
3350 echores "$_network"
3353 echocheck "inet6"
3354 if test "$_inet6" = auto ; then
3355 cat > $TMPC << EOF
3356 #include <sys/types.h>
3357 #if !defined(_WIN32) || defined(__CYGWIN__)
3358 #include <sys/socket.h>
3359 #include <netinet/in.h>
3360 #else
3361 #include <ws2tcpip.h>
3362 #endif
3363 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3365 _inet6=no
3366 if cc_check $_ld_sock ; then
3367 _inet6=yes
3370 if test "$_inet6" = yes ; then
3371 def_inet6='#define HAVE_AF_INET6 1'
3372 else
3373 def_inet6='#undef HAVE_AF_INET6'
3375 echores "$_inet6"
3378 echocheck "gethostbyname2"
3379 if test "$_gethostbyname2" = auto ; then
3380 cat > $TMPC << EOF
3381 #include <sys/types.h>
3382 #include <sys/socket.h>
3383 #include <netdb.h>
3384 int main(void) { gethostbyname2("", AF_INET); return 0; }
3386 _gethostbyname2=no
3387 if cc_check ; then
3388 _gethostbyname2=yes
3391 if test "$_gethostbyname2" = yes ; then
3392 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3393 else
3394 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3396 echores "$_gethostbyname2"
3399 echocheck "inttypes.h (required)"
3400 cat > $TMPC << EOF
3401 #include <inttypes.h>
3402 int main(void) { return 0; }
3404 _inttypes=no
3405 cc_check && _inttypes=yes
3406 echores "$_inttypes"
3408 if test "$_inttypes" = no ; then
3409 echocheck "bitypes.h (inttypes.h predecessor)"
3410 cat > $TMPC << EOF
3411 #include <sys/bitypes.h>
3412 int main(void) { return 0; }
3414 cc_check && _inttypes=yes
3415 if test "$_inttypes" = yes ; then
3416 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."
3417 else
3418 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3423 echocheck "int_fastXY_t in inttypes.h"
3424 cat > $TMPC << EOF
3425 #include <inttypes.h>
3426 int main(void) {
3427 volatile int_fast16_t v= 0;
3428 return v; }
3430 _fast_inttypes=no
3431 cc_check && _fast_inttypes=yes
3432 if test "$_fast_inttypes" = no ; then
3433 def_fast_inttypes='
3434 typedef signed char int_fast8_t;
3435 typedef signed int int_fast16_t;
3436 typedef signed int int_fast32_t;
3437 typedef signed long long int_fast64_t;
3438 typedef unsigned char uint_fast8_t;
3439 typedef unsigned int uint_fast16_t;
3440 typedef unsigned int uint_fast32_t;
3441 typedef unsigned long long uint_fast64_t;'
3443 echores "$_fast_inttypes"
3446 echocheck "malloc.h"
3447 cat > $TMPC << EOF
3448 #include <malloc.h>
3449 int main(void) { (void) malloc(0); return 0; }
3451 _malloc=no
3452 cc_check && _malloc=yes
3453 if test "$_malloc" = yes ; then
3454 def_malloc_h='#define HAVE_MALLOC_H 1'
3455 else
3456 def_malloc_h='#define HAVE_MALLOC_H 0'
3458 # malloc.h emits a warning in FreeBSD and OpenBSD
3459 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3460 echores "$_malloc"
3463 echocheck "memalign()"
3464 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3465 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3466 cat > $TMPC << EOF
3467 #include <malloc.h>
3468 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3470 _memalign=no
3471 cc_check && _memalign=yes
3472 if test "$_memalign" = yes ; then
3473 def_memalign='#define HAVE_MEMALIGN 1'
3474 else
3475 def_memalign='#define HAVE_MEMALIGN 0'
3476 def_map_memalign='#define memalign(a,b) malloc(b)'
3477 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3479 echores "$_memalign"
3482 echocheck "posix_memalign()"
3483 posix_memalign=no
3484 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3485 cat > $TMPC << EOF
3486 #define _XOPEN_SOURCE 600
3487 #include <stdlib.h>
3488 int main(void) { posix_memalign(NULL, 0, 0); }
3490 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3491 echores "$posix_memalign"
3494 echocheck "alloca.h"
3495 cat > $TMPC << EOF
3496 #include <alloca.h>
3497 int main(void) { (void) alloca(0); return 0; }
3499 _alloca=no
3500 cc_check && _alloca=yes
3501 if cc_check ; then
3502 def_alloca_h='#define HAVE_ALLOCA_H 1'
3503 else
3504 def_alloca_h='#undef HAVE_ALLOCA_H'
3506 echores "$_alloca"
3509 echocheck "fastmemcpy"
3510 if test "$_fastmemcpy" = yes ; then
3511 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3512 else
3513 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3515 echores "$_fastmemcpy"
3518 echocheck "hard-coded tables"
3519 if test "$hardcoded_tables" = yes ; then
3520 def_hardcoded_tables='#define CONFIG_HARDCODED_TABLES 1'
3521 mak_hardcoded_tables='CONFIG_HARDCODED_TABLES = yes'
3522 else
3523 def_hardcoded_tables='#define CONFIG_HARDCODED_TABLES 0'
3525 echores "$hardcoded_tables"
3528 echocheck "mman.h"
3529 cat > $TMPC << EOF
3530 #include <sys/types.h>
3531 #include <sys/mman.h>
3532 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3534 _mman=no
3535 cc_check && _mman=yes
3536 if test "$_mman" = yes ; then
3537 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3538 else
3539 def_mman_h='#undef HAVE_SYS_MMAN_H'
3540 os2 && _need_mmap=yes
3542 echores "$_mman"
3544 cat > $TMPC << EOF
3545 #include <sys/types.h>
3546 #include <sys/mman.h>
3547 int main(void) { void *p = MAP_FAILED; return 0; }
3549 _mman_has_map_failed=no
3550 cc_check && _mman_has_map_failed=yes
3551 if test "$_mman_has_map_failed" = yes ; then
3552 def_mman_has_map_failed=''
3553 else
3554 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3557 echocheck "dynamic loader"
3558 cat > $TMPC << EOF
3559 #include <stddef.h>
3560 #include <dlfcn.h>
3561 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3563 _dl=no
3564 for _ld_tmp in "" "-ldl" ; do
3565 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3566 done
3567 if test "$_dl" = yes ; then
3568 def_dl='#define HAVE_LIBDL 1'
3569 else
3570 def_dl='#undef HAVE_LIBDL'
3572 echores "$_dl"
3575 echocheck "dynamic a/v plugins support"
3576 if test "$_dl" = no ; then
3577 _dynamic_plugins=no
3579 if test "$_dynamic_plugins" = yes ; then
3580 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3581 else
3582 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3584 echores "$_dynamic_plugins"
3587 def_threads='#define HAVE_THREADS 0'
3589 echocheck "pthread"
3590 if linux ; then
3591 THREAD_CFLAGS=-D_REENTRANT
3592 elif freebsd || netbsd || openbsd || bsdos ; then
3593 THREAD_CFLAGS=-D_THREAD_SAFE
3595 if test "$_pthreads" = auto ; then
3596 cat > $TMPC << EOF
3597 #include <pthread.h>
3598 void* func(void *arg) { return arg; }
3599 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3601 _pthreads=no
3602 if ! hpux ; then
3603 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3604 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3605 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3606 done
3609 if test "$_pthreads" = yes ; then
3610 test $_ld_pthread && _res_comment="using $_ld_pthread"
3611 def_pthreads='#define HAVE_PTHREADS 1'
3612 def_threads='#define HAVE_THREADS 1'
3613 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3614 else
3615 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3616 def_pthreads='#undef HAVE_PTHREADS'
3617 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3618 mingw32 || _win32dll=no
3620 echores "$_pthreads"
3622 if cygwin ; then
3623 if test "$_pthreads" = yes ; then
3624 def_pthread_cache="#define PTHREAD_CACHE 1"
3625 else
3626 _stream_cache=no
3627 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3631 echocheck "w32threads"
3632 if test "$_pthreads" = yes ; then
3633 _res_comment="using pthread instead"
3634 _w32threads=no
3636 if test "$_w32threads" = auto ; then
3637 _w32threads=no
3638 mingw32 && _w32threads=yes
3640 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3641 echores "$_w32threads"
3643 echocheck "rpath"
3644 netbsd &&_rpath=yes
3645 if test "$_rpath" = yes ; then
3646 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3647 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3648 done
3649 extra_ldflags=$tmp
3651 echores "$_rpath"
3653 echocheck "iconv"
3654 if test "$_iconv" = auto ; then
3655 cat > $TMPC << EOF
3656 #include <stdio.h>
3657 #include <unistd.h>
3658 #include <iconv.h>
3659 #define INBUFSIZE 1024
3660 #define OUTBUFSIZE 4096
3662 char inbuffer[INBUFSIZE];
3663 char outbuffer[OUTBUFSIZE];
3665 int main(void) {
3666 size_t numread;
3667 iconv_t icdsc;
3668 char *tocode="UTF-8";
3669 char *fromcode="cp1250";
3670 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3671 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3672 char *iptr=inbuffer;
3673 char *optr=outbuffer;
3674 size_t inleft=numread;
3675 size_t outleft=OUTBUFSIZE;
3676 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3677 != (size_t)(-1)) {
3678 write(1, outbuffer, OUTBUFSIZE - outleft);
3681 if (iconv_close(icdsc) == -1)
3684 return 0;
3687 _iconv=no
3688 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3689 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3690 _iconv=yes && break
3691 done
3693 if test "$_iconv" = yes ; then
3694 def_iconv='#define CONFIG_ICONV 1'
3695 else
3696 def_iconv='#undef CONFIG_ICONV'
3698 echores "$_iconv"
3701 echocheck "soundcard.h"
3702 _soundcard_h=no
3703 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3704 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3705 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3706 cat > $TMPC << EOF
3707 #include <$_soundcard_header>
3708 int main(void) { return 0; }
3710 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3711 done
3713 if test "$_soundcard_h" = yes ; then
3714 if test $_soundcard_header = "sys/soundcard.h"; then
3715 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3716 else
3717 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3720 echores "$_soundcard_h"
3723 echocheck "sys/dvdio.h"
3724 cat > $TMPC << EOF
3725 #include <unistd.h>
3726 #include <sys/dvdio.h>
3727 int main(void) { return 0; }
3729 _dvdio=no
3730 cc_check && _dvdio=yes
3731 if test "$_dvdio" = yes ; then
3732 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3733 else
3734 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3736 echores "$_dvdio"
3739 echocheck "sys/cdio.h"
3740 cat > $TMPC << EOF
3741 #include <unistd.h>
3742 #include <sys/cdio.h>
3743 int main(void) { return 0; }
3745 _cdio=no
3746 cc_check && _cdio=yes
3747 if test "$_cdio" = yes ; then
3748 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3749 else
3750 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3752 echores "$_cdio"
3755 echocheck "linux/cdrom.h"
3756 cat > $TMPC << EOF
3757 #include <sys/types.h>
3758 #include <linux/cdrom.h>
3759 int main(void) { return 0; }
3761 _cdrom=no
3762 cc_check && _cdrom=yes
3763 if test "$_cdrom" = yes ; then
3764 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3765 else
3766 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3768 echores "$_cdrom"
3771 echocheck "dvd.h"
3772 cat > $TMPC << EOF
3773 #include <dvd.h>
3774 int main(void) { return 0; }
3776 _dvd=no
3777 cc_check && _dvd=yes
3778 if test "$_dvd" = yes ; then
3779 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3780 else
3781 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3783 echores "$_dvd"
3786 if bsdos; then
3787 echocheck "BSDI dvd.h"
3788 cat > $TMPC << EOF
3789 #include <dvd.h>
3790 int main(void) { return 0; }
3792 _bsdi_dvd=no
3793 cc_check && _bsdi_dvd=yes
3794 if test "$_bsdi_dvd" = yes ; then
3795 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3796 else
3797 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3799 echores "$_bsdi_dvd"
3800 fi #if bsdos
3803 if hpux; then
3804 # also used by AIX, but AIX does not support VCD and/or libdvdread
3805 echocheck "HP-UX SCSI header"
3806 cat > $TMPC << EOF
3807 #include <sys/scsi.h>
3808 int main(void) { return 0; }
3810 _hpux_scsi_h=no
3811 cc_check && _hpux_scsi_h=yes
3812 if test "$_hpux_scsi_h" = yes ; then
3813 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3814 else
3815 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3817 echores "$_hpux_scsi_h"
3818 fi #if hpux
3821 if sunos; then
3822 echocheck "userspace SCSI headers (Solaris)"
3823 cat > $TMPC << EOF
3824 #include <unistd.h>
3825 #include <stropts.h>
3826 #include <sys/scsi/scsi_types.h>
3827 #include <sys/scsi/impl/uscsi.h>
3828 int main(void) { return 0; }
3830 _sol_scsi_h=no
3831 cc_check && _sol_scsi_h=yes
3832 if test "$_sol_scsi_h" = yes ; then
3833 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3834 else
3835 def_sol_scsi_h='#undef SOLARIS_USCSI'
3837 echores "$_sol_scsi_h"
3838 fi #if sunos
3841 echocheck "termcap"
3842 if test "$_termcap" = auto ; then
3843 cat > $TMPC <<EOF
3844 #include <stddef.h>
3845 #include <term.h>
3846 int main(void) { tgetent(NULL, NULL); return 0; }
3848 _termcap=no
3849 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3850 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3851 && _termcap=yes && break
3852 done
3854 if test "$_termcap" = yes ; then
3855 def_termcap='#define HAVE_TERMCAP 1'
3856 test $_ld_tmp && _res_comment="using $_ld_tmp"
3857 else
3858 def_termcap='#undef HAVE_TERMCAP'
3860 echores "$_termcap"
3863 echocheck "termios"
3864 def_termios='#undef HAVE_TERMIOS'
3865 def_termios_h='#undef HAVE_TERMIOS_H'
3866 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3867 if test "$_termios" = auto ; then
3868 _termios=no
3869 for _termios_header in "sys/termios.h" "termios.h"; do
3870 cat > $TMPC <<EOF
3871 #include <$_termios_header>
3872 int main(void) { return 0; }
3874 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3875 done
3878 if test "$_termios" = yes ; then
3879 def_termios='#define HAVE_TERMIOS 1'
3880 if test "$_termios_header" = "termios.h" ; then
3881 def_termios_h='#define HAVE_TERMIOS_H 1'
3882 else
3883 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3886 echores "$_termios"
3889 echocheck "shm"
3890 if test "$_shm" = auto ; then
3891 cat > $TMPC << EOF
3892 #include <sys/types.h>
3893 #include <sys/shm.h>
3894 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3896 _shm=no
3897 cc_check && _shm=yes
3899 if test "$_shm" = yes ; then
3900 def_shm='#define HAVE_SHM 1'
3901 else
3902 def_shm='#undef HAVE_SHM'
3904 echores "$_shm"
3907 echocheck "strsep()"
3908 cat > $TMPC << EOF
3909 #include <string.h>
3910 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3912 _strsep=no
3913 cc_check && _strsep=yes
3914 if test "$_strsep" = yes ; then
3915 def_strsep='#define HAVE_STRSEP 1'
3916 _need_strsep=no
3917 else
3918 def_strsep='#undef HAVE_STRSEP'
3919 _need_strsep=yes
3921 echores "$_strsep"
3924 echocheck "vsscanf()"
3925 cat > $TMPC << EOF
3926 #define _ISOC99_SOURCE
3927 #include <stdarg.h>
3928 #include <stdio.h>
3929 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3931 _vsscanf=no
3932 cc_check && _vsscanf=yes
3933 if test "$_vsscanf" = yes ; then
3934 def_vsscanf='#define HAVE_VSSCANF 1'
3935 _need_vsscanf=no
3936 else
3937 def_vsscanf='#undef HAVE_VSSCANF'
3938 _need_vsscanf=yes
3940 echores "$_vsscanf"
3943 echocheck "swab()"
3944 cat > $TMPC << EOF
3945 #define _XOPEN_SOURCE 600
3946 #include <unistd.h>
3947 int main(void) { swab(0, 0, 0); return 0; }
3949 _swab=no
3950 cc_check && _swab=yes
3951 if test "$_swab" = yes ; then
3952 def_swab='#define HAVE_SWAB 1'
3953 _need_swab=no
3954 else
3955 def_swab='#undef HAVE_SWAB'
3956 _need_swab=yes
3958 echores "$_swab"
3960 echocheck "POSIX select()"
3961 cat > $TMPC << EOF
3962 #include <stdio.h>
3963 #include <stdlib.h>
3964 #include <sys/types.h>
3965 #include <string.h>
3966 #include <sys/time.h>
3967 #include <unistd.h>
3968 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3970 _posix_select=no
3971 def_posix_select='#undef HAVE_POSIX_SELECT'
3972 #select() of kLIBC (OS/2) supports socket only
3973 ! os2 && cc_check && _posix_select=yes \
3974 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3975 echores "$_posix_select"
3978 echocheck "audio select()"
3979 if test "$_select" = no ; then
3980 def_select='#undef HAVE_AUDIO_SELECT'
3981 elif test "$_select" = yes ; then
3982 def_select='#define HAVE_AUDIO_SELECT 1'
3984 echores "$_select"
3987 echocheck "gettimeofday()"
3988 cat > $TMPC << EOF
3989 #include <stdio.h>
3990 #include <sys/time.h>
3991 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3993 _gettimeofday=no
3994 cc_check && _gettimeofday=yes
3995 if test "$_gettimeofday" = yes ; then
3996 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3997 _need_gettimeofday=no
3998 else
3999 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
4000 _need_gettimeofday=yes
4002 echores "$_gettimeofday"
4005 echocheck "glob()"
4006 cat > $TMPC << EOF
4007 #include <stdio.h>
4008 #include <glob.h>
4009 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
4011 _glob=no
4012 cc_check && _glob=yes
4013 if test "$_glob" = yes ; then
4014 def_glob='#define HAVE_GLOB 1'
4015 _need_glob=no
4016 else
4017 def_glob='#undef HAVE_GLOB'
4018 _need_glob=yes
4020 echores "$_glob"
4023 echocheck "setenv()"
4024 cat > $TMPC << EOF
4025 #include <stdlib.h>
4026 int main(void) { setenv("","",0); return 0; }
4028 _setenv=no
4029 cc_check && _setenv=yes
4030 if test "$_setenv" = yes ; then
4031 def_setenv='#define HAVE_SETENV 1'
4032 _need_setenv=no
4033 else
4034 def_setenv='#undef HAVE_SETENV'
4035 _need_setenv=yes
4037 echores "$_setenv"
4040 echocheck "setmode()"
4041 _setmode=no
4042 def_setmode='#define HAVE_SETMODE 0'
4043 cat > $TMPC << EOF
4044 #include <io.h>
4045 int main(void) { setmode(0, 0); return 0; }
4047 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
4048 echores "$_setmode"
4051 if sunos; then
4052 echocheck "sysi86()"
4053 cat > $TMPC << EOF
4054 #include <sys/sysi86.h>
4055 int main(void) { sysi86(0); return 0; }
4057 _sysi86=no
4058 cc_check && _sysi86=yes
4059 if test "$_sysi86" = yes ; then
4060 def_sysi86='#define HAVE_SYSI86 1'
4061 cat > $TMPC << EOF
4062 #include <sys/sysi86.h>
4063 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
4065 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
4066 else
4067 def_sysi86='#undef HAVE_SYSI86'
4069 echores "$_sysi86"
4070 fi #if sunos
4073 echocheck "sys/sysinfo.h"
4074 cat > $TMPC << EOF
4075 #include <sys/sysinfo.h>
4076 int main(void) {
4077 struct sysinfo s_info;
4078 sysinfo(&s_info);
4079 return 0;
4082 _sys_sysinfo=no
4083 cc_check && _sys_sysinfo=yes
4084 if test "$_sys_sysinfo" = yes ; then
4085 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
4086 else
4087 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
4089 echores "$_sys_sysinfo"
4092 if darwin; then
4094 echocheck "Mac OS X Finder Support"
4095 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
4096 if test "$_macosx_finder" = yes ; then
4097 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
4098 extra_ldflags="$extra_ldflags -framework Carbon"
4100 echores "$_macosx_finder"
4102 echocheck "Mac OS X Bundle file locations"
4103 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
4104 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
4105 if test "$_macosx_bundle" = yes ; then
4106 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
4107 extra_ldflags="$extra_ldflags -framework Carbon"
4109 echores "$_macosx_bundle"
4111 echocheck "Apple Remote"
4112 if test "$_apple_remote" = auto ; then
4113 _apple_remote=no
4114 cat > $TMPC <<EOF
4115 #include <stdio.h>
4116 #include <IOKit/IOCFPlugIn.h>
4117 int main(void) {
4118 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
4119 CFMutableDictionaryRef hidMatchDictionary;
4120 IOReturn ioReturnValue;
4122 // Set up a matching dictionary to search the I/O Registry by class.
4123 // name for all HID class devices
4124 hidMatchDictionary = IOServiceMatching("AppleIRController");
4126 // Now search I/O Registry for matching devices.
4127 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
4128 hidMatchDictionary, &hidObjectIterator);
4130 // If search is unsuccessful, return nonzero.
4131 if (ioReturnValue != kIOReturnSuccess ||
4132 !IOIteratorIsValid(hidObjectIterator)) {
4133 return 1;
4135 return 0;
4138 cc_check -framework IOKit && tmp_run && _apple_remote=yes
4140 if test "$_apple_remote" = yes ; then
4141 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
4142 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
4143 else
4144 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
4146 echores "$_apple_remote"
4148 fi #if darwin
4150 if linux; then
4152 echocheck "Apple IR"
4153 if test "$_apple_ir" = auto ; then
4154 _apple_ir=no
4155 cat > $TMPC <<EOF
4156 #include <linux/types.h>
4157 #include <linux/input.h>
4158 int main(void) {
4159 struct input_event ev;
4160 struct input_id id;
4161 return 0;
4164 cc_check && _apple_ir=yes
4166 if test "$_apple_ir" = yes ; then
4167 def_apple_ir='#define CONFIG_APPLE_IR 1'
4168 else
4169 def_apple_ir='#undef CONFIG_APPLE_IR'
4171 echores "$_apple_ir"
4172 fi #if linux
4174 echocheck "pkg-config"
4175 _pkg_config=pkg-config
4176 if $($_pkg_config --version > /dev/null 2>&1); then
4177 if test "$_ld_static"; then
4178 _pkg_config="$_pkg_config --static"
4180 echores "yes"
4181 else
4182 _pkg_config=false
4183 echores "no"
4187 echocheck "Samba support (libsmbclient)"
4188 if test "$_smb" = yes; then
4189 extra_ldflags="$extra_ldflags -lsmbclient"
4191 if test "$_smb" = auto; then
4192 _smb=no
4193 cat > $TMPC << EOF
4194 #include <libsmbclient.h>
4195 int main(void) { smbc_opendir("smb://"); return 0; }
4197 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
4198 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
4199 _smb=yes && break
4200 done
4203 if test "$_smb" = yes; then
4204 def_smb="#define CONFIG_LIBSMBCLIENT 1"
4205 _inputmodules="smb $_inputmodules"
4206 else
4207 def_smb="#undef CONFIG_LIBSMBCLIENT"
4208 _noinputmodules="smb $_noinputmodules"
4210 echores "$_smb"
4213 #########
4214 # VIDEO #
4215 #########
4218 echocheck "tdfxfb"
4219 if test "$_tdfxfb" = yes ; then
4220 def_tdfxfb='#define CONFIG_TDFXFB 1'
4221 _vomodules="tdfxfb $_vomodules"
4222 else
4223 def_tdfxfb='#undef CONFIG_TDFXFB'
4224 _novomodules="tdfxfb $_novomodules"
4226 echores "$_tdfxfb"
4228 echocheck "s3fb"
4229 if test "$_s3fb" = yes ; then
4230 def_s3fb='#define CONFIG_S3FB 1'
4231 _vomodules="s3fb $_vomodules"
4232 else
4233 def_s3fb='#undef CONFIG_S3FB'
4234 _novomodules="s3fb $_novomodules"
4236 echores "$_s3fb"
4238 echocheck "wii"
4239 if test "$_wii" = yes ; then
4240 def_wii='#define CONFIG_WII 1'
4241 _vomodules="wii $_vomodules"
4242 else
4243 def_wii='#undef CONFIG_WII'
4244 _novomodules="wii $_novomodules"
4246 echores "$_wii"
4248 echocheck "tdfxvid"
4249 if test "$_tdfxvid" = yes ; then
4250 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4251 _vomodules="tdfx_vid $_vomodules"
4252 else
4253 def_tdfxvid='#undef CONFIG_TDFX_VID'
4254 _novomodules="tdfx_vid $_novomodules"
4256 echores "$_tdfxvid"
4258 echocheck "xvr100"
4259 if test "$_xvr100" = auto ; then
4260 cat > $TMPC << EOF
4261 #include <unistd.h>
4262 #include <sys/fbio.h>
4263 #include <sys/visual_io.h>
4264 int main(void) {
4265 struct vis_identifier ident;
4266 struct fbgattr attr;
4267 ioctl(0, VIS_GETIDENTIFIER, &ident);
4268 ioctl(0, FBIOGATTR, &attr);
4269 return 0;
4272 _xvr100=no
4273 cc_check && _xvr100=yes
4275 if test "$_xvr100" = yes ; then
4276 def_xvr100='#define CONFIG_XVR100 1'
4277 _vomodules="xvr100 $_vomodules"
4278 else
4279 def_tdfxvid='#undef CONFIG_XVR100'
4280 _novomodules="xvr100 $_novomodules"
4282 echores "$_xvr100"
4284 echocheck "tga"
4285 if test "$_tga" = yes ; then
4286 def_tga='#define CONFIG_TGA 1'
4287 _vomodules="tga $_vomodules"
4288 else
4289 def_tga='#undef CONFIG_TGA'
4290 _novomodules="tga $_novomodules"
4292 echores "$_tga"
4295 echocheck "md5sum support"
4296 if test "$_md5sum" = yes; then
4297 def_md5sum="#define CONFIG_MD5SUM 1"
4298 _vomodules="md5sum $_vomodules"
4299 else
4300 def_md5sum="#undef CONFIG_MD5SUM"
4301 _novomodules="md5sum $_novomodules"
4303 echores "$_md5sum"
4306 echocheck "yuv4mpeg support"
4307 if test "$_yuv4mpeg" = yes; then
4308 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4309 _vomodules="yuv4mpeg $_vomodules"
4310 else
4311 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4312 _novomodules="yuv4mpeg $_novomodules"
4314 echores "$_yuv4mpeg"
4317 echocheck "bl"
4318 if test "$_bl" = yes ; then
4319 def_bl='#define CONFIG_BL 1'
4320 _vomodules="bl $_vomodules"
4321 else
4322 def_bl='#undef CONFIG_BL'
4323 _novomodules="bl $_novomodules"
4325 echores "$_bl"
4328 echocheck "DirectFB"
4329 if test "$_directfb" = auto ; then
4330 _directfb=no
4331 cat > $TMPC <<EOF
4332 #include <directfb.h>
4333 int main(void) { DirectFBInit(0, 0); return 0; }
4335 for _inc_tmp in "" -I/usr/local/include/directfb \
4336 -I/usr/include/directfb -I/usr/local/include; do
4337 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4338 extra_cflags="$extra_cflags $_inc_tmp" && break
4339 done
4342 dfb_version() {
4343 expr $1 \* 65536 + $2 \* 256 + $3
4346 if test "$_directfb" = yes; then
4347 cat > $TMPC << EOF
4348 #include <directfb_version.h>
4350 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4353 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4354 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4355 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4356 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4357 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4358 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4359 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4360 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4361 _res_comment="$_directfb_version"
4362 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4363 else
4364 def_directfb_version='#undef DIRECTFBVERSION'
4365 _directfb=no
4366 _res_comment="version >=0.9.13 required"
4368 else
4369 _directfb=no
4370 _res_comment="failed to get version"
4373 echores "$_directfb"
4375 if test "$_directfb" = yes ; then
4376 def_directfb='#define CONFIG_DIRECTFB 1'
4377 _vomodules="directfb $_vomodules"
4378 libs_mplayer="$libs_mplayer -ldirectfb"
4379 else
4380 def_directfb='#undef CONFIG_DIRECTFB'
4381 _novomodules="directfb $_novomodules"
4383 if test "$_dfbmga" = yes; then
4384 _vomodules="dfbmga $_vomodules"
4385 def_dfbmga='#define CONFIG_DFBMGA 1'
4386 else
4387 _novomodules="dfbmga $_novomodules"
4388 def_dfbmga='#undef CONFIG_DFBMGA'
4392 echocheck "X11 headers presence"
4393 _x11_headers="no"
4394 _res_comment="check if the dev(el) packages are installed"
4395 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4396 if test -f "$I/X11/Xlib.h" ; then
4397 _x11_headers="yes"
4398 _res_comment=""
4399 break
4401 done
4402 if test $_cross_compile = no; then
4403 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4404 /usr/include/X11R6 /usr/openwin/include ; do
4405 if test -f "$I/X11/Xlib.h" ; then
4406 extra_cflags="$extra_cflags -I$I"
4407 _x11_headers="yes"
4408 _res_comment="using $I"
4409 break
4411 done
4413 echores "$_x11_headers"
4416 echocheck "X11"
4417 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4418 cat > $TMPC <<EOF
4419 #include <X11/Xlib.h>
4420 #include <X11/Xutil.h>
4421 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4423 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4424 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4425 -L/usr/lib ; do
4426 if netbsd; then
4427 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4428 else
4429 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4431 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4432 && _x11=yes && break
4433 done
4435 if test "$_x11" = yes ; then
4436 def_x11='#define CONFIG_X11 1'
4437 _vomodules="x11 xover $_vomodules"
4438 else
4439 _x11=no
4440 def_x11='#undef CONFIG_X11'
4441 _novomodules="x11 $_novomodules"
4442 _res_comment="check if the dev(el) packages are installed"
4443 # disable stuff that depends on X
4444 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4446 echores "$_x11"
4448 echocheck "Xss screensaver extensions"
4449 if test "$_xss" = auto ; then
4450 cat > $TMPC << EOF
4451 #include <X11/Xlib.h>
4452 #include <X11/extensions/scrnsaver.h>
4453 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4455 _xss=no
4456 cc_check -lXss && _xss=yes
4458 if test "$_xss" = yes ; then
4459 def_xss='#define CONFIG_XSS 1'
4460 libs_mplayer="$libs_mplayer -lXss"
4461 else
4462 def_xss='#undef CONFIG_XSS'
4464 echores "$_xss"
4466 echocheck "DPMS"
4467 _xdpms3=no
4468 _xdpms4=no
4469 if test "$_x11" = yes ; then
4470 cat > $TMPC <<EOF
4471 #include <X11/Xmd.h>
4472 #include <X11/Xlib.h>
4473 #include <X11/Xutil.h>
4474 #include <X11/Xatom.h>
4475 #include <X11/extensions/dpms.h>
4476 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4478 cc_check -lXdpms && _xdpms3=yes
4479 cat > $TMPC <<EOF
4480 #include <X11/Xlib.h>
4481 #include <X11/extensions/dpms.h>
4482 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4484 cc_check -lXext && _xdpms4=yes
4486 if test "$_xdpms4" = yes ; then
4487 def_xdpms='#define CONFIG_XDPMS 1'
4488 _res_comment="using Xdpms 4"
4489 echores "yes"
4490 elif test "$_xdpms3" = yes ; then
4491 def_xdpms='#define CONFIG_XDPMS 1'
4492 libs_mplayer="$libs_mplayer -lXdpms"
4493 _res_comment="using Xdpms 3"
4494 echores "yes"
4495 else
4496 def_xdpms='#undef CONFIG_XDPMS'
4497 echores "no"
4501 echocheck "Xv"
4502 if test "$_xv" = auto ; then
4503 cat > $TMPC <<EOF
4504 #include <X11/Xlib.h>
4505 #include <X11/extensions/Xvlib.h>
4506 int main(void) {
4507 (void) XvGetPortAttribute(0, 0, 0, 0);
4508 (void) XvQueryPortAttributes(0, 0, 0);
4509 return 0; }
4511 _xv=no
4512 cc_check -lXv && _xv=yes
4515 if test "$_xv" = yes ; then
4516 def_xv='#define CONFIG_XV 1'
4517 libs_mplayer="$libs_mplayer -lXv"
4518 _vomodules="xv $_vomodules"
4519 else
4520 def_xv='#undef CONFIG_XV'
4521 _novomodules="xv $_novomodules"
4523 echores "$_xv"
4526 echocheck "XvMC"
4527 if test "$_xv" = yes && test "$_xvmc" != no ; then
4528 _xvmc=no
4529 cat > $TMPC <<EOF
4530 #include <X11/Xlib.h>
4531 #include <X11/extensions/Xvlib.h>
4532 #include <X11/extensions/XvMClib.h>
4533 int main(void) {
4534 (void) XvMCQueryExtension(0,0,0);
4535 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4536 return 0; }
4538 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4539 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4540 done
4542 if test "$_xvmc" = yes ; then
4543 def_xvmc='#define CONFIG_XVMC 1'
4544 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4545 _vomodules="xvmc $_vomodules"
4546 _res_comment="using $_xvmclib"
4547 else
4548 def_xvmc='#define CONFIG_XVMC 0'
4549 _novomodules="xvmc $_novomodules"
4550 _libavdecoders=$(echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER//)
4552 echores "$_xvmc"
4555 echocheck "VDPAU"
4556 if test "$_vdpau" = auto ; then
4557 _vdpau=no
4558 if test "$_dl" = yes ; then
4559 cat > $TMPC <<EOF
4560 #include <vdpau/vdpau_x11.h>
4561 int main(void) {
4562 (void) vdp_device_create_x11(0, 0, 0, 0);
4563 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4565 cc_check -lvdpau && _vdpau=yes
4568 if test "$_vdpau" = yes ; then
4569 def_vdpau='#define CONFIG_VDPAU 1'
4570 libs_mplayer="$libs_mplayer -lvdpau"
4571 _vomodules="vdpau $_vomodules"
4572 else
4573 def_vdpau='#define CONFIG_VDPAU 0'
4574 _novomodules="vdpau $_novomodules"
4575 _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//)
4577 echores "$_vdpau"
4580 echocheck "Xinerama"
4581 if test "$_xinerama" = auto ; then
4582 cat > $TMPC <<EOF
4583 #include <X11/Xlib.h>
4584 #include <X11/extensions/Xinerama.h>
4585 int main(void) { (void) XineramaIsActive(0); return 0; }
4587 _xinerama=no
4588 cc_check -lXinerama && _xinerama=yes
4591 if test "$_xinerama" = yes ; then
4592 def_xinerama='#define CONFIG_XINERAMA 1'
4593 libs_mplayer="$libs_mplayer -lXinerama"
4594 else
4595 def_xinerama='#undef CONFIG_XINERAMA'
4597 echores "$_xinerama"
4600 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4601 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4602 # named 'X extensions' or something similar.
4603 # This check may be useful for future mplayer versions (to change resolution)
4604 # If you run into problems, remove '-lXxf86vm'.
4605 echocheck "Xxf86vm"
4606 if test "$_vm" = auto ; then
4607 cat > $TMPC <<EOF
4608 #include <X11/Xlib.h>
4609 #include <X11/extensions/xf86vmode.h>
4610 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4612 _vm=no
4613 cc_check -lXxf86vm && _vm=yes
4615 if test "$_vm" = yes ; then
4616 def_vm='#define CONFIG_XF86VM 1'
4617 libs_mplayer="$libs_mplayer -lXxf86vm"
4618 else
4619 def_vm='#undef CONFIG_XF86VM'
4621 echores "$_vm"
4623 # Check for the presence of special keycodes, like audio control buttons
4624 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4625 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4626 # have these new keycodes.
4627 echocheck "XF86keysym"
4628 if test "$_xf86keysym" = auto; then
4629 _xf86keysym=no
4630 cat > $TMPC <<EOF
4631 #include <X11/Xlib.h>
4632 #include <X11/XF86keysym.h>
4633 int main(void) { return XF86XK_AudioPause; }
4635 cc_check && _xf86keysym=yes
4637 if test "$_xf86keysym" = yes ; then
4638 def_xf86keysym='#define CONFIG_XF86XK 1'
4639 else
4640 def_xf86keysym='#undef CONFIG_XF86XK'
4642 echores "$_xf86keysym"
4644 echocheck "DGA"
4645 if test "$_dga2" = auto && test "$_x11" = yes ; then
4646 cat > $TMPC << EOF
4647 #include <X11/Xlib.h>
4648 #include <X11/extensions/xf86dga.h>
4649 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4651 _dga2=no
4652 cc_check -lXxf86dga && _dga2=yes
4654 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4655 cat > $TMPC << EOF
4656 #include <X11/Xlib.h>
4657 #include <X11/extensions/xf86dga.h>
4658 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4660 _dga1=no
4661 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4664 _dga=no
4665 def_dga='#undef CONFIG_DGA'
4666 def_dga1='#undef CONFIG_DGA1'
4667 def_dga2='#undef CONFIG_DGA2'
4668 if test "$_dga1" = yes ; then
4669 _dga=yes
4670 def_dga1='#define CONFIG_DGA1 1'
4671 _res_comment="using DGA 1.0"
4672 elif test "$_dga2" = yes ; then
4673 _dga=yes
4674 def_dga2='#define CONFIG_DGA2 1'
4675 _res_comment="using DGA 2.0"
4677 if test "$_dga" = yes ; then
4678 def_dga='#define CONFIG_DGA 1'
4679 libs_mplayer="$libs_mplayer -lXxf86dga"
4680 _vomodules="dga $_vomodules"
4681 else
4682 _novomodules="dga $_novomodules"
4684 echores "$_dga"
4687 echocheck "3dfx"
4688 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4689 def_3dfx='#define CONFIG_3DFX 1'
4690 _vomodules="3dfx $_vomodules"
4691 else
4692 def_3dfx='#undef CONFIG_3DFX'
4693 _novomodules="3dfx $_novomodules"
4695 echores "$_3dfx"
4698 echocheck "VIDIX"
4699 def_vidix='#undef CONFIG_VIDIX'
4700 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4701 _vidix_drv_cyberblade=no
4702 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4703 _vidix_drv_ivtv=no
4704 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4705 _vidix_drv_mach64=no
4706 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4707 _vidix_drv_mga=no
4708 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4709 _vidix_drv_mga_crtc2=no
4710 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4711 _vidix_drv_nvidia=no
4712 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4713 _vidix_drv_pm2=no
4714 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4715 _vidix_drv_pm3=no
4716 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4717 _vidix_drv_radeon=no
4718 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4719 _vidix_drv_rage128=no
4720 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4721 _vidix_drv_s3=no
4722 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4723 _vidix_drv_sh_veu=no
4724 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4725 _vidix_drv_sis=no
4726 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4727 _vidix_drv_unichrome=no
4728 if test "$_vidix" = auto ; then
4729 _vidix=no
4730 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4731 && _vidix=yes
4732 x86_64 && win32 && _vidix=no
4733 (ppc || alpha) && linux && _vidix=yes
4735 echores "$_vidix"
4737 if test "$_vidix" = yes ; then
4738 def_vidix='#define CONFIG_VIDIX 1'
4739 _vomodules="cvidix $_vomodules"
4740 # FIXME: ivtv driver temporarily disabled until we have a proper test
4741 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4742 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4744 # some vidix drivers are architecture and os specific, discard them elsewhere
4745 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4746 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4748 for driver in $_vidix_drivers ; do
4749 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4750 eval _vidix_drv_${driver}=yes
4751 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4752 done
4754 echocheck "VIDIX PCI device name database"
4755 echores "$_vidix_pcidb"
4756 if test "$_vidix_pcidb" = yes ; then
4757 _vidix_pcidb_val=1
4758 else
4759 _vidix_pcidb_val=0
4762 echocheck "VIDIX dhahelper support"
4763 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4764 echores "$_dhahelper"
4766 echocheck "VIDIX svgalib_helper support"
4767 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4768 echores "$_svgalib_helper"
4770 else
4771 _novomodules="cvidix $_novomodules"
4774 if test "$_vidix" = yes && win32; then
4775 winvidix=yes
4776 _vomodules="winvidix $_vomodules"
4777 libs_mplayer="$libs_mplayer -lgdi32"
4778 else
4779 _novomodules="winvidix $_novomodules"
4781 if test "$_vidix" = yes && test "$_x11" = yes; then
4782 xvidix=yes
4783 _vomodules="xvidix $_vomodules"
4784 else
4785 _novomodules="xvidix $_novomodules"
4788 echocheck "/dev/mga_vid"
4789 if test "$_mga" = auto ; then
4790 _mga=no
4791 test -c /dev/mga_vid && _mga=yes
4793 if test "$_mga" = yes ; then
4794 def_mga='#define CONFIG_MGA 1'
4795 _vomodules="mga $_vomodules"
4796 else
4797 def_mga='#undef CONFIG_MGA'
4798 _novomodules="mga $_novomodules"
4800 echores "$_mga"
4802 echocheck "xmga"
4803 if test "$_xmga" = auto ; then
4804 _xmga=no
4805 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
4807 if test "$_xmga" = yes ; then
4808 def_xmga='#define CONFIG_XMGA 1'
4809 _vomodules="xmga $_vomodules"
4810 else
4811 def_xmga='#undef CONFIG_XMGA'
4812 _novomodules="xmga $_novomodules"
4814 echores "$_xmga"
4817 echocheck "GGI"
4818 if test "$_ggi" = auto ; then
4819 cat > $TMPC << EOF
4820 #include <ggi/ggi.h>
4821 int main(void) { ggiInit(); return 0; }
4823 _ggi=no
4824 cc_check -lggi && _ggi=yes
4826 if test "$_ggi" = yes ; then
4827 def_ggi='#define CONFIG_GGI 1'
4828 libs_mplayer="$libs_mplayer -lggi"
4829 _vomodules="ggi $_vomodules"
4830 else
4831 def_ggi='#undef CONFIG_GGI'
4832 _novomodules="ggi $_novomodules"
4834 echores "$_ggi"
4836 echocheck "GGI extension: libggiwmh"
4837 if test "$_ggiwmh" = auto ; then
4838 _ggiwmh=no
4839 cat > $TMPC << EOF
4840 #include <ggi/ggi.h>
4841 #include <ggi/wmh.h>
4842 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4844 cc_check -lggi -lggiwmh && _ggiwmh=yes
4846 # needed to get right output on obscure combination
4847 # like --disable-ggi --enable-ggiwmh
4848 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4849 def_ggiwmh='#define CONFIG_GGIWMH 1'
4850 libs_mplayer="$libs_mplayer -lggiwmh"
4851 else
4852 _ggiwmh=no
4853 def_ggiwmh='#undef CONFIG_GGIWMH'
4855 echores "$_ggiwmh"
4858 echocheck "AA"
4859 if test "$_aa" = auto ; then
4860 cat > $TMPC << EOF
4861 #include <aalib.h>
4862 extern struct aa_hardware_params aa_defparams;
4863 extern struct aa_renderparams aa_defrenderparams;
4864 int main(void) {
4865 aa_context *c;
4866 aa_renderparams *p;
4867 (void) aa_init(0, 0, 0);
4868 c = aa_autoinit(&aa_defparams);
4869 p = aa_getrenderparams();
4870 aa_autoinitkbd(c,0);
4871 return 0; }
4873 _aa=no
4874 for _ld_tmp in "-laa" ; do
4875 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4876 done
4878 if test "$_aa" = yes ; then
4879 def_aa='#define CONFIG_AA 1'
4880 if cygwin ; then
4881 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4883 _vomodules="aa $_vomodules"
4884 else
4885 def_aa='#undef CONFIG_AA'
4886 _novomodules="aa $_novomodules"
4888 echores "$_aa"
4891 echocheck "CACA"
4892 if test "$_caca" = auto ; then
4893 _caca=no
4894 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4895 cat > $TMPC << EOF
4896 #include <caca.h>
4897 #ifdef CACA_API_VERSION_1
4898 #include <caca0.h>
4899 #endif
4900 int main(void) { (void) caca_init(); return 0; }
4902 cc_check $(caca-config --libs) && _caca=yes
4905 if test "$_caca" = yes ; then
4906 def_caca='#define CONFIG_CACA 1'
4907 extra_cflags="$extra_cflags $(caca-config --cflags)"
4908 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4909 _vomodules="caca $_vomodules"
4910 else
4911 def_caca='#undef CONFIG_CACA'
4912 _novomodules="caca $_novomodules"
4914 echores "$_caca"
4917 echocheck "SVGAlib"
4918 if test "$_svga" = auto ; then
4919 cat > $TMPC << EOF
4920 #include <vga.h>
4921 int main(void) { return 0; }
4923 _svga=no
4924 cc_check -lvga $_ld_lm && _svga=yes
4926 if test "$_svga" = yes ; then
4927 def_svga='#define CONFIG_SVGALIB 1'
4928 libs_mplayer="$libs_mplayer -lvga"
4929 _vomodules="svga $_vomodules"
4930 else
4931 def_svga='#undef CONFIG_SVGALIB'
4932 _novomodules="svga $_novomodules"
4934 echores "$_svga"
4937 echocheck "FBDev"
4938 if test "$_fbdev" = auto ; then
4939 _fbdev=no
4940 linux && _fbdev=yes
4942 if test "$_fbdev" = yes ; then
4943 def_fbdev='#define CONFIG_FBDEV 1'
4944 _vomodules="fbdev $_vomodules"
4945 else
4946 def_fbdev='#undef CONFIG_FBDEV'
4947 _novomodules="fbdev $_novomodules"
4949 echores "$_fbdev"
4953 echocheck "DVB"
4954 if test "$_dvb" = auto ; then
4955 _dvb=no
4956 cat >$TMPC << EOF
4957 #include <poll.h>
4958 #include <sys/ioctl.h>
4959 #include <stdio.h>
4960 #include <time.h>
4961 #include <unistd.h>
4962 #include <linux/dvb/dmx.h>
4963 #include <linux/dvb/frontend.h>
4964 #include <linux/dvb/video.h>
4965 #include <linux/dvb/audio.h>
4966 int main(void) {return 0;}
4968 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4969 cc_check $_inc_tmp && _dvb=yes && \
4970 extra_cflags="$extra_cflags $_inc_tmp" && break
4971 done
4973 echores "$_dvb"
4974 if test "$_dvb" = yes ; then
4975 _dvbin=yes
4976 _inputmodules="dvb $_inputmodules"
4977 def_dvb='#define CONFIG_DVB 1'
4978 def_dvbin='#define CONFIG_DVBIN 1'
4979 _aomodules="mpegpes(dvb) $_aomodules"
4980 _vomodules="mpegpes(dvb) $_vomodules"
4981 else
4982 _dvbin=no
4983 _noinputmodules="dvb $_noinputmodules"
4984 def_dvb='#undef CONFIG_DVB'
4985 def_dvbin='#undef CONFIG_DVBIN '
4986 _aomodules="mpegpes(file) $_aomodules"
4987 _vomodules="mpegpes(file) $_vomodules"
4991 if darwin; then
4993 echocheck "QuickTime"
4994 if test "$quicktime" = auto ; then
4995 cat > $TMPC <<EOF
4996 #include <QuickTime/QuickTime.h>
4997 int main(void) {
4998 ImageDescription *desc;
4999 EnterMovies();
5000 ExitMovies();
5001 return 0;
5004 quicktime=no
5005 cc_check -framework QuickTime && quicktime=yes
5007 if test "$quicktime" = yes ; then
5008 extra_ldflags="$extra_ldflags -framework QuickTime"
5009 def_quicktime='#define CONFIG_QUICKTIME 1'
5010 else
5011 def_quicktime='#undef CONFIG_QUICKTIME'
5012 _quartz=no
5014 echores $quicktime
5016 echocheck "Quartz"
5017 if test "$_quartz" = auto ; then
5018 cat > $TMPC <<EOF
5019 #include <Carbon/Carbon.h>
5020 int main(void) {
5021 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
5022 return 0;
5025 _quartz=no
5026 cc_check -framework Carbon && _quartz=yes
5028 if test "$_quartz" = yes ; then
5029 libs_mplayer="$libs_mplayer -framework Carbon"
5030 def_quartz='#define CONFIG_QUARTZ 1'
5031 _vomodules="quartz $_vomodules"
5032 else
5033 def_quartz='#undef CONFIG_QUARTZ'
5034 _novomodules="quartz $_novomodules"
5036 echores $_quartz
5038 echocheck "CoreVideo"
5039 if test "$_corevideo" = auto ; then
5040 cat > $TMPC <<EOF
5041 #include <Carbon/Carbon.h>
5042 #include <CoreServices/CoreServices.h>
5043 #include <OpenGL/OpenGL.h>
5044 #include <QuartzCore/CoreVideo.h>
5045 int main(void) { return 0; }
5047 _corevideo=no
5048 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
5050 if test "$_corevideo" = yes ; then
5051 _vomodules="corevideo $_vomodules"
5052 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
5053 def_corevideo='#define CONFIG_COREVIDEO 1'
5054 else
5055 _novomodules="corevideo $_novomodules"
5056 def_corevideo='#undef CONFIG_COREVIDEO'
5058 echores "$_corevideo"
5060 fi #if darwin
5063 # make sure this stays below CoreVideo to avoid issues due to namespace
5064 # conflicts between -lGL and -framework OpenGL
5065 echocheck "OpenGL"
5066 #Note: this test is run even with --enable-gl since we autodetect linker flags
5067 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
5068 cat > $TMPC << EOF
5069 #ifdef GL_WIN32
5070 #include <windows.h>
5071 #include <GL/gl.h>
5072 #else
5073 #include <GL/gl.h>
5074 #include <X11/Xlib.h>
5075 #include <GL/glx.h>
5076 #endif
5077 int main(void) {
5078 #ifdef GL_WIN32
5079 HDC dc;
5080 wglCreateContext(dc);
5081 #else
5082 glXCreateContext(NULL, NULL, NULL, True);
5083 #endif
5084 glFinish();
5085 return 0;
5088 _gl=no
5089 for _ld_tmp in -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5090 if cc_check $_ld_tmp $_ld_lm ; then
5091 _gl=yes
5092 _gl_x11=yes
5093 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5094 break
5096 done
5097 if cc_check -DGL_WIN32 -lopengl32 ; then
5098 _gl=yes
5099 _gl_win32=yes
5100 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5102 else
5103 _gl=no
5105 if test "$_gl" = yes ; then
5106 def_gl='#define CONFIG_GL 1'
5107 _res_comment="backends:"
5108 if test "$_gl_win32" = yes ; then
5109 def_gl_win32='#define CONFIG_GL_WIN32 1'
5110 _res_comment="$_res_comment win32"
5112 if test "$_gl_x11" = yes ; then
5113 def_gl_x11='#define CONFIG_GL_X11 1'
5114 _res_comment="$_res_comment x11"
5116 _vomodules="opengl $_vomodules"
5117 else
5118 def_gl='#undef CONFIG_GL'
5119 def_gl_win32='#undef CONFIG_GL_WIN32'
5120 def_gl_x11='#undef CONFIG_GL_X11'
5121 _novomodules="opengl $_novomodules"
5123 echores "$_gl"
5126 echocheck "MatrixView"
5127 if test "$_gl" = no ; then
5128 matrixview=no
5130 if test "$matrixview" = yes ; then
5131 _vomodules="matrixview $_vomodules"
5132 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5133 else
5134 _novomodules="matrixview $_novomodules"
5135 def_matrixview='#undef CONFIG_MATRIXVIEW'
5137 echores "$matrixview"
5140 echocheck "PNG support"
5141 if test "$_png" = auto ; then
5142 _png=no
5143 if irix ; then
5144 # Don't check for -lpng on irix since it has its own libpng
5145 # incompatible with the GNU libpng
5146 _res_comment="disabled on irix (not GNU libpng)"
5147 else
5148 cat > $TMPC << EOF
5149 #include <png.h>
5150 #include <string.h>
5151 int main(void) {
5152 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
5153 printf("libpng: %s\n", png_libpng_ver);
5154 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
5157 cc_check -lpng -lz $_ld_lm && _png=yes
5160 echores "$_png"
5161 if test "$_png" = yes ; then
5162 def_png='#define CONFIG_PNG 1'
5163 extra_ldflags="$extra_ldflags -lpng -lz"
5164 else
5165 def_png='#undef CONFIG_PNG'
5168 echocheck "MNG support"
5169 if test "$_mng" = auto ; then
5170 _mng=no
5171 cat > $TMPC << EOF
5172 #include <libmng.h>
5173 int main(void) {
5174 const char * p_ver = mng_version_text();
5175 return !p_ver || p_ver[0] == 0;
5178 if cc_check -lmng -lz $_ld_lm ; then
5179 _mng=yes
5182 echores "$_mng"
5183 if test "$_mng" = yes ; then
5184 def_mng='#define CONFIG_MNG 1'
5185 extra_ldflags="$extra_ldflags -lmng -lz"
5186 else
5187 def_mng='#undef CONFIG_MNG'
5190 echocheck "JPEG support"
5191 if test "$_jpeg" = auto ; then
5192 _jpeg=no
5193 cat > $TMPC << EOF
5194 #include <stdio.h>
5195 #include <stdlib.h>
5196 #include <setjmp.h>
5197 #include <string.h>
5198 #include <jpeglib.h>
5199 int main(void) { return 0; }
5201 cc_check -ljpeg $_ld_lm && _jpeg=yes
5203 echores "$_jpeg"
5205 if test "$_jpeg" = yes ; then
5206 def_jpeg='#define CONFIG_JPEG 1'
5207 _vomodules="jpeg $_vomodules"
5208 extra_ldflags="$extra_ldflags -ljpeg"
5209 else
5210 def_jpeg='#undef CONFIG_JPEG'
5211 _novomodules="jpeg $_novomodules"
5215 echocheck "OpenJPEG (JPEG2000) support"
5216 if test "$libopenjpeg" = auto ; then
5217 libopenjpeg=no
5218 cat > $TMPC << EOF
5219 #define OPJ_STATIC
5220 #include <openjpeg.h>
5221 int main(void) { opj_dparameters_t dec_params; opj_set_default_decoder_parameters(&dec_params); return 0; }
5223 cc_check -lopenjpeg $_ld_lm && libopenjpeg=yes
5225 echores "$libopenjpeg"
5226 if test "$libopenjpeg" = yes ; then
5227 def_libopenjpeg='#define CONFIG_LIBOPENJPEG 1'
5228 extra_ldflags="$extra_ldflags -lopenjpeg"
5229 _libavdecoders="$_libavdecoders LIBOPENJPEG_DECODER"
5230 _libavencoders="$_libavencoders LIBOPENJPEG_ENCODER"
5231 _codecmodules="OpenJPEG $_codecmodules"
5232 else
5233 def_libopenjpeg='#define CONFIG_LIBOPENJPEG 0'
5234 _nocodecmodules="OpenJPEG $_nocodecmodules"
5238 echocheck "PNM support"
5239 if test "$_pnm" = yes; then
5240 def_pnm="#define CONFIG_PNM 1"
5241 _vomodules="pnm $_vomodules"
5242 else
5243 def_pnm="#undef CONFIG_PNM"
5244 _novomodules="pnm $_novomodules"
5246 echores "$_pnm"
5250 echocheck "GIF support"
5251 # This is to appease people who want to force gif support.
5252 # If it is forced to yes, then we still do checks to determine
5253 # which gif library to use.
5254 if test "$_gif" = yes ; then
5255 _force_gif=yes
5256 _gif=auto
5259 if test "$_gif" = auto ; then
5260 _gif=no
5261 cat > $TMPC << EOF
5262 #include <gif_lib.h>
5263 int main(void) { return 0; }
5265 for _ld_gif in "-lungif" "-lgif" ; do
5266 cc_check $_ld_gif && _gif=yes && break
5267 done
5270 # If no library was found, and the user wants support forced,
5271 # then we force it on with libgif, as this is the safest
5272 # assumption IMHO. (libungif & libregif both create symbolic
5273 # links to libgif. We also assume that no x11 support is needed,
5274 # because if you are forcing this, then you _should_ know what
5275 # you are doing. [ Besides, package maintainers should never
5276 # have compiled x11 deps into libungif in the first place. ] )
5277 # </rant>
5278 # --Joey
5279 if test "$_force_gif" = yes && test "$_gif" = no ; then
5280 _gif=yes
5281 _ld_gif="-lgif"
5284 if test "$_gif" = yes ; then
5285 def_gif='#define CONFIG_GIF 1'
5286 _codecmodules="gif $_codecmodules"
5287 _vomodules="gif89a $_vomodules"
5288 _res_comment="old version, some encoding functions disabled"
5289 def_gif_4='#undef CONFIG_GIF_4'
5290 extra_ldflags="$extra_ldflags $_ld_gif"
5292 cat > $TMPC << EOF
5293 #include <signal.h>
5294 #include <gif_lib.h>
5295 void catch() { exit(1); }
5296 int main(void) {
5297 signal(SIGSEGV, catch); // catch segfault
5298 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
5299 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
5300 return 0;
5303 if cc_check "$_ld_gif" ; then
5304 def_gif_4='#define CONFIG_GIF_4 1'
5305 _res_comment=""
5307 else
5308 def_gif='#undef CONFIG_GIF'
5309 def_gif_4='#undef CONFIG_GIF_4'
5310 _novomodules="gif89a $_novomodules"
5311 _nocodecmodules="gif $_nocodecmodules"
5313 echores "$_gif"
5316 case "$_gif" in yes*)
5317 echocheck "broken giflib workaround"
5318 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5320 cat > $TMPC << EOF
5321 #include <gif_lib.h>
5322 int main(void) {
5323 GifFileType gif;
5324 printf("UserData is at address %p\n", gif.UserData);
5325 return 0;
5328 if cc_check "$_ld_gif" ; then
5329 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5330 echores "disabled"
5331 else
5332 echores "enabled"
5335 esac
5338 echocheck "VESA support"
5339 if test "$_vesa" = auto ; then
5340 cat > $TMPC << EOF
5341 #include <vbe.h>
5342 int main(void) { vbeVersion(); return 0; }
5344 _vesa=no
5345 cc_check -lvbe -llrmi && _vesa=yes
5347 if test "$_vesa" = yes ; then
5348 def_vesa='#define CONFIG_VESA 1'
5349 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5350 _vomodules="vesa $_vomodules"
5351 else
5352 def_vesa='#undef CONFIG_VESA'
5353 _novomodules="vesa $_novomodules"
5355 echores "$_vesa"
5357 #################
5358 # VIDEO + AUDIO #
5359 #################
5362 echocheck "SDL"
5363 _inc_tmp=""
5364 _ld_tmp=""
5365 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5366 if test -z "$_sdlconfig" ; then
5367 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5368 _sdlconfig="sdl-config"
5369 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5370 _sdlconfig="sdl11-config"
5371 else
5372 _sdlconfig=false
5375 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5376 cat > $TMPC << EOF
5377 #ifdef CONFIG_SDL_SDL_H
5378 #include <SDL/SDL.h>
5379 #else
5380 #include <SDL.h>
5381 #endif
5382 #ifndef __APPLE__
5383 // we allow SDL hacking our main() only on OSX
5384 #undef main
5385 #endif
5386 int main(int argc, char *argv[]) {
5387 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5388 return 0;
5391 _sdl=no
5392 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5393 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5394 _sdl=yes
5395 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5396 break
5398 done
5399 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5400 _res_comment="using $_sdlconfig"
5401 if cygwin ; then
5402 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5403 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5404 elif mingw32 ; then
5405 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5406 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5407 else
5408 _inc_tmp="$($_sdlconfig --cflags)"
5409 _ld_tmp="$($_sdlconfig --libs)"
5411 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5412 _sdlversion=$($_sdlconfig --version | sed 's/[^0-9]//g')
5413 if test "$_sdlversion" -gt 116 ; then
5414 if test "$_sdlversion" -lt 121 ; then
5415 def_sdlbuggy='#define BUGGY_SDL'
5416 else
5417 def_sdlbuggy='#undef BUGGY_SDL'
5419 _sdl=yes
5424 if test "$_sdl" = yes ; then
5425 def_sdl='#define CONFIG_SDL 1'
5426 extra_cflags="$extra_cflags $_inc_tmp"
5427 libs_mplayer="$libs_mplayer $_ld_tmp"
5428 _vomodules="sdl $_vomodules"
5429 _aomodules="sdl $_aomodules"
5430 else
5431 def_sdl='#undef CONFIG_SDL'
5432 _novomodules="sdl $_novomodules"
5433 _noaomodules="sdl $_noaomodules"
5435 echores "$_sdl"
5438 if os2 ; then
5439 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5440 if test "$_kva" = auto; then
5441 cat > $TMPC << EOF
5442 #include <os2.h>
5443 #include <kva.h>
5444 int main( void ) { return 0; }
5446 _kva=no;
5447 cc_check -lkva && _kva=yes
5449 if test "$_kva" = yes ; then
5450 def_kva='#define CONFIG_KVA 1'
5451 libs_mplayer="$libs_mplayer -lkva"
5452 _vomodules="kva $_vomodules"
5453 else
5454 def_kva='#undef CONFIG_KVA'
5455 _novomodules="kva $_novomodules"
5457 echores "$_kva"
5458 fi #if os2
5461 if win32; then
5463 echocheck "Windows waveout"
5464 if test "$_win32waveout" = auto ; then
5465 cat > $TMPC << EOF
5466 #include <windows.h>
5467 #include <mmsystem.h>
5468 int main(void) { return 0; }
5470 _win32waveout=no
5471 cc_check -lwinmm && _win32waveout=yes
5473 if test "$_win32waveout" = yes ; then
5474 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5475 libs_mplayer="$libs_mplayer -lwinmm"
5476 _aomodules="win32 $_aomodules"
5477 else
5478 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5479 _noaomodules="win32 $_noaomodules"
5481 echores "$_win32waveout"
5483 echocheck "Direct3D"
5484 if test "$_direct3d" = auto ; then
5485 cat > $TMPC << EOF
5486 #include <windows.h>
5487 #include <d3d9.h>
5488 int main(void) { return 0; }
5490 _direct3d=no
5491 cc_check && _direct3d=yes
5493 if test "$_direct3d" = yes ; then
5494 def_direct3d='#define CONFIG_DIRECT3D 1'
5495 _vomodules="direct3d $_vomodules"
5496 else
5497 def_direct3d='#undef CONFIG_DIRECT3D'
5498 _novomodules="direct3d $_novomodules"
5500 echores "$_direct3d"
5502 echocheck "Directx"
5503 if test "$_directx" = auto ; then
5504 cat > $TMPC << EOF
5505 #include <windows.h>
5506 #include <ddraw.h>
5507 #include <dsound.h>
5508 int main(void) { return 0; }
5510 _directx=no
5511 cc_check -lgdi32 && _directx=yes
5513 if test "$_directx" = yes ; then
5514 def_directx='#define CONFIG_DIRECTX 1'
5515 libs_mplayer="$libs_mplayer -lgdi32"
5516 _vomodules="directx $_vomodules"
5517 _aomodules="dsound $_aomodules"
5518 else
5519 def_directx='#undef CONFIG_DIRECTX'
5520 _novomodules="directx $_novomodules"
5521 _noaomodules="dsound $_noaomodules"
5523 echores "$_directx"
5525 fi #if win32; then
5528 echocheck "DXR2"
5529 if test "$_dxr2" = auto; then
5530 _dxr2=no
5531 cat > $TMPC << EOF
5532 #include <dxr2ioctl.h>
5533 int main(void) { return 0; }
5535 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5536 cc_check $_inc_tmp && _dxr2=yes && \
5537 extra_cflags="$extra_cflags $_inc_tmp" && break
5538 done
5540 if test "$_dxr2" = yes; then
5541 def_dxr2='#define CONFIG_DXR2 1'
5542 _aomodules="dxr2 $_aomodules"
5543 _vomodules="dxr2 $_vomodules"
5544 else
5545 def_dxr2='#undef CONFIG_DXR2'
5546 _noaomodules="dxr2 $_noaomodules"
5547 _novomodules="dxr2 $_novomodules"
5549 echores "$_dxr2"
5551 echocheck "DXR3/H+"
5552 if test "$_dxr3" = auto ; then
5553 cat > $TMPC << EOF
5554 #include <linux/em8300.h>
5555 int main(void) { return 0; }
5557 _dxr3=no
5558 cc_check && _dxr3=yes
5560 if test "$_dxr3" = yes ; then
5561 def_dxr3='#define CONFIG_DXR3 1'
5562 _vomodules="dxr3 $_vomodules"
5563 else
5564 def_dxr3='#undef CONFIG_DXR3'
5565 _novomodules="dxr3 $_novomodules"
5567 echores "$_dxr3"
5570 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5571 if test "$_ivtv" = auto ; then
5572 cat > $TMPC << EOF
5573 #include <stdlib.h>
5574 #include <inttypes.h>
5575 #include <linux/types.h>
5576 #include <linux/videodev2.h>
5577 #include <linux/ivtv.h>
5578 #include <sys/ioctl.h>
5579 int main(void) {
5580 struct ivtv_cfg_stop_decode sd;
5581 struct ivtv_cfg_start_decode sd1;
5582 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5583 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5584 return 0; }
5586 _ivtv=no
5587 cc_check && _ivtv=yes
5589 if test "$_ivtv" = yes ; then
5590 def_ivtv='#define CONFIG_IVTV 1'
5591 _vomodules="ivtv $_vomodules"
5592 _aomodules="ivtv $_aomodules"
5593 else
5594 def_ivtv='#undef CONFIG_IVTV'
5595 _novomodules="ivtv $_novomodules"
5596 _noaomodules="ivtv $_noaomodules"
5598 echores "$_ivtv"
5601 echocheck "V4L2 MPEG Decoder"
5602 if test "$_v4l2" = auto ; then
5603 cat > $TMPC << EOF
5604 #include <stdlib.h>
5605 #include <inttypes.h>
5606 #include <linux/types.h>
5607 #include <linux/videodev2.h>
5608 #include <linux/version.h>
5609 int main(void) {
5610 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5611 #error kernel headers too old, need 2.6.22
5612 #endif
5613 struct v4l2_ext_controls ctrls;
5614 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5615 return 0;
5618 _v4l2=no
5619 cc_check && _v4l2=yes
5621 if test "$_v4l2" = yes ; then
5622 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5623 _vomodules="v4l2 $_vomodules"
5624 _aomodules="v4l2 $_aomodules"
5625 else
5626 def_v4l2='#undef CONFIG_V4L2_DECODER'
5627 _novomodules="v4l2 $_novomodules"
5628 _noaomodules="v4l2 $_noaomodules"
5630 echores "$_v4l2"
5634 #########
5635 # AUDIO #
5636 #########
5639 echocheck "OSS Audio"
5640 if test "$_ossaudio" = auto ; then
5641 cat > $TMPC << EOF
5642 #include <sys/ioctl.h>
5643 #include <$_soundcard_header>
5644 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5646 _ossaudio=no
5647 cc_check && _ossaudio=yes
5649 if test "$_ossaudio" = yes ; then
5650 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5651 _aomodules="oss $_aomodules"
5652 if test "$_linux_devfs" = yes; then
5653 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5654 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5655 else
5656 cat > $TMPC << EOF
5657 #include <sys/ioctl.h>
5658 #include <$_soundcard_header>
5659 #ifdef OPEN_SOUND_SYSTEM
5660 int main(void) { return 0; }
5661 #else
5662 #error Not the real thing
5663 #endif
5665 _real_ossaudio=no
5666 cc_check && _real_ossaudio=yes
5667 if test "$_real_ossaudio" = yes; then
5668 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5669 elif netbsd || openbsd ; then
5670 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5671 extra_ldflags="$extra_ldflags -lossaudio"
5672 else
5673 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5675 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5677 else
5678 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5679 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5680 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5681 _noaomodules="oss $_noaomodules"
5683 echores "$_ossaudio"
5686 echocheck "aRts"
5687 if test "$_arts" = auto ; then
5688 _arts=no
5689 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5691 cat > $TMPC << EOF
5692 #include <artsc.h>
5693 int main(void) { return 0; }
5695 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5700 if test "$_arts" = yes ; then
5701 def_arts='#define CONFIG_ARTS 1'
5702 _aomodules="arts $_aomodules"
5703 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5704 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5705 else
5706 _noaomodules="arts $_noaomodules"
5708 echores "$_arts"
5711 echocheck "EsounD"
5712 if test "$_esd" = auto ; then
5713 _esd=no
5714 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5716 cat > $TMPC << EOF
5717 #include <esd.h>
5718 int main(void) { int fd = esd_open_sound("test"); return fd; }
5720 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5724 echores "$_esd"
5726 if test "$_esd" = yes ; then
5727 def_esd='#define CONFIG_ESD 1'
5728 _aomodules="esd $_aomodules"
5729 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5730 extra_cflags="$extra_cflags $(esd-config --cflags)"
5732 echocheck "esd_get_latency()"
5733 cat > $TMPC << EOF
5734 #include <esd.h>
5735 int main(void) { return esd_get_latency(0); }
5737 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5738 echores "$_esd_latency"
5739 else
5740 def_esd='#undef CONFIG_ESD'
5741 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5742 _noaomodules="esd $_noaomodules"
5746 echocheck "NAS"
5747 if test "$_nas" = auto ; then
5748 cat > $TMPC << EOF
5749 #include <audio/audiolib.h>
5750 int main(void) { return 0; }
5752 _nas=no
5753 cc_check $_ld_lm -laudio -lXt && _nas=yes
5755 if test "$_nas" = yes ; then
5756 def_nas='#define CONFIG_NAS 1'
5757 libs_mplayer="$libs_mplayer -laudio -lXt"
5758 _aomodules="nas $_aomodules"
5759 else
5760 _noaomodules="nas $_noaomodules"
5761 def_nas='#undef CONFIG_NAS'
5763 echores "$_nas"
5766 echocheck "pulse"
5767 if test "$_pulse" = auto ; then
5768 _pulse=no
5769 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5771 cat > $TMPC << EOF
5772 #include <pulse/pulseaudio.h>
5773 int main(void) { return 0; }
5775 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5779 echores "$_pulse"
5781 if test "$_pulse" = yes ; then
5782 def_pulse='#define CONFIG_PULSE 1'
5783 _aomodules="pulse $_aomodules"
5784 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5785 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5786 else
5787 def_pulse='#undef CONFIG_PULSE'
5788 _noaomodules="pulse $_noaomodules"
5792 echocheck "JACK"
5793 if test "$_jack" = auto ; then
5794 _jack=yes
5796 cat > $TMPC << EOF
5797 #include <jack/jack.h>
5798 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5800 if cc_check -ljack ; then
5801 libs_mplayer="$libs_mplayer -ljack"
5802 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5803 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5804 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5805 else
5806 _jack=no
5810 if test "$_jack" = yes ; then
5811 def_jack='#define CONFIG_JACK 1'
5812 _aomodules="jack $_aomodules"
5813 else
5814 _noaomodules="jack $_noaomodules"
5816 echores "$_jack"
5818 echocheck "OpenAL"
5819 if test "$_openal" = auto ; then
5820 _openal=no
5821 cat > $TMPC << EOF
5822 #ifdef OPENAL_AL_H
5823 #include <OpenAL/al.h>
5824 #else
5825 #include <AL/al.h>
5826 #endif
5827 int main(void) {
5828 alSourceQueueBuffers(0, 0, 0);
5829 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5830 return 0;
5833 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5834 cc_check $I && _openal=yes && break
5835 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5836 done
5837 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5839 if test "$_openal" = yes ; then
5840 def_openal='#define CONFIG_OPENAL 1'
5841 _aomodules="openal $_aomodules"
5842 else
5843 _noaomodules="openal $_noaomodules"
5845 echores "$_openal"
5847 echocheck "ALSA audio"
5848 if test "$_alloca" != yes ; then
5849 _alsa=no
5850 _res_comment="alloca missing"
5852 if test "$_alsa" != no ; then
5853 _alsa=no
5854 cat > $TMPC << EOF
5855 #include <sys/time.h>
5856 #include <sys/asoundlib.h>
5857 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5858 #error "alsa version != 0.5.x"
5859 #endif
5860 int main(void) { return 0; }
5862 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5864 cat > $TMPC << EOF
5865 #include <sys/time.h>
5866 #include <sys/asoundlib.h>
5867 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5868 #error "alsa version != 0.9.x"
5869 #endif
5870 int main(void) { return 0; }
5872 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5873 cat > $TMPC << EOF
5874 #include <sys/time.h>
5875 #include <alsa/asoundlib.h>
5876 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5877 #error "alsa version != 0.9.x"
5878 #endif
5879 int main(void) { return 0; }
5881 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5883 cat > $TMPC << EOF
5884 #include <sys/time.h>
5885 #include <sys/asoundlib.h>
5886 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5887 #error "alsa version != 1.0.x"
5888 #endif
5889 int main(void) { return 0; }
5891 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5892 cat > $TMPC << EOF
5893 #include <sys/time.h>
5894 #include <alsa/asoundlib.h>
5895 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5896 #error "alsa version != 1.0.x"
5897 #endif
5898 int main(void) { return 0; }
5900 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5902 def_alsa='#undef CONFIG_ALSA'
5903 def_alsa5='#undef CONFIG_ALSA5'
5904 def_alsa9='#undef CONFIG_ALSA9'
5905 def_alsa1x='#undef CONFIG_ALSA1X'
5906 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5907 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5908 if test "$_alsaver" ; then
5909 _alsa=yes
5910 if test "$_alsaver" = '0.5.x' ; then
5911 _alsa5=yes
5912 _aomodules="alsa5 $_aomodules"
5913 def_alsa5='#define CONFIG_ALSA5 1'
5914 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5915 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5916 elif test "$_alsaver" = '0.9.x-sys' ; then
5917 _alsa9=yes
5918 _aomodules="alsa $_aomodules"
5919 def_alsa='#define CONFIG_ALSA 1'
5920 def_alsa9='#define CONFIG_ALSA9 1'
5921 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5922 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5923 elif test "$_alsaver" = '0.9.x-alsa' ; then
5924 _alsa9=yes
5925 _aomodules="alsa $_aomodules"
5926 def_alsa='#define CONFIG_ALSA 1'
5927 def_alsa9='#define CONFIG_ALSA9 1'
5928 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5929 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5930 elif test "$_alsaver" = '1.0.x-sys' ; then
5931 _alsa1x=yes
5932 _aomodules="alsa $_aomodules"
5933 def_alsa='#define CONFIG_ALSA 1'
5934 def_alsa1x="#define CONFIG_ALSA1X 1"
5935 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5936 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5937 elif test "$_alsaver" = '1.0.x-alsa' ; then
5938 _alsa1x=yes
5939 _aomodules="alsa $_aomodules"
5940 def_alsa='#define CONFIG_ALSA 1'
5941 def_alsa1x="#define CONFIG_ALSA1X 1"
5942 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5943 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5944 else
5945 _alsa=no
5946 _res_comment="unknown version"
5948 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5949 else
5950 _noaomodules="alsa $_noaomodules"
5952 echores "$_alsa"
5955 echocheck "Sun audio"
5956 if test "$_sunaudio" = auto ; then
5957 cat > $TMPC << EOF
5958 #include <sys/types.h>
5959 #include <sys/audioio.h>
5960 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5962 _sunaudio=no
5963 cc_check && _sunaudio=yes
5965 if test "$_sunaudio" = yes ; then
5966 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5967 _aomodules="sun $_aomodules"
5968 else
5969 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5970 _noaomodules="sun $_noaomodules"
5972 echores "$_sunaudio"
5975 def_mlib='#define CONFIG_MLIB 0'
5976 if sunos; then
5977 echocheck "Sun mediaLib"
5978 if test "$_mlib" = auto ; then
5979 _mlib=no
5980 cat > $TMPC << EOF
5981 #include <mlib.h>
5982 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5984 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5986 echores "$_mlib"
5987 fi #if sunos
5990 if darwin; then
5991 echocheck "CoreAudio"
5992 if test "$_coreaudio" = auto ; then
5993 cat > $TMPC <<EOF
5994 #include <CoreAudio/CoreAudio.h>
5995 #include <AudioToolbox/AudioToolbox.h>
5996 #include <AudioUnit/AudioUnit.h>
5997 int main(void) { return 0; }
5999 _coreaudio=no
6000 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
6002 if test "$_coreaudio" = yes ; then
6003 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
6004 def_coreaudio='#define CONFIG_COREAUDIO 1'
6005 _aomodules="coreaudio $_aomodules"
6006 else
6007 def_coreaudio='#undef CONFIG_COREAUDIO'
6008 _noaomodules="coreaudio $_noaomodules"
6010 echores $_coreaudio
6011 fi #if darwin
6014 if irix; then
6015 echocheck "SGI audio"
6016 if test "$_sgiaudio" = auto ; then
6017 # check for SGI audio
6018 cat > $TMPC << EOF
6019 #include <dmedia/audio.h>
6020 int main(void) { return 0; }
6022 _sgiaudio=no
6023 cc_check && _sgiaudio=yes
6025 if test "$_sgiaudio" = "yes" ; then
6026 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
6027 libs_mplayer="$libs_mplayer -laudio"
6028 _aomodules="sgi $_aomodules"
6029 else
6030 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
6031 _noaomodules="sgi $_noaomodules"
6033 echores "$_sgiaudio"
6034 fi #if irix
6037 if os2 ; then
6038 echocheck "KAI (UNIAUD/DART)"
6039 if test "$_kai" = auto; then
6040 cat > $TMPC << EOF
6041 #include <os2.h>
6042 #include <kai.h>
6043 int main(void) { return 0; }
6045 _kai=no;
6046 cc_check -lkai && _kai=yes
6048 if test "$_kai" = yes ; then
6049 def_kai='#define CONFIG_KAI 1'
6050 libs_mplayer="$libs_mplayer -lkai"
6051 _aomodules="kai $_aomodules"
6052 else
6053 def_kai='#undef CONFIG_KAI'
6054 _noaomodules="kai $_noaomodules"
6056 echores "$_kai"
6058 echocheck "DART"
6059 if test "$_dart" = auto; then
6060 cat > $TMPC << EOF
6061 #include <os2.h>
6062 #include <dart.h>
6063 int main( void ) { return 0; }
6065 _dart=no;
6066 cc_check -ldart && _dart=yes
6068 if test "$_dart" = yes ; then
6069 def_dart='#define CONFIG_DART 1'
6070 libs_mplayer="$libs_mplayer -ldart"
6071 _aomodules="dart $_aomodules"
6072 else
6073 def_dart='#undef CONFIG_DART'
6074 _noaomodules="dart $_noaomodules"
6076 echores "$_dart"
6077 fi #if os2
6080 # set default CD/DVD devices
6081 if win32 || os2 ; then
6082 default_cdrom_device="D:"
6083 elif darwin ; then
6084 default_cdrom_device="/dev/disk1"
6085 elif dragonfly ; then
6086 default_cdrom_device="/dev/cd0"
6087 elif freebsd ; then
6088 default_cdrom_device="/dev/acd0"
6089 elif openbsd ; then
6090 default_cdrom_device="/dev/rcd0a"
6091 elif sunos ; then
6092 default_cdrom_device="/vol/dev/aliases/cdrom0"
6093 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
6094 # file system and the volfs service.
6095 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
6096 elif amigaos ; then
6097 default_cdrom_device="a1ide.device:2"
6098 else
6099 default_cdrom_device="/dev/cdrom"
6102 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
6103 default_dvd_device=$default_cdrom_device
6104 elif darwin ; then
6105 default_dvd_device="/dev/rdiskN"
6106 else
6107 default_dvd_device="/dev/dvd"
6111 echocheck "VCD support"
6112 if test "$_vcd" = auto; then
6113 _vcd=no
6114 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
6115 _vcd=yes
6116 elif mingw32; then
6117 cat > $TMPC << EOF
6118 #include <ddk/ntddcdrm.h>
6119 int main(void) { return 0; }
6121 cc_check && _vcd=yes
6124 if test "$_vcd" = yes; then
6125 _inputmodules="vcd $_inputmodules"
6126 def_vcd='#define CONFIG_VCD 1'
6127 else
6128 def_vcd='#undef CONFIG_VCD'
6129 _noinputmodules="vcd $_noinputmodules"
6130 _res_comment="not supported on this OS"
6132 echores "$_vcd"
6136 echocheck "dvdread"
6137 if test "$_dvdread_internal" = auto ; then
6138 _dvdread_internal=no
6139 _dvdread=no
6140 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
6141 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
6142 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
6143 || darwin || win32 || os2; then
6144 _dvdread_internal=yes
6145 _dvdread=yes
6146 extra_cflags="-Ilibdvdread4 $extra_cflags"
6148 elif test "$_dvdread" = auto ; then
6149 _dvdread=no
6150 if test "$_dl" = yes; then
6151 cat > $TMPC << EOF
6152 #include <inttypes.h>
6153 #include <dvdread/dvd_reader.h>
6154 #include <dvdread/ifo_types.h>
6155 #include <dvdread/ifo_read.h>
6156 #include <dvdread/nav_read.h>
6157 int main(void) { return 0; }
6159 _dvdreadcflags=$($_dvdreadconfig --cflags)
6160 _dvdreadlibs=$($_dvdreadconfig --libs)
6161 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
6162 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
6163 _dvdread=yes
6164 extra_cflags="$extra_cflags $_dvdreadcflags"
6165 extra_ldflags="$extra_ldflags $_dvdreadlibs"
6166 _res_comment="external"
6171 if test "$_dvdread_internal" = yes; then
6172 def_dvdread='#define CONFIG_DVDREAD 1'
6173 _inputmodules="dvdread(internal) $_inputmodules"
6174 _largefiles=yes
6175 _res_comment="internal"
6176 elif test "$_dvdread" = yes; then
6177 def_dvdread='#define CONFIG_DVDREAD 1'
6178 _largefiles=yes
6179 extra_ldflags="$extra_ldflags -ldvdread"
6180 _inputmodules="dvdread(external) $_inputmodules"
6181 _res_comment="external"
6182 else
6183 def_dvdread='#undef CONFIG_DVDREAD'
6184 _noinputmodules="dvdread $_noinputmodules"
6186 echores "$_dvdread"
6189 echocheck "internal libdvdcss"
6190 if test "$_libdvdcss_internal" = auto ; then
6191 _libdvdcss_internal=no
6192 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
6193 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
6195 if test "$_libdvdcss_internal" = yes ; then
6196 if linux || netbsd || openbsd || bsdos ; then
6197 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
6198 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
6199 elif freebsd || dragonfly ; then
6200 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
6201 elif darwin ; then
6202 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
6203 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
6204 elif cygwin ; then
6205 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
6206 elif beos ; then
6207 cflags_libdvdcss="-DSYS_BEOS"
6208 elif os2 ; then
6209 cflags_libdvdcss="-DSYS_OS2"
6211 cflags_libdvdcss_dvdread="-Ilibdvdcss"
6212 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
6213 _inputmodules="libdvdcss(internal) $_inputmodules"
6214 _largefiles=yes
6215 else
6216 _noinputmodules="libdvdcss(internal) $_noinputmodules"
6218 echores "$_libdvdcss_internal"
6221 echocheck "cdparanoia"
6222 if test "$_cdparanoia" = auto ; then
6223 cat > $TMPC <<EOF
6224 #include <cdda_interface.h>
6225 #include <cdda_paranoia.h>
6226 // This need a better test. How ?
6227 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
6229 _cdparanoia=no
6230 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
6231 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
6232 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
6233 done
6235 if test "$_cdparanoia" = yes ; then
6236 _cdda='yes'
6237 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
6238 openbsd && extra_ldflags="$extra_ldflags -lutil"
6240 echores "$_cdparanoia"
6243 echocheck "libcdio"
6244 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
6245 cat > $TMPC << EOF
6246 #include <stdio.h>
6247 #include <cdio/version.h>
6248 #include <cdio/cdda.h>
6249 #include <cdio/paranoia.h>
6250 int main(void) {
6251 void *test = cdda_verbose_set;
6252 printf("%s\n", CDIO_VERSION);
6253 return test == (void *)1;
6256 _libcdio=no
6257 for _ld_tmp in "" "-lwinmm" ; do
6258 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
6259 cc_check $_ld_tmp $_ld_lm \
6260 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6261 done
6262 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6263 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6264 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6265 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6266 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6269 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6270 _cdda='yes'
6271 def_libcdio='#define CONFIG_LIBCDIO 1'
6272 def_havelibcdio='yes'
6273 else
6274 if test "$_cdparanoia" = yes ; then
6275 _res_comment="using cdparanoia"
6277 def_libcdio='#undef CONFIG_LIBCDIO'
6278 def_havelibcdio='no'
6280 echores "$_libcdio"
6282 if test "$_cdda" = yes ; then
6283 test $_cddb = auto && test $_network = yes && _cddb=yes
6284 def_cdparanoia='#define CONFIG_CDDA 1'
6285 _inputmodules="cdda $_inputmodules"
6286 else
6287 def_cdparanoia='#undef CONFIG_CDDA'
6288 _noinputmodules="cdda $_noinputmodules"
6291 if test "$_cddb" = yes ; then
6292 def_cddb='#define CONFIG_CDDB 1'
6293 _inputmodules="cddb $_inputmodules"
6294 else
6295 _cddb=no
6296 def_cddb='#undef CONFIG_CDDB'
6297 _noinputmodules="cddb $_noinputmodules"
6300 echocheck "bitmap font support"
6301 if test "$_bitmap_font" = yes ; then
6302 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6303 else
6304 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6306 echores "$_bitmap_font"
6309 echocheck "freetype >= 2.0.9"
6311 # freetype depends on iconv
6312 if test "$_iconv" = no ; then
6313 _freetype=no
6314 _res_comment="iconv support needed"
6317 if test "$_freetype" = auto ; then
6318 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6319 cat > $TMPC << EOF
6320 #include <stdio.h>
6321 #include <ft2build.h>
6322 #include FT_FREETYPE_H
6323 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6324 #error "Need FreeType 2.0.9 or newer"
6325 #endif
6326 int main(void) {
6327 FT_Library library;
6328 FT_Int major=-1,minor=-1,patch=-1;
6329 int err=FT_Init_FreeType(&library);
6330 return 0;
6333 _freetype=no
6334 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6335 else
6336 _freetype=no
6339 if test "$_freetype" = yes ; then
6340 def_freetype='#define CONFIG_FREETYPE 1'
6341 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6342 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6343 else
6344 def_freetype='#undef CONFIG_FREETYPE'
6346 echores "$_freetype"
6348 if test "$_freetype" = no ; then
6349 _fontconfig=no
6350 _res_comment="FreeType support needed"
6352 echocheck "fontconfig"
6353 if test "$_fontconfig" = auto ; then
6354 cat > $TMPC << EOF
6355 #include <stdio.h>
6356 #include <stdlib.h>
6357 #include <fontconfig/fontconfig.h>
6358 #if FC_VERSION < 20402
6359 #error At least version 2.4.2 of fontconfig required
6360 #endif
6361 int main(void) {
6362 int err = FcInit();
6363 if (err == FcFalse) {
6364 printf("Couldn't initialize fontconfig lib\n");
6365 exit(err);
6367 return 0;
6370 _fontconfig=no
6371 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6372 _ld_tmp="-lfontconfig $_ld_tmp"
6373 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6374 done
6375 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6376 _inc_tmp=$($_pkg_config --cflags fontconfig)
6377 _ld_tmp=$($_pkg_config --libs fontconfig)
6378 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6379 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6382 if test "$_fontconfig" = yes ; then
6383 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6384 else
6385 def_fontconfig='#undef CONFIG_FONTCONFIG'
6387 echores "$_fontconfig"
6390 echocheck "SSA/ASS support"
6391 # libass depends on FreeType
6392 if test "$_freetype" = no ; then
6393 _ass=no
6394 ass_internal=no
6395 _res_comment="FreeType support needed"
6398 if test "$_ass" = auto ; then
6399 cat > $TMPC << EOF
6400 #include <ft2build.h>
6401 #include FT_FREETYPE_H
6402 #if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 2) || ((FREETYPE_MINOR == 2) && (FREETYPE_PATCH < 1)))
6403 #error "Need FreeType 2.2.1 or newer"
6404 #endif
6405 int main(void) { return 0; }
6407 _ass=no
6408 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _ass=yes
6409 if test "$_ass" = no ; then
6410 ass_internal=no
6411 _res_comment="FreeType >= 2.2.1 needed"
6412 elif test "$ass_internal" = no ; then
6413 _res_comment="external"
6414 extra_ldflags="$extra_ldflags -lass"
6417 if test "$_ass" = yes ; then
6418 def_ass='#define CONFIG_ASS 1'
6419 else
6420 def_ass='#undef CONFIG_ASS'
6422 if test "$ass_internal" = yes ; then
6423 def_ass_internal='#define CONFIG_ASS_INTERNAL 1'
6424 else
6425 def_ass_internal='#undef CONFIG_ASS_INTERNAL'
6427 echores "$_ass"
6430 echocheck "fribidi with charsets"
6431 _inc_tmp=""
6432 _ld_tmp=""
6433 if test "$_fribidi" = auto ; then
6434 cat > $TMPC << EOF
6435 #include <stdio.h>
6436 #include <stdlib.h>
6437 /* workaround for fribidi 0.10.4 and below */
6438 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6439 #include <fribidi/fribidi.h>
6440 int main(void) {
6441 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6442 printf("Fribidi headers are not consistents with the library!\n");
6443 exit(1);
6445 return 0;
6448 _fribidi=no
6449 _inc_tmp=""
6450 _ld_tmp="-lfribidi"
6451 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6452 if $_fribidiconfig --version > /dev/null 2>&1 &&
6453 test "$_fribidi" = no ; then
6454 _inc_tmp="$($_fribidiconfig --cflags)"
6455 _ld_tmp="$($_fribidiconfig --libs)"
6456 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6459 if test "$_fribidi" = yes ; then
6460 def_fribidi='#define CONFIG_FRIBIDI 1'
6461 extra_cflags="$extra_cflags $_inc_tmp"
6462 extra_ldflags="$extra_ldflags $_ld_tmp"
6463 else
6464 def_fribidi='#undef CONFIG_FRIBIDI'
6466 echores "$_fribidi"
6469 echocheck "ENCA"
6470 if test "$_enca" = auto ; then
6471 cat > $TMPC << EOF
6472 #include <sys/types.h>
6473 #include <enca.h>
6474 int main(void) {
6475 const char **langs;
6476 size_t langcnt;
6477 langs = enca_get_languages(&langcnt);
6478 return 0;
6481 _enca=no
6482 cc_check -lenca $_ld_lm && _enca=yes
6484 if test "$_enca" = yes ; then
6485 def_enca='#define CONFIG_ENCA 1'
6486 extra_ldflags="$extra_ldflags -lenca"
6487 else
6488 def_enca='#undef CONFIG_ENCA'
6490 echores "$_enca"
6493 echocheck "zlib"
6494 cat > $TMPC << EOF
6495 #include <zlib.h>
6496 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6498 _zlib=no
6499 cc_check -lz && _zlib=yes
6500 if test "$_zlib" = yes ; then
6501 def_zlib='#define CONFIG_ZLIB 1'
6502 extra_ldflags="$extra_ldflags -lz"
6503 else
6504 def_zlib='#define CONFIG_ZLIB 0'
6505 _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//)
6506 _libavencoders=$(echo $_libavencoders | sed -e s/FLASHSV_ENCODER// -e s/PNG_ENCODER// -e s/ZMBV_ENCODER// -e s/ZLIB_ENCODER//)
6508 echores "$_zlib"
6511 echocheck "bzlib"
6512 bzlib=no
6513 def_bzlib='#define CONFIG_BZLIB 0'
6514 cat > $TMPC << EOF
6515 #include <bzlib.h>
6516 int main(void) { BZ2_bzlibVersion(); return 0; }
6518 cc_check -lbz2 && bzlib=yes
6519 if test "$bzlib" = yes ; then
6520 def_bzlib='#define CONFIG_BZLIB 1'
6521 extra_ldflags="$extra_ldflags -lbz2"
6523 echores "$bzlib"
6526 echocheck "RTC"
6527 if test "$_rtc" = auto ; then
6528 cat > $TMPC << EOF
6529 #include <sys/ioctl.h>
6530 #ifdef __linux__
6531 #include <linux/rtc.h>
6532 #else
6533 #include <rtc.h>
6534 #define RTC_PIE_ON RTCIO_PIE_ON
6535 #endif
6536 int main(void) { return RTC_PIE_ON; }
6538 _rtc=no
6539 cc_check && _rtc=yes
6540 ppc && _rtc=no
6542 if test "$_rtc" = yes ; then
6543 def_rtc='#define HAVE_RTC 1'
6544 else
6545 def_rtc='#undef HAVE_RTC'
6547 echores "$_rtc"
6550 echocheck "liblzo2 support"
6551 if test "$_liblzo" = auto ; then
6552 _liblzo=no
6553 cat > $TMPC << EOF
6554 #include <lzo/lzo1x.h>
6555 int main(void) { lzo_init();return 0; }
6557 cc_check -llzo2 && _liblzo=yes
6559 if test "$_liblzo" = yes ; then
6560 def_liblzo='#define CONFIG_LIBLZO 1'
6561 extra_ldflags="$extra_ldflags -llzo2"
6562 _codecmodules="liblzo $_codecmodules"
6563 else
6564 def_liblzo='#undef CONFIG_LIBLZO'
6565 _nocodecmodules="liblzo $_nocodecmodules"
6567 echores "$_liblzo"
6570 echocheck "mad support"
6571 if test "$_mad" = auto ; then
6572 _mad=no
6573 cat > $TMPC << EOF
6574 #include <mad.h>
6575 int main(void) { return 0; }
6577 cc_check -lmad && _mad=yes
6579 if test "$_mad" = yes ; then
6580 def_mad='#define CONFIG_LIBMAD 1'
6581 extra_ldflags="$extra_ldflags -lmad"
6582 _codecmodules="libmad $_codecmodules"
6583 else
6584 def_mad='#undef CONFIG_LIBMAD'
6585 _nocodecmodules="libmad $_nocodecmodules"
6587 echores "$_mad"
6589 echocheck "Twolame"
6590 if test "$_twolame" = auto ; then
6591 cat > $TMPC <<EOF
6592 #include <twolame.h>
6593 int main(void) { twolame_init(); return 0; }
6595 _twolame=no
6596 cc_check -ltwolame $_ld_lm && _twolame=yes
6598 if test "$_twolame" = yes ; then
6599 def_twolame='#define CONFIG_TWOLAME 1'
6600 libs_mencoder="$libs_mencoder -ltwolame"
6601 _codecmodules="twolame $_codecmodules"
6602 else
6603 def_twolame='#undef CONFIG_TWOLAME'
6604 _nocodecmodules="twolame $_nocodecmodules"
6606 echores "$_twolame"
6608 echocheck "Toolame"
6609 if test "$_toolame" = auto ; then
6610 _toolame=no
6611 if test "$_twolame" = yes ; then
6612 _res_comment="disabled by twolame"
6613 else
6614 cat > $TMPC <<EOF
6615 #include <toolame.h>
6616 int main(void) { toolame_init(); return 0; }
6618 cc_check -ltoolame $_ld_lm && _toolame=yes
6621 if test "$_toolame" = yes ; then
6622 def_toolame='#define CONFIG_TOOLAME 1'
6623 libs_mencoder="$libs_mencoder -ltoolame"
6624 _codecmodules="toolame $_codecmodules"
6625 else
6626 def_toolame='#undef CONFIG_TOOLAME'
6627 _nocodecmodules="toolame $_nocodecmodules"
6629 if test "$_toolamedir" ; then
6630 _res_comment="using $_toolamedir"
6632 echores "$_toolame"
6634 echocheck "OggVorbis support"
6635 if test "$_tremor_internal" = yes; then
6636 _libvorbis=no
6637 elif test "$_tremor" = auto; then
6638 _tremor=no
6639 cat > $TMPC << EOF
6640 #include <tremor/ivorbiscodec.h>
6641 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6643 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6645 if test "$_libvorbis" = auto; then
6646 _libvorbis=no
6647 cat > $TMPC << EOF
6648 #include <vorbis/codec.h>
6649 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6651 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6653 if test "$_tremor_internal" = yes ; then
6654 _vorbis=yes
6655 def_vorbis='#define CONFIG_OGGVORBIS 1'
6656 def_tremor='#define CONFIG_TREMOR 1'
6657 _codecmodules="tremor(internal) $_codecmodules"
6658 _res_comment="internal Tremor"
6659 if test "$_tremor_low" = yes ; then
6660 cflags_tremor_low="-D_LOW_ACCURACY_"
6661 _res_comment="internal low accuracy Tremor"
6663 elif test "$_tremor" = yes ; then
6664 _vorbis=yes
6665 def_vorbis='#define CONFIG_OGGVORBIS 1'
6666 def_tremor='#define CONFIG_TREMOR 1'
6667 _codecmodules="tremor(external) $_codecmodules"
6668 _res_comment="external Tremor"
6669 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6670 elif test "$_libvorbis" = yes ; then
6671 _vorbis=yes
6672 def_vorbis='#define CONFIG_OGGVORBIS 1'
6673 _codecmodules="libvorbis $_codecmodules"
6674 _res_comment="libvorbis"
6675 extra_ldflags="$extra_ldflags -lvorbis -logg"
6676 else
6677 _vorbis=no
6678 _nocodecmodules="libvorbis $_nocodecmodules"
6680 echores "$_vorbis"
6682 echocheck "libspeex (version >= 1.1 required)"
6683 if test "$_speex" = auto ; then
6684 _speex=no
6685 cat > $TMPC << EOF
6686 #include <speex/speex.h>
6687 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6689 cc_check -lspeex $_ld_lm && _speex=yes
6691 if test "$_speex" = yes ; then
6692 def_speex='#define CONFIG_SPEEX 1'
6693 extra_ldflags="$extra_ldflags -lspeex"
6694 _codecmodules="speex $_codecmodules"
6695 else
6696 def_speex='#undef CONFIG_SPEEX'
6697 _nocodecmodules="speex $_nocodecmodules"
6699 echores "$_speex"
6701 echocheck "OggTheora support"
6702 if test "$_theora" = auto ; then
6703 _theora=no
6704 cat > $TMPC << EOF
6705 #include <theora/theora.h>
6706 #include <string.h>
6707 int main(void) {
6708 /* Theora is in flux, make sure that all interface routines and datatypes
6709 * exist and work the way we expect it, so we don't break MPlayer. */
6710 ogg_packet op;
6711 theora_comment tc;
6712 theora_info inf;
6713 theora_state st;
6714 yuv_buffer yuv;
6715 int r;
6716 double t;
6718 theora_info_init(&inf);
6719 theora_comment_init(&tc);
6721 return 0;
6723 /* we don't want to execute this kind of nonsense; just for making sure
6724 * that compilation works... */
6725 memset(&op, 0, sizeof(op));
6726 r = theora_decode_header(&inf, &tc, &op);
6727 r = theora_decode_init(&st, &inf);
6728 t = theora_granule_time(&st, op.granulepos);
6729 r = theora_decode_packetin(&st, &op);
6730 r = theora_decode_YUVout(&st, &yuv);
6731 theora_clear(&st);
6733 return 0;
6736 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6737 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6738 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6739 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6740 if test _theora = no; then
6741 _ld_theora="-ltheora -logg"
6742 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6744 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6745 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6746 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6747 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6748 extra_ldflags="$extra_ldflags $_ld_theora" &&
6749 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6750 if test _theora = no; then
6751 _ld_theora="-ltheora -logg"
6752 cc_check tremor/bitwise.c $_ld_theora &&
6753 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6757 if test "$_theora" = yes ; then
6758 def_theora='#define CONFIG_OGGTHEORA 1'
6759 _codecmodules="libtheora $_codecmodules"
6760 # when --enable-theora is forced, we'd better provide a probably sane
6761 # $_ld_theora than nothing
6762 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6763 else
6764 def_theora='#undef CONFIG_OGGTHEORA'
6765 _nocodecmodules="libtheora $_nocodecmodules"
6767 echores "$_theora"
6769 echocheck "internal mp3lib support"
6770 if test "$_mp3lib" = auto ; then
6771 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6773 if test "$_mp3lib" = yes ; then
6774 def_mp3lib='#define CONFIG_MP3LIB 1'
6775 _codecmodules="mp3lib(internal) $_codecmodules"
6776 else
6777 def_mp3lib='#undef CONFIG_MP3LIB'
6778 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6780 echores "$_mp3lib"
6782 echocheck "liba52 support"
6783 if test "$_liba52_internal" = auto ; then
6784 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
6786 def_liba52='#undef CONFIG_LIBA52'
6787 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6788 if test "$_liba52_internal" = yes ; then
6789 _liba52=yes
6790 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6791 _res_comment="internal"
6792 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6793 _liba52=no
6794 cat > $TMPC << EOF
6795 #include <inttypes.h>
6796 #include <a52dec/a52.h>
6797 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6799 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6801 if test "$_liba52" = yes ; then
6802 def_liba52='#define CONFIG_LIBA52 1'
6803 _codecmodules="liba52($_res_comment) $_codecmodules"
6804 else
6805 _nocodecmodules="liba52 $_nocodecmodules"
6807 echores "$_liba52"
6809 echocheck "internal libmpeg2 support"
6810 if test "$_libmpeg2" = auto ; then
6811 _libmpeg2=yes
6812 if alpha && test cc_vendor=gnu; then
6813 case $cc_version in
6814 2*|3.0*|3.1*) # cannot compile MVI instructions
6815 _libmpeg2=no
6816 _res_comment="broken gcc"
6818 esac
6821 if test "$_libmpeg2" = yes ; then
6822 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6823 _codecmodules="libmpeg2(internal) $_codecmodules"
6824 else
6825 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6826 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6828 echores "$_libmpeg2"
6830 echocheck "libdca support"
6831 if test "$_libdca" = auto ; then
6832 _libdca=no
6833 cat > $TMPC << EOF
6834 #include <inttypes.h>
6835 #include <dts.h>
6836 int main(void) { dts_init(0); return 0; }
6838 for _ld_dca in -ldca -ldts ; do
6839 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6840 && _libdca=yes && break
6841 done
6843 if test "$_libdca" = yes ; then
6844 def_libdca='#define CONFIG_LIBDCA 1'
6845 _codecmodules="libdca $_codecmodules"
6846 else
6847 def_libdca='#undef CONFIG_LIBDCA'
6848 _nocodecmodules="libdca $_nocodecmodules"
6850 echores "$_libdca"
6852 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6853 if test "$_musepack" = auto ; then
6854 _musepack=no
6855 cat > $TMPC << EOF
6856 #include <stddef.h>
6857 #include <mpcdec/mpcdec.h>
6858 int main(void) {
6859 mpc_streaminfo info;
6860 mpc_decoder decoder;
6861 mpc_decoder_set_streaminfo(&decoder, &info);
6862 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6863 return 0;
6866 cc_check -lmpcdec $_ld_lm && _musepack=yes
6868 if test "$_musepack" = yes ; then
6869 def_musepack='#define CONFIG_MUSEPACK 1'
6870 extra_ldflags="$extra_ldflags -lmpcdec"
6871 _codecmodules="musepack $_codecmodules"
6872 else
6873 def_musepack='#undef CONFIG_MUSEPACK'
6874 _nocodecmodules="musepack $_nocodecmodules"
6876 echores "$_musepack"
6879 echocheck "FAAC support"
6880 if test "$_faac" = auto ; then
6881 cat > $TMPC <<EOF
6882 #include <inttypes.h>
6883 #include <faac.h>
6884 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6886 _faac=no
6887 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6888 cc_check -O4 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6889 done
6891 if test "$_faac" = yes ; then
6892 def_faac="#define CONFIG_FAAC 1"
6893 test "$_faac_lavc" = auto && _faac_lavc=yes
6894 if test "$_faac_lavc" = yes ; then
6895 def_faac_lavc="#define CONFIG_LIBFAAC 1"
6896 libs_mplayer="$libs_mplayer $_ld_faac"
6897 _libavencoders="$_libavencoders LIBFAAC_ENCODER"
6899 _codecmodules="faac $_codecmodules"
6900 else
6901 _faac_lavc=no
6902 def_faac="#undef CONFIG_FAAC"
6903 def_faac_lavc="#define CONFIG_LIBFAAC 0"
6904 _nocodecmodules="faac $_nocodecmodules"
6906 _res_comment="in libavcodec: $_faac_lavc"
6907 echores "$_faac"
6910 echocheck "FAAD2 support"
6911 if test "$_faad_internal" = auto ; then
6912 if x86_32 && test cc_vendor=gnu; then
6913 case $cc_version in
6914 3.1*|3.2) # ICE/insn with these versions
6915 _faad_internal=no
6916 _res_comment="broken gcc"
6919 _faad=yes
6920 _faad_internal=yes
6922 esac
6923 else
6924 _faad=yes
6925 _faad_internal=yes
6928 if test "$_faad" = auto ; then
6929 cat > $TMPC << EOF
6930 #include <faad.h>
6931 #ifndef FAAD_MIN_STREAMSIZE
6932 #error Too old version
6933 #endif
6934 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6935 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6937 cc_check -lfaad $_ld_lm && _faad=yes
6940 def_faad='#undef CONFIG_FAAD'
6941 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6942 if test "$_faad_internal" = yes ; then
6943 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6944 _res_comment="internal floating-point"
6945 if test "$_faad_fixed" = yes ; then
6946 # The FIXED_POINT implementation of FAAD2 improves performance
6947 # on some platforms, especially for SBR files.
6948 cflags_faad_fixed="-DFIXED_POINT"
6949 _res_comment="internal fixed-point"
6951 elif test "$_faad" = yes ; then
6952 extra_ldflags="$extra_ldflags -lfaad"
6955 if test "$_faad" = yes ; then
6956 def_faad='#define CONFIG_FAAD 1'
6957 if test "$_faad_internal" = yes ; then
6958 _codecmodules="faad2(internal) $_codecmodules"
6959 else
6960 _codecmodules="faad2 $_codecmodules"
6962 else
6963 _faad=no
6964 _nocodecmodules="faad2 $_nocodecmodules"
6966 echores "$_faad"
6969 echocheck "LADSPA plugin support"
6970 if test "$_ladspa" = auto ; then
6971 cat > $TMPC <<EOF
6972 #include <stdio.h>
6973 #include <ladspa.h>
6974 int main(void) {
6975 const LADSPA_Descriptor *ld = NULL;
6976 return 0;
6979 _ladspa=no
6980 cc_check && _ladspa=yes
6982 if test "$_ladspa" = yes; then
6983 def_ladspa="#define CONFIG_LADSPA 1"
6984 else
6985 def_ladspa="#undef CONFIG_LADSPA"
6987 echores "$_ladspa"
6990 echocheck "libbs2b audio filter support"
6991 if test "$_libbs2b" = auto ; then
6992 cat > $TMPC <<EOF
6993 #include <bs2b.h>
6994 #if BS2B_VERSION_MAJOR < 3
6995 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6996 #endif
6997 int main(void) {
6998 t_bs2bdp filter;
6999 filter=bs2b_open();
7000 bs2b_close(filter);
7001 return 0;
7004 _libbs2b=no
7005 if $_pkg_config --exists libbs2b ; then
7006 _inc_tmp=$($_pkg_config --cflags libbs2b)
7007 _ld_tmp=$($_pkg_config --libs libbs2b)
7008 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
7009 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
7010 else
7011 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
7012 -I/usr/local/include/bs2b ; do
7013 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
7014 extra_ldflags="$extra_ldflags -lbs2b"
7015 extra_cflags="$extra_cflags $_inc_tmp"
7016 _libbs2b=yes
7017 break
7019 done
7022 def_libbs2b="#undef CONFIG_LIBBS2B"
7023 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
7024 echores "$_libbs2b"
7027 if test -z "$_codecsdir" ; then
7028 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
7029 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
7030 if test -d "$dir" ; then
7031 _codecsdir="$dir"
7032 break;
7034 done
7036 # Fall back on default directory.
7037 if test -z "$_codecsdir" ; then
7038 _codecsdir="$_libdir/codecs"
7039 mingw32 || os2 && _codecsdir="codecs"
7043 echocheck "Win32 codecs"
7044 if test "$_win32dll" = auto ; then
7045 _win32dll=no
7046 if x86_32 && ! qnx; then
7047 _win32dll=yes
7050 if test "$_win32dll" = yes ; then
7051 def_win32dll='#define CONFIG_WIN32DLL 1'
7052 if ! win32 ; then
7053 def_win32_loader='#define WIN32_LOADER 1'
7054 _win32_emulation=yes
7055 else
7056 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
7057 _res_comment="using native windows"
7059 _codecmodules="win32 $_codecmodules"
7060 else
7061 def_win32dll='#undef CONFIG_WIN32DLL'
7062 def_win32_loader='#undef WIN32_LOADER'
7063 _nocodecmodules="win32 $_nocodecmodules"
7065 echores "$_win32dll"
7068 echocheck "XAnim codecs"
7069 if test "$_xanim" = auto ; then
7070 _xanim=no
7071 _res_comment="dynamic loader support needed"
7072 if test "$_dl" = yes ; then
7073 _xanim=yes
7076 if test "$_xanim" = yes ; then
7077 def_xanim='#define CONFIG_XANIM 1'
7078 _codecmodules="xanim $_codecmodules"
7079 else
7080 def_xanim='#undef CONFIG_XANIM'
7081 _nocodecmodules="xanim $_nocodecmodules"
7083 echores "$_xanim"
7086 echocheck "RealPlayer codecs"
7087 if test "$_real" = auto ; then
7088 _real=no
7089 _res_comment="dynamic loader support needed"
7090 if test "$_dl" = yes || test "$_win32dll" = yes &&
7091 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
7092 _real=yes
7095 if test "$_real" = yes ; then
7096 def_real='#define CONFIG_REALCODECS 1'
7097 _codecmodules="real $_codecmodules"
7098 else
7099 def_real='#undef CONFIG_REALCODECS'
7100 _nocodecmodules="real $_nocodecmodules"
7102 echores "$_real"
7105 echocheck "QuickTime codecs"
7106 _qtx_emulation=no
7107 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
7108 if test "$_qtx" = auto ; then
7109 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
7111 if test "$_qtx" = yes ; then
7112 def_qtx='#define CONFIG_QTX_CODECS 1'
7113 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
7114 _codecmodules="qtx $_codecmodules"
7115 darwin || win32 || _qtx_emulation=yes
7116 else
7117 def_qtx='#undef CONFIG_QTX_CODECS'
7118 _nocodecmodules="qtx $_nocodecmodules"
7120 echores "$_qtx"
7122 echocheck "Nemesi Streaming Media libraries"
7123 if test "$_nemesi" = auto && test "$_network" = yes ; then
7124 _nemesi=no
7125 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
7126 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
7127 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
7128 _nemesi=yes
7131 if test "$_nemesi" = yes; then
7132 _native_rtsp=no
7133 def_nemesi='#define CONFIG_LIBNEMESI 1'
7134 _inputmodules="nemesi $_inputmodules"
7135 else
7136 _native_rtsp="$_network"
7137 _nemesi=no
7138 def_nemesi='#undef CONFIG_LIBNEMESI'
7139 _noinputmodules="nemesi $_noinputmodules"
7141 echores "$_nemesi"
7143 echocheck "LIVE555 Streaming Media libraries"
7144 if test "$_live" = auto && test "$_network" = yes ; then
7145 cat > $TMPCPP << EOF
7146 #include <liveMedia.hh>
7147 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
7148 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
7149 #endif
7150 int main(void) { return 0; }
7153 _live=no
7154 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
7155 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
7156 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
7157 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
7158 $_livelibdir/groupsock/libgroupsock.a \
7159 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
7160 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
7161 $extra_ldflags -lstdc++" \
7162 extra_cxxflags="-I$_livelibdir/liveMedia/include \
7163 -I$_livelibdir/UsageEnvironment/include \
7164 -I$_livelibdir/BasicUsageEnvironment/include \
7165 -I$_livelibdir/groupsock/include" && \
7166 _live=yes && break
7167 done
7168 if test "$_live" != yes ; then
7169 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
7170 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
7171 _live_dist=yes
7175 if test "$_live" = yes && test "$_network" = yes; then
7176 test $_livelibdir && _res_comment="using $_livelibdir"
7177 def_live='#define CONFIG_LIVE555 1'
7178 _inputmodules="live555 $_inputmodules"
7179 elif test "$_live_dist" = yes && test "$_network" = yes; then
7180 _res_comment="using distribution version"
7181 _live="yes"
7182 def_live='#define CONFIG_LIVE555 1'
7183 extra_ldflags="$extra_ldflags $ld_tmp"
7184 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
7185 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
7186 _inputmodules="live555 $_inputmodules"
7187 else
7188 _live=no
7189 def_live='#undef CONFIG_LIVE555'
7190 _noinputmodules="live555 $_noinputmodules"
7192 echores "$_live"
7195 echocheck "FFmpeg libavutil"
7196 if test "$_libavutil_a" = auto ; then
7197 if test -d libavutil ; then
7198 _libavutil_a=yes
7199 _res_comment="static"
7200 else
7201 die "MPlayer will not compile without libavutil in the source tree."
7203 elif test "$_libavutil_so" = auto ; then
7204 _libavutil_so=no
7205 cat > $TMPC << EOF
7206 #include <libavutil/common.h>
7207 int main(void) { av_clip(1, 1, 1); return 0; }
7209 if $_pkg_config --exists libavutil ; then
7210 _inc_libavutil=$($_pkg_config --cflags libavutil)
7211 _ld_tmp=$($_pkg_config --libs libavutil)
7212 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7213 && _libavutil_so=yes
7214 elif cc_check -lavutil $_ld_lm ; then
7215 extra_ldflags="$extra_ldflags -lavutil"
7216 _libavutil_so=yes
7217 _res_comment="using libavutil.so, but static libavutil is recommended"
7220 _libavutil=no
7221 def_libavutil='#undef CONFIG_LIBAVUTIL'
7222 def_libavutil_a='#undef CONFIG_LIBAVUTIL_A'
7223 def_libavutil_so='#undef CONFIG_LIBAVUTIL_SO'
7224 test "$_libavutil_a" = yes || test "$_libavutil_so" = yes && _libavutil=yes
7225 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
7226 test "$_libavutil_a" = yes && def_libavutil_a='#define CONFIG_LIBAVUTIL_A 1'
7227 test "$_libavutil_so" = yes && def_libavutil_so='#define CONFIG_LIBAVUTIL_SO 1'
7228 # neither static nor shared libavutil is available, but it is mandatory ...
7229 if test "$_libavutil" = no ; then
7230 die "You need static or shared libavutil, MPlayer will not compile without!"
7232 echores "$_libavutil"
7234 echocheck "FFmpeg libavcodec"
7235 if test "$_libavcodec_a" = auto ; then
7236 _libavcodec_a=no
7237 if test -d libavcodec && test -f libavcodec/utils.c ; then
7238 _libavcodec_a="yes"
7239 _res_comment="static"
7241 elif test "$_libavcodec_so" = auto ; then
7242 _libavcodec_so=no
7243 _res_comment="libavcodec.so is discouraged over static libavcodec"
7244 cat > $TMPC << EOF
7245 #include <libavcodec/avcodec.h>
7246 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
7248 if $_pkg_config --exists libavcodec ; then
7249 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
7250 _ld_tmp=$($_pkg_config --libs libavcodec)
7251 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7252 && _libavcodec_so=yes
7253 elif cc_check -lavcodec $_ld_lm ; then
7254 extra_ldflags="$extra_ldflags -lavcodec"
7255 _libavcodec_so=yes
7256 _res_comment="using libavcodec.so, but static libavcodec is recommended"
7259 _libavcodec=no
7260 def_libavcodec='#undef CONFIG_LIBAVCODEC'
7261 def_libavcodec_a='#undef CONFIG_LIBAVCODEC_A'
7262 def_libavcodec_so='#undef CONFIG_LIBAVCODEC_SO'
7263 test "$_libavcodec_a" = yes || test "$_libavcodec_so" = yes && _libavcodec=yes
7264 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
7265 test "$_libavcodec_a" = yes && def_libavcodec_a='#define CONFIG_LIBAVCODEC_A 1'
7266 test "$_libavcodec_so" = yes && def_libavcodec_so='#define CONFIG_LIBAVCODEC_SO 1'
7267 test "$_libavcodec_mpegaudio_hp" = yes \
7268 && def_libavcodec_mpegaudio_hp='#define CONFIG_MPEGAUDIO_HP 1' \
7269 && mak_libavcodec_mpegaudio_hp='CONFIG_MPEGAUDIO_HP = yes'
7270 if test "$_libavcodec_a" = yes ; then
7271 _codecmodules="libavcodec(internal) $_codecmodules"
7272 elif test "$_libavcodec_so" = yes ; then
7273 _codecmodules="libavcodec.so $_codecmodules"
7274 else
7275 _nocodecmodules="libavcodec $_nocodecmodules"
7277 echores "$_libavcodec"
7279 echocheck "FFmpeg libavformat"
7280 if test "$_libavformat_a" = auto ; then
7281 _libavformat_a=no
7282 if test -d libavformat && test -f libavformat/utils.c ; then
7283 _libavformat_a=yes
7284 _res_comment="static"
7286 elif test "$_libavformat_so" = auto ; then
7287 _libavformat_so=no
7288 cat > $TMPC <<EOF
7289 #include <libavformat/avformat.h>
7290 #include <libavcodec/opt.h>
7291 int main(void) { av_alloc_format_context(); return 0; }
7293 if $_pkg_config --exists libavformat ; then
7294 _inc_libavformat=$($_pkg_config --cflags libavformat)
7295 _ld_tmp=$($_pkg_config --libs libavformat)
7296 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7297 && _libavformat_so=yes
7298 elif cc_check $_ld_lm -lavformat ; then
7299 extra_ldflags="$extra_ldflags -lavformat"
7300 _libavformat_so=yes
7301 _res_comment="using libavformat.so, but static libavformat is recommended"
7304 _libavformat=no
7305 def_libavformat='#undef CONFIG_LIBAVFORMAT'
7306 def_libavformat_a='#undef CONFIG_LIBAVFORMAT_A'
7307 def_libavformat_so='#undef CONFIG_LIBAVFORMAT_SO'
7308 test "$_libavformat_a" = yes || test "$_libavformat_so" = yes && _libavformat=yes
7309 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
7310 test "$_libavformat_a" = yes && def_libavformat_a='#define CONFIG_LIBAVFORMAT_A 1'
7311 test "$_libavformat_so" = yes \
7312 && def_libavformat_so='#define CONFIG_LIBAVFORMAT_SO 1'
7313 echores "$_libavformat"
7315 echocheck "FFmpeg libpostproc"
7316 if test "$_libpostproc_a" = auto ; then
7317 _libpostproc_a=no
7318 if test -d libpostproc && test -f libpostproc/postprocess.h ; then
7319 _libpostproc_a='yes'
7320 _res_comment="static"
7322 elif test "$_libpostproc_so" = auto ; then
7323 _libpostproc_so=no
7324 cat > $TMPC << EOF
7325 #include <inttypes.h>
7326 #include <libpostproc/postprocess.h>
7327 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
7329 if cc_check -lpostproc $_ld_lm ; then
7330 extra_ldflags="$extra_ldflags -lpostproc"
7331 _libpostproc_so=yes
7332 _res_comment="using libpostproc.so, but static libpostproc is recommended"
7335 _libpostproc=no
7336 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
7337 def_libpostproc_a='#undef CONFIG_LIBPOSTPROC_A'
7338 def_libpostproc_so='#undef CONFIG_LIBPOSTPROC_SO'
7339 test "$_libpostproc_a" = yes || test "$_libpostproc_so" = yes && _libpostproc=yes
7340 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
7341 test "$_libpostproc_a" = yes && def_libpostproc_a='#define CONFIG_LIBPOSTPROC_A 1'
7342 test "$_libpostproc_so" = yes \
7343 && def_libpostproc_so='#define CONFIG_LIBPOSTPROC_SO 1'
7344 echores "$_libpostproc"
7346 echocheck "FFmpeg libswscale"
7347 if test "$_libswscale_a" = auto ; then
7348 _libswscale_a=no
7349 if test -d libswscale && test -f libswscale/swscale.h ; then
7350 _libswscale_a='yes'
7351 _res_comment="static"
7353 elif test "$_libswscale_so" = auto ; then
7354 _libswscale_so=no
7355 _res_comment="using libswscale.so, but static libswscale is recommended"
7356 cat > $TMPC << EOF
7357 #include <libswscale/swscale.h>
7358 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7360 if $_pkg_config --exists libswscale ; then
7361 _inc_libswscale=$($_pkg_config --cflags libswscale)
7362 _ld_tmp=$($_pkg_config --libs libswscale)
7363 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
7364 && _libswscale_so=yes
7365 elif cc_check -lswscale ; then
7366 extra_ldflags="$extra_ldflags -lswscale"
7367 _libswscale_so=yes
7370 _libswscale=no
7371 def_libswscale='#undef CONFIG_LIBSWSCALE'
7372 def_libswscale_a='#undef CONFIG_LIBSWSCALE_A'
7373 def_libswscale_so='#undef CONFIG_LIBSWSCALE_SO'
7374 test "$_libswscale_a" = yes || test "$_libswscale_so" = yes && _libswscale=yes
7375 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7376 test "$_libswscale_a" = yes && def_libswscale_a='#define CONFIG_LIBSWSCALE_A 1'
7377 test "$_libswscale_so" = yes \
7378 && def_libswscale_so='#define CONFIG_LIBSWSCALE_SO 1'
7379 echores "$_libswscale"
7381 echocheck "libopencore_amr narrowband"
7382 if test "$_libopencore_amrnb" = auto ; then
7383 _libopencore_amrnb=no
7384 cat > $TMPC << EOF
7385 #include <opencore-amrnb/interf_dec.h>
7386 int main(void) { Decoder_Interface_init(); return 0; }
7388 cc_check -lopencore-amrnb && _libopencore_amrnb=yes
7389 if test "$_libavcodec_a" != yes ; then
7390 _libopencore_amrnb=no
7391 _res_comment="libavcodec (static) is required by libopencore_amrnb, sorry"
7394 if test "$_libopencore_amrnb" = yes ; then
7395 _libopencore_amr=yes
7396 extra_ldflags="$extra_ldflags -lopencore-amrnb"
7397 def_libopencore_amrnb='#define CONFIG_LIBOPENCORE_AMRNB 1'
7398 _libavdecoders="$_libavdecoders LIBOPENCORE_AMRNB_DECODER"
7399 _libavencoders="$_libavencoders LIBOPENCORE_AMRNB_ENCODER"
7400 _codecmodules="libopencore_amrnb $_codecmodules"
7401 else
7402 def_libopencore_amrnb='#define CONFIG_LIBOPENCORE_AMRNB 0'
7403 _nocodecmodules="libopencore_amrnb $_nocodecmodules"
7405 echores "$_libopencore_amrnb"
7408 echocheck "libopencore_amr wideband"
7409 if test "$_libopencore_amrwb" = auto ; then
7410 _libopencore_amrwb=no
7411 cat > $TMPC << EOF
7412 #include <opencore-amrwb/dec_if.h>
7413 int main(void) { D_IF_init(); return 0; }
7415 cc_check -lopencore-amrwb && _libopencore_amrwb=yes
7416 if test "$_libavcodec_a" != yes ; then
7417 _libopencore_amrwb=no
7418 _res_comment="libavcodec (static) is required by libopencore_amrwb, sorry"
7421 if test "$_libopencore_amrwb" = yes ; then
7422 _libopencore_amr=yes
7423 extra_ldflags="$extra_ldflags -lopencore-amrwb"
7424 def_libopencore_amrwb='#define CONFIG_LIBOPENCORE_AMRWB 1'
7425 _libavdecoders="$_libavdecoders LIBOPENCORE_AMRWB_DECODER"
7426 _libavencoders="$_libavencoders LIBOPENCORE_AMRWB_DECODER"
7427 _codecmodules="libopencore_amrwb $_codecmodules"
7428 else
7429 def_libopencore_amrwb='#define LIBOPENCORE_AMRWB 0'
7430 _nocodecmodules="libopencore_amrwb $_nocodecmodules"
7432 echores "$_libopencore_amrwb"
7434 echocheck "libdv-0.9.5+"
7435 if test "$_libdv" = auto ; then
7436 _libdv=no
7437 cat > $TMPC <<EOF
7438 #include <libdv/dv.h>
7439 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7441 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7443 if test "$_libdv" = yes ; then
7444 def_libdv='#define CONFIG_LIBDV095 1'
7445 extra_ldflags="$extra_ldflags -ldv"
7446 _codecmodules="libdv $_codecmodules"
7447 else
7448 def_libdv='#undef CONFIG_LIBDV095'
7449 _nocodecmodules="libdv $_nocodecmodules"
7451 echores "$_libdv"
7454 echocheck "Xvid"
7455 if test "$_xvid" = auto ; then
7456 _xvid=no
7457 cat > $TMPC << EOF
7458 #include <xvid.h>
7459 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7461 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7462 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7463 done
7466 if test "$_xvid" = yes ; then
7467 def_xvid='#define CONFIG_XVID4 1'
7468 _codecmodules="xvid $_codecmodules"
7469 else
7470 def_xvid='#undef CONFIG_XVID4'
7471 _nocodecmodules="xvid $_nocodecmodules"
7473 echores "$_xvid"
7475 echocheck "Xvid two pass plugin"
7476 if test "$_xvid" = yes && test "$_xvid_lavc" = auto ; then
7477 cat > $TMPC << EOF
7478 #include <xvid.h>
7479 int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
7481 cc_check && _xvid_lavc=yes
7483 if test "$_xvid_lavc" = yes ; then
7484 def_xvid_lavc='#define CONFIG_LIBXVID 1'
7485 _libavencoders="$_libavencoders LIBXVID_ENCODER"
7486 else
7487 _xvid_lavc=no
7488 def_xvid_lavc='#define CONFIG_LIBXVID 0'
7490 echores "$_xvid_lavc"
7493 echocheck "x264"
7494 if test "$_x264" = auto ; then
7495 cat > $TMPC << EOF
7496 #include <inttypes.h>
7497 #include <x264.h>
7498 #if X264_BUILD < 83
7499 #error We do not support old versions of x264. Get the latest from git.
7500 #endif
7501 int main(void) { x264_encoder_open((void*)0); return 0; }
7503 _x264=no
7504 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7505 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7506 done
7509 if test "$_x264" = yes ; then
7510 def_x264='#define CONFIG_X264 1'
7511 _codecmodules="x264 $_codecmodules"
7512 test "$_x264_lavc" = auto && _x264_lavc=yes
7513 if test "$_x264_lavc" = yes ; then
7514 def_x264_lavc='#define CONFIG_LIBX264 1'
7515 libs_mplayer="$libs_mplayer $_ld_x264"
7516 _libavencoders="$_libavencoders LIBX264_ENCODER"
7518 else
7519 _x264_lavc=no
7520 def_x264='#undef CONFIG_X264'
7521 def_x264_lavc='#define CONFIG_LIBX264 0'
7522 _nocodecmodules="x264 $_nocodecmodules"
7524 _res_comment="in libavcodec: $_x264_lavc"
7525 echores "$_x264"
7528 echocheck "libdirac"
7529 if test "$_libdirac_lavc" = auto; then
7530 _libdirac_lavc=no
7531 if test "$_libavcodec_a" != yes; then
7532 _res_comment="libavcodec (static) is required by libdirac, sorry"
7533 else
7534 cat > $TMPC << EOF
7535 #include <libdirac_encoder/dirac_encoder.h>
7536 #include <libdirac_decoder/dirac_parser.h>
7537 int main(void)
7539 dirac_encoder_context_t enc_ctx;
7540 dirac_decoder_t *dec_handle;
7541 dirac_encoder_context_init(&enc_ctx, VIDEO_FORMAT_SD_576I50);
7542 dec_handle = dirac_decoder_init(0);
7543 if (dec_handle)
7544 dirac_decoder_close(dec_handle);
7545 return 0;
7548 if $_pkg_config --exists dirac ; then
7549 _inc_dirac=$($_pkg_config --silence-errors --cflags dirac)
7550 _ld_dirac=$($_pkg_config --silence-errors --libs dirac)
7551 cc_check $_inc_dirac $_ld_dirac &&
7552 _libdirac_lavc=yes &&
7553 extra_cflags="$extra_cflags $_inc_dirac" &&
7554 extra_ldflags="$extra_ldflags $_ld_dirac"
7558 if test "$_libdirac_lavc" = yes ; then
7559 def_libdirac_lavc='#define CONFIG_LIBDIRAC 1'
7560 _libavencoders="$_libavencoders LIBDIRAC_ENCODER"
7561 _libavdecoders="$_libavdecoders LIBDIRAC_DECODER"
7562 _codecmodules="libdirac $_codecmodules"
7563 else
7564 def_libdirac_lavc='#define CONFIG_LIBDIRAC 0'
7565 _nocodecmodules="libdirac $_nocodecmodules"
7567 echores "$_libdirac_lavc"
7570 echocheck "libschroedinger"
7571 if test "$_libschroedinger_lavc" = auto ; then
7572 _libschroedinger_lavc=no
7573 if test "$_libavcodec_a" != yes; then
7574 _res_comment="libavcodec (static) is required by libschroedinger, sorry"
7575 else
7576 cat > $TMPC << EOF
7577 #include <schroedinger/schro.h>
7578 int main(void) { schro_init(); return 0; }
7580 if $_pkg_config --exists schroedinger-1.0 ; then
7581 _inc_schroedinger=$($_pkg_config --silence-errors --cflags schroedinger-1.0)
7582 _ld_schroedinger=$($_pkg_config --silence-errors --libs schroedinger-1.0)
7583 cc_check $_inc_schroedinger $_ld_schroedinger &&
7584 _libschroedinger_lavc=yes &&
7585 extra_cflags="$extra_cflags $_inc_schroedinger" &&
7586 extra_ldflags="$extra_ldflags $_ld_schroedinger"
7590 if test "$_libschroedinger_lavc" = yes ; then
7591 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 1'
7592 _libavencoders="$_libavencoders LIBSCHROEDINGER_ENCODER"
7593 _libavdecoders="$_libavdecoders LIBSCHROEDINGER_DECODER"
7594 _codecmodules="libschroedinger $_codecmodules"
7595 else
7596 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 0'
7597 _nocodecmodules="libschroedinger $_nocodecmodules"
7599 echores "$_libschroedinger_lavc"
7601 echocheck "libnut"
7602 if test "$_libnut" = auto ; then
7603 cat > $TMPC << EOF
7604 #include <stdio.h>
7605 #include <stdlib.h>
7606 #include <inttypes.h>
7607 #include <libnut.h>
7608 nut_context_tt * nut;
7609 int main(void) { (void)nut_error(0); return 0; }
7611 _libnut=no
7612 cc_check -lnut && _libnut=yes
7615 if test "$_libnut" = yes ; then
7616 def_libnut='#define CONFIG_LIBNUT 1'
7617 extra_ldflags="$extra_ldflags -lnut"
7618 else
7619 def_libnut='#undef CONFIG_LIBNUT'
7621 echores "$_libnut"
7623 #check must be done after libavcodec one
7624 echocheck "zr"
7625 if test "$_zr" = auto ; then
7626 #36067's seem to identify themselves as 36057PQC's, so the line
7627 #below should work for 36067's and 36057's.
7628 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7629 _zr=yes
7630 else
7631 _zr=no
7634 if test "$_zr" = yes ; then
7635 if test "$_libavcodec_a" = yes ; then
7636 def_zr='#define CONFIG_ZR 1'
7637 _vomodules="zr zr2 $_vomodules"
7638 else
7639 _res_comment="libavcodec (static) is required by zr, sorry"
7640 _novomodules="zr $_novomodules"
7641 def_zr='#undef CONFIG_ZR'
7643 else
7644 def_zr='#undef CONFIG_ZR'
7645 _novomodules="zr zr2 $_novomodules"
7647 echores "$_zr"
7649 # mencoder requires (optional) those libs: libmp3lame
7650 if test "$_mencoder" != no ; then
7652 echocheck "libmp3lame"
7653 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7654 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7655 if test "$_mp3lame" = auto ; then
7656 _mp3lame=no
7657 cat > $TMPC <<EOF
7658 #include <lame/lame.h>
7659 int main(void) { lame_version_t lv; (void) lame_init();
7660 get_lame_version_numerical(&lv);
7661 return 0; }
7663 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7665 if test "$_mp3lame" = yes ; then
7666 def_mp3lame="#define CONFIG_MP3LAME 1"
7667 _ld_mp3lame=-lmp3lame
7668 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7669 cat > $TMPC << EOF
7670 #include <lame/lame.h>
7671 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7673 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7674 cat > $TMPC << EOF
7675 #include <lame/lame.h>
7676 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7678 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7679 test "$_mp3lame_lavc" = auto && _mp3lame_lavc=yes
7680 if test "$_mp3lame_lavc" = yes ; then
7681 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 1"
7682 _libavencoders="$_libavencoders LIBMP3LAME_ENCODER"
7683 libs_mplayer="$libs_mplayer $_ld_mp3lame"
7685 else
7686 _mp3lame_lavc=no
7687 def_mp3lame='#undef CONFIG_MP3LAME'
7688 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 0"
7690 _res_comment="in libavcodec: $_mp3lame_lavc"
7691 echores "$_mp3lame"
7693 fi # test "$_mencoder" != no
7695 echocheck "mencoder"
7696 if test "$_mencoder" = yes ; then
7697 def_muxers='#define CONFIG_MUXERS 1'
7698 else
7699 # mpeg1video for vf_lavc, snow for vf_uspp and vf_mcdeint, png for vf_screenshot
7700 _libavencoders="MPEG1VIDEO_ENCODER SNOW_ENCODER"
7701 test "$_zlib" = yes && _libavencoders="$_libavencoders PNG_ENCODER"
7702 _libavmuxers=""
7703 def_muxers='#define CONFIG_MUXERS 0'
7705 echores "$_mencoder"
7708 echocheck "UnRAR executable"
7709 if test "$_unrar_exec" = auto ; then
7710 _unrar_exec="yes"
7711 mingw32 && _unrar_exec="no"
7713 if test "$_unrar_exec" = yes ; then
7714 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7715 else
7716 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7718 echores "$_unrar_exec"
7720 echocheck "TV interface"
7721 if test "$_tv" = yes ; then
7722 def_tv='#define CONFIG_TV 1'
7723 _inputmodules="tv $_inputmodules"
7724 else
7725 _noinputmodules="tv $_noinputmodules"
7726 def_tv='#undef CONFIG_TV'
7728 echores "$_tv"
7731 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7732 echocheck "*BSD BT848 bt8xx header"
7733 _ioctl_bt848_h=no
7734 for file in "machine/ioctl_bt848.h" \
7735 "dev/bktr/ioctl_bt848.h" \
7736 "dev/video/bktr/ioctl_bt848.h" \
7737 "dev/ic/bt8xx.h" ; do
7738 cat > $TMPC <<EOF
7739 #include <sys/types.h>
7740 #include <sys/ioctl.h>
7741 #include <$file>
7742 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7744 if cc_check ; then
7745 _ioctl_bt848_h=yes
7746 _ioctl_bt848_h_name="$file"
7747 break;
7749 done
7750 if test "$_ioctl_bt848_h" = yes ; then
7751 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7752 _res_comment="using $_ioctl_bt848_h_name"
7753 else
7754 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7756 echores "$_ioctl_bt848_h"
7758 echocheck "*BSD ioctl_meteor.h"
7759 _ioctl_meteor_h=no
7760 for file in "machine/ioctl_meteor.h" \
7761 "dev/bktr/ioctl_meteor.h" \
7762 "dev/video/bktr/ioctl_meteor.h" ; do
7763 cat > $TMPC <<EOF
7764 #include <sys/types.h>
7765 #include <$file>
7766 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7768 if cc_check ; then
7769 _ioctl_meteor_h=yes
7770 _ioctl_meteor_h_name="$file"
7771 break;
7773 done
7774 if test "$_ioctl_meteor_h" = yes ; then
7775 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7776 _res_comment="using $_ioctl_meteor_h_name"
7777 else
7778 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7780 echores "$_ioctl_meteor_h"
7782 echocheck "*BSD BrookTree 848 TV interface"
7783 if test "$_tv_bsdbt848" = auto ; then
7784 _tv_bsdbt848=no
7785 if test "$_tv" = yes ; then
7786 cat > $TMPC <<EOF
7787 #include <sys/types.h>
7788 $def_ioctl_meteor_h_name
7789 $def_ioctl_bt848_h_name
7790 #ifdef IOCTL_METEOR_H_NAME
7791 #include IOCTL_METEOR_H_NAME
7792 #endif
7793 #ifdef IOCTL_BT848_H_NAME
7794 #include IOCTL_BT848_H_NAME
7795 #endif
7796 int main(void) {
7797 ioctl(0, METEORSINPUT, 0);
7798 ioctl(0, TVTUNER_GETFREQ, 0);
7799 return 0;
7802 cc_check && _tv_bsdbt848=yes
7805 if test "$_tv_bsdbt848" = yes ; then
7806 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7807 _inputmodules="tv-bsdbt848 $_inputmodules"
7808 else
7809 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7810 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7812 echores "$_tv_bsdbt848"
7813 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7816 echocheck "DirectShow TV interface"
7817 if test "$_tv_dshow" = auto ; then
7818 _tv_dshow=no
7819 if test "$_tv" = yes && win32 ; then
7820 cat > $TMPC <<EOF
7821 #include <ole2.h>
7822 int main(void) {
7823 void* p;
7824 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7825 return 0;
7828 cc_check -lole32 -luuid && _tv_dshow=yes
7831 if test "$_tv_dshow" = yes ; then
7832 _inputmodules="tv-dshow $_inputmodules"
7833 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7834 extra_ldflags="$extra_ldflags -lole32 -luuid"
7835 else
7836 _noinputmodules="tv-dshow $_noinputmodules"
7837 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7839 echores "$_tv_dshow"
7842 echocheck "Video 4 Linux TV interface"
7843 if test "$_tv_v4l1" = auto ; then
7844 _tv_v4l1=no
7845 if test "$_tv" = yes && linux ; then
7846 cat > $TMPC <<EOF
7847 #include <stdlib.h>
7848 #include <linux/videodev.h>
7849 int main(void) { return 0; }
7851 cc_check && _tv_v4l1=yes
7854 if test "$_tv_v4l1" = yes ; then
7855 _audio_input=yes
7856 _tv_v4l=yes
7857 def_tv_v4l='#define CONFIG_TV_V4L 1'
7858 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7859 _inputmodules="tv-v4l $_inputmodules"
7860 else
7861 _noinputmodules="tv-v4l1 $_noinputmodules"
7862 def_tv_v4l='#undef CONFIG_TV_V4L'
7864 echores "$_tv_v4l1"
7867 echocheck "Video 4 Linux 2 TV interface"
7868 if test "$_tv_v4l2" = auto ; then
7869 _tv_v4l2=no
7870 if test "$_tv" = yes && linux ; then
7871 cat > $TMPC <<EOF
7872 #include <stdlib.h>
7873 #include <linux/types.h>
7874 #include <linux/videodev2.h>
7875 int main(void) { return 0; }
7877 cc_check && _tv_v4l2=yes
7880 if test "$_tv_v4l2" = yes ; then
7881 _audio_input=yes
7882 _tv_v4l=yes
7883 def_tv_v4l='#define CONFIG_TV_V4L 1'
7884 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7885 _inputmodules="tv-v4l2 $_inputmodules"
7886 else
7887 _noinputmodules="tv-v4l2 $_noinputmodules"
7888 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7890 echores "$_tv_v4l2"
7893 echocheck "Radio interface"
7894 if test "$_radio" = yes ; then
7895 def_radio='#define CONFIG_RADIO 1'
7896 _inputmodules="radio $_inputmodules"
7897 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7898 _radio_capture=no
7900 if test "$_radio_capture" = yes ; then
7901 _audio_input=yes
7902 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7903 else
7904 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7906 else
7907 _noinputmodules="radio $_noinputmodules"
7908 def_radio='#undef CONFIG_RADIO'
7909 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7910 _radio_capture=no
7912 echores "$_radio"
7913 echocheck "Capture for Radio interface"
7914 echores "$_radio_capture"
7916 echocheck "Video 4 Linux 2 Radio interface"
7917 if test "$_radio_v4l2" = auto ; then
7918 _radio_v4l2=no
7919 if test "$_radio" = yes && linux ; then
7920 cat > $TMPC <<EOF
7921 #include <stdlib.h>
7922 #include <linux/types.h>
7923 #include <linux/videodev2.h>
7924 int main(void) { return 0; }
7926 cc_check && _radio_v4l2=yes
7929 if test "$_radio_v4l2" = yes ; then
7930 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7931 else
7932 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7934 echores "$_radio_v4l2"
7936 echocheck "Video 4 Linux Radio interface"
7937 if test "$_radio_v4l" = auto ; then
7938 _radio_v4l=no
7939 if test "$_radio" = yes && linux ; then
7940 cat > $TMPC <<EOF
7941 #include <stdlib.h>
7942 #include <linux/videodev.h>
7943 int main(void) { return 0; }
7945 cc_check && _radio_v4l=yes
7948 if test "$_radio_v4l" = yes ; then
7949 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7950 else
7951 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7953 echores "$_radio_v4l"
7955 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7956 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7957 echocheck "*BSD BrookTree 848 Radio interface"
7958 _radio_bsdbt848=no
7959 cat > $TMPC <<EOF
7960 #include <sys/types.h>
7961 $def_ioctl_bt848_h_name
7962 #ifdef IOCTL_BT848_H_NAME
7963 #include IOCTL_BT848_H_NAME
7964 #endif
7965 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7967 cc_check && _radio_bsdbt848=yes
7968 echores "$_radio_bsdbt848"
7969 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7971 if test "$_radio_bsdbt848" = yes ; then
7972 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7973 else
7974 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7977 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7978 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7979 die "Radio driver requires BSD BT848, V4L or V4L2!"
7982 echocheck "Video 4 Linux 2 MPEG PVR interface"
7983 if test "$_pvr" = auto ; then
7984 _pvr=no
7985 if test "$_tv_v4l2" = yes && linux ; then
7986 cat > $TMPC <<EOF
7987 #include <stdlib.h>
7988 #include <inttypes.h>
7989 #include <linux/types.h>
7990 #include <linux/videodev2.h>
7991 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7993 cc_check && _pvr=yes
7996 if test "$_pvr" = yes ; then
7997 def_pvr='#define CONFIG_PVR 1'
7998 _inputmodules="pvr $_inputmodules"
7999 else
8000 _noinputmodules="pvr $_noinputmodules"
8001 def_pvr='#undef CONFIG_PVR'
8003 echores "$_pvr"
8006 echocheck "ftp"
8007 if ! beos && test "$_ftp" = yes ; then
8008 def_ftp='#define CONFIG_FTP 1'
8009 _inputmodules="ftp $_inputmodules"
8010 else
8011 _noinputmodules="ftp $_noinputmodules"
8012 def_ftp='#undef CONFIG_FTP'
8014 echores "$_ftp"
8016 echocheck "vstream client"
8017 if test "$_vstream" = auto ; then
8018 _vstream=no
8019 cat > $TMPC <<EOF
8020 #include <vstream-client.h>
8021 void vstream_error(const char *format, ... ) {}
8022 int main(void) { vstream_start(); return 0; }
8024 cc_check -lvstream-client && _vstream=yes
8026 if test "$_vstream" = yes ; then
8027 def_vstream='#define CONFIG_VSTREAM 1'
8028 _inputmodules="vstream $_inputmodules"
8029 extra_ldflags="$extra_ldflags -lvstream-client"
8030 else
8031 _noinputmodules="vstream $_noinputmodules"
8032 def_vstream='#undef CONFIG_VSTREAM'
8034 echores "$_vstream"
8037 echocheck "OSD menu"
8038 if test "$_menu" = yes ; then
8039 def_menu='#define CONFIG_MENU 1'
8040 test $_dvbin = "yes" && _menu_dvbin=yes
8041 else
8042 def_menu='#undef CONFIG_MENU'
8043 _menu_dvbin=no
8045 echores "$_menu"
8048 echocheck "Subtitles sorting"
8049 if test "$_sortsub" = yes ; then
8050 def_sortsub='#define CONFIG_SORTSUB 1'
8051 else
8052 def_sortsub='#undef CONFIG_SORTSUB'
8054 echores "$_sortsub"
8057 echocheck "XMMS inputplugin support"
8058 if test "$_xmms" = yes ; then
8059 if ( xmms-config --version ) >/dev/null 2>&1 ; then
8060 _xmmsplugindir=$(xmms-config --input-plugin-dir)
8061 _xmmslibdir=$(xmms-config --exec-prefix)/lib
8062 else
8063 _xmmsplugindir=/usr/lib/xmms/Input
8064 _xmmslibdir=/usr/lib
8067 def_xmms='#define CONFIG_XMMS 1'
8068 if darwin ; then
8069 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
8070 else
8071 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
8073 else
8074 def_xmms='#undef CONFIG_XMMS'
8076 echores "$_xmms"
8079 # --------------- GUI specific tests begin -------------------
8080 echocheck "GUI"
8081 echo "$_gui"
8082 if test "$_gui" = yes ; then
8084 # Required libraries
8085 if test "$_libavcodec" != yes ||
8086 ! echo $_libavdecoders | grep -q PNG_DECODER ; then
8087 die "The GUI requires libavcodec with PNG support (needs zlib)."
8089 test "$_freetype" = no && test "$_bitmap_font" = no && \
8090 die "The GUI requires either FreeType or bitmap font support."
8091 if ! win32 ; then
8092 _gui_gtk=yes
8093 test "$_x11" != yes && die "X11 support required for GUI compilation."
8095 echocheck "XShape extension"
8096 if test "$_xshape" = auto ; then
8097 _xshape=no
8098 cat > $TMPC << EOF
8099 #include <X11/Xlib.h>
8100 #include <X11/Xproto.h>
8101 #include <X11/Xutil.h>
8102 #include <X11/extensions/shape.h>
8103 #include <stdlib.h>
8104 int main(void) {
8105 char *name = ":0.0";
8106 Display *wsDisplay;
8107 int exitvar = 0;
8108 int eventbase, errorbase;
8109 if (getenv("DISPLAY"))
8110 name=getenv("DISPLAY");
8111 wsDisplay=XOpenDisplay(name);
8112 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase))
8113 exitvar=1;
8114 XCloseDisplay(wsDisplay);
8115 return exitvar;
8118 cc_check -lXext && _xshape=yes
8120 if test "$_xshape" = yes ; then
8121 def_xshape='#define CONFIG_XSHAPE 1'
8122 else
8123 die "The GUI requires the X11 extension XShape (which was not found)."
8125 echores "$_xshape"
8127 #Check for GTK
8128 if test "$_gtk1" = no ; then
8129 #Check for GTK2 :
8130 echocheck "GTK+ version"
8132 if $_pkg_config gtk+-2.0 --exists ; then
8133 _gtk=$($_pkg_config gtk+-2.0 --modversion 2>/dev/null)
8134 extra_cflags="$extra_cflags $($_pkg_config gtk+-2.0 --cflags 2>/dev/null)"
8135 libs_mplayer="$libs_mplayer $($_pkg_config gtk+-2.0 --libs 2>/dev/null)"
8136 echores "$_gtk"
8138 # Check for GLIB2
8139 if $_pkg_config glib-2.0 --exists ; then
8140 echocheck "glib version"
8141 _glib=$($_pkg_config glib-2.0 --modversion 2>/dev/null)
8142 libs_mplayer="$libs_mplayer $($_pkg_config glib-2.0 --libs 2>/dev/null)"
8143 echores "$_glib"
8145 def_gui='#define CONFIG_GUI 1'
8146 def_gtk2='#define CONFIG_GTK2 1'
8147 else
8148 _gtk1=yes
8149 echo "GLIB-2 devel packages were not found, trying GTK 1.2"
8151 else
8152 echo "GTK-2 devel packages were not found, trying GTK 1.2"
8153 _gtk1=yes
8157 if test "$_gtk1" = yes ; then
8158 # Check for old GTK (1.2.x)
8159 echocheck "GTK version"
8160 if test -z "$_gtkconfig" ; then
8161 if ( gtk-config --version ) >/dev/null 2>&1 ; then
8162 _gtkconfig="gtk-config"
8163 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
8164 _gtkconfig="gtk12-config"
8165 else
8166 die "The GUI requires GTK devel packages (which were not found)."
8169 _gtk=$($_gtkconfig --version 2>&1)
8170 extra_cflags="$extra_cflags $($_gtkconfig --cflags 2>&1)"
8171 libs_mplayer="$libs_mplayer $($_gtkconfig --libs 2>&1)"
8172 echores "$_gtk (using $_gtkconfig)"
8174 # Check for GLIB
8175 echocheck "glib version"
8176 if test -z "$_glibconfig" ; then
8177 if ( glib-config --version ) >/dev/null 2>&1 ; then
8178 _glibconfig="glib-config"
8179 elif ( glib12-config --version ) >/dev/null 2>&1 ; then
8180 _glibconfig="glib12-config"
8181 else
8182 die "The GUI requires GLIB devel packages (which were not found)"
8185 _glib=$($_glibconfig --version 2>&1)
8186 libs_mplayer="$libs_mplayer $($_glibconfig --libs 2>&1)"
8187 echores "$_glib (using $_glibconfig)"
8189 def_gui='#define CONFIG_GUI 1'
8190 def_gtk2='#undef CONFIG_GTK2'
8193 else #if ! win32
8194 _gui_win32=yes
8195 libs_mplayer="$libs_mplayer -lcomdlg32 -lcomctl32 -lshell32 -lkernel32"
8196 def_gui='#define CONFIG_GUI 1'
8197 def_gtk2='#undef CONFIG_GTK2'
8198 fi #if ! win32
8200 else #if test "$_gui"
8201 def_gui='#undef CONFIG_GUI'
8202 def_gtk2='#undef CONFIG_GTK2'
8203 fi #if test "$_gui"
8204 # --------------- GUI specific tests end -------------------
8207 if test "$_charset" != "noconv" ; then
8208 def_charset="#define MSG_CHARSET \"$_charset\""
8209 else
8210 def_charset="#undef MSG_CHARSET"
8211 _charset="UTF-8"
8214 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
8215 echocheck "iconv program"
8216 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
8217 if test "$?" -ne 0 ; then
8218 echores "no"
8219 echo "No working iconv program found, use "
8220 echo "--charset=UTF-8 to continue anyway."
8221 echo "If you also have problems with iconv library functions use --charset=noconv."
8222 echo "Messages in the GTK-2 interface will be broken then."
8223 exit 1
8224 else
8225 echores "yes"
8229 #############################################################################
8231 echocheck "automatic gdb attach"
8232 if test "$_crash_debug" = yes ; then
8233 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
8234 else
8235 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
8236 _crash_debug=no
8238 echores "$_crash_debug"
8240 echocheck "compiler support for noexecstack"
8241 cat > $TMPC <<EOF
8242 int main(void) { return 0; }
8244 if cc_check -Wl,-z,noexecstack ; then
8245 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
8246 echores "yes"
8247 else
8248 echores "no"
8251 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
8252 if cc_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
8253 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
8254 echores "yes"
8255 else
8256 echores "no"
8260 # Dynamic linking flags
8261 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
8262 _ld_dl_dynamic=''
8263 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
8264 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
8265 _ld_dl_dynamic='-rdynamic'
8268 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
8269 bsdos && extra_ldflags="$extra_ldflags -ldvd"
8270 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
8272 def_debug='#undef MP_DEBUG'
8273 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
8276 echocheck "joystick"
8277 def_joystick='#undef CONFIG_JOYSTICK'
8278 if test "$_joystick" = yes ; then
8279 if linux ; then
8280 # TODO add some check
8281 def_joystick='#define CONFIG_JOYSTICK 1'
8282 else
8283 _joystick="no"
8284 _res_comment="unsupported under $system_name"
8287 echores "$_joystick"
8289 echocheck "lirc"
8290 if test "$_lirc" = auto ; then
8291 _lirc=no
8292 cat > $TMPC <<EOF
8293 #include <lirc/lirc_client.h>
8294 int main(void) { return 0; }
8296 cc_check -llirc_client && _lirc=yes
8298 if test "$_lirc" = yes ; then
8299 def_lirc='#define CONFIG_LIRC 1'
8300 libs_mplayer="$libs_mplayer -llirc_client"
8301 else
8302 def_lirc='#undef CONFIG_LIRC'
8304 echores "$_lirc"
8306 echocheck "lircc"
8307 if test "$_lircc" = auto ; then
8308 _lircc=no
8309 cat > $TMPC <<EOF
8310 #include <lirc/lircc.h>
8311 int main(void) { return 0; }
8313 cc_check -llircc && _lircc=yes
8315 if test "$_lircc" = yes ; then
8316 def_lircc='#define CONFIG_LIRCC 1'
8317 libs_mplayer="$libs_mplayer -llircc"
8318 else
8319 def_lircc='#undef CONFIG_LIRCC'
8321 echores "$_lircc"
8323 if arm; then
8324 # Detect maemo development platform libraries availability (http://www.maemo.org),
8325 # they are used when run on Nokia 770|8x0
8326 echocheck "maemo (Nokia 770|8x0)"
8327 if test "$_maemo" = auto ; then
8328 _maemo=no
8329 cat > $TMPC << EOF
8330 #include <libosso.h>
8331 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
8333 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
8335 if test "$_maemo" = yes ; then
8336 def_maemo='#define CONFIG_MAEMO 1'
8337 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
8338 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
8339 else
8340 def_maemo='#undef CONFIG_MAEMO'
8342 echores "$_maemo"
8345 #############################################################################
8347 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
8348 # the OMF format needs to come after the 'extern symbol prefix' check, which
8349 # uses nm.
8350 if os2 ; then
8351 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
8354 # linker paths should be the same for mencoder and mplayer
8355 _ld_tmp=""
8356 for I in $libs_mplayer ; do
8357 _tmp=$(echo $I | sed -e 's/^-L.*$//')
8358 if test -z "$_tmp" ; then
8359 extra_ldflags="$extra_ldflags $I"
8360 else
8361 _ld_tmp="$_ld_tmp $I"
8363 done
8364 libs_mplayer=$_ld_tmp
8367 #############################################################################
8368 # 64 bit file offsets?
8369 if test "$_largefiles" = yes || freebsd ; then
8370 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
8371 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
8372 # dvdread support requires this (for off64_t)
8373 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
8377 CXXFLAGS=" $CFLAGS -D__STDC_LIMIT_MACROS"
8379 # This must be the last test to be performed. Any other tests following it
8380 # could fail due to linker errors. libdvdnavmini is intentionally not linked
8381 # against libdvdread (to permit MPlayer to use its own copy of the library).
8382 # So any compilation using the flags added here but not linking against
8383 # libdvdread can fail.
8384 echocheck "DVD support (libdvdnav)"
8385 dvdnav_internal=no
8386 if test "$_dvdnav" = auto ; then
8387 if test "$_dvdread_internal" = yes ; then
8388 _dvdnav=yes
8389 dvdnav_internal=yes
8390 _res_comment="internal"
8391 else
8392 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
8395 if test "$_dvdnav" = auto ; then
8396 cat > $TMPC <<EOF
8397 #include <inttypes.h>
8398 #include <dvdnav/dvdnav.h>
8399 int main(void) { dvdnav_t *dvd=0; return 0; }
8401 _dvdnav=no
8402 _dvdnavdir=$($_dvdnavconfig --cflags)
8403 _dvdnavlibs=$($_dvdnavconfig --libs)
8404 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
8406 if test "$_dvdnav" = yes ; then
8407 _largefiles=yes
8408 def_dvdnav='#define CONFIG_DVDNAV 1'
8409 if test "$dvdnav_internal" = yes ; then
8410 cflags_libdvdnav="-Ilibdvdnav"
8411 _inputmodules="dvdnav(internal) $_inputmodules"
8412 else
8413 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
8414 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
8415 _inputmodules="dvdnav $_inputmodules"
8417 else
8418 def_dvdnav='#undef CONFIG_DVDNAV'
8419 _noinputmodules="dvdnav $_noinputmodules"
8421 echores "$_dvdnav"
8423 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
8424 # Read dvdnav comment above.
8426 #############################################################################
8427 echo "Creating config.mak"
8428 cat > config.mak << EOF
8429 # -------- Generated by configure -----------
8431 # Ensure that locale settings do not interfere with shell commands.
8432 export LC_ALL = C
8434 CONFIGURATION = $_configuration
8436 CHARSET = $_charset
8437 DOC_LANGS = $language_doc
8438 DOC_LANG_ALL = $doc_lang_all
8439 MAN_LANGS = $language_man
8440 MAN_LANG_ALL = $man_lang_all
8442 prefix = \$(DESTDIR)$_prefix
8443 BINDIR = \$(DESTDIR)$_bindir
8444 DATADIR = \$(DESTDIR)$_datadir
8445 LIBDIR = \$(DESTDIR)$_libdir
8446 MANDIR = \$(DESTDIR)$_mandir
8447 CONFDIR = \$(DESTDIR)$_confdir
8449 AR = $_ar
8450 AS = $_cc
8451 CC = $_cc
8452 CXX = $_cc
8453 HOST_CC = $_host_cc
8454 YASM = $_yasm
8455 INSTALL = $_install
8456 INSTALLSTRIP = $_install_strip
8457 RANLIB = $_ranlib
8458 WINDRES = $_windres
8460 CFLAGS = $CFLAGS $extra_cflags
8461 ASFLAGS = $CFLAGS $extra_cflags
8462 OPTFLAGS = $CFLAGS $extra_cflags
8463 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
8464 CFLAGS_DHAHELPER = $cflags_dhahelper
8465 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
8466 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
8467 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
8468 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
8469 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
8470 CFLAGS_STACKREALIGN = $cflags_stackrealign
8471 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
8472 CFLAGS_TREMOR_LOW = $cflags_tremor_low
8473 YASMFLAGS = $YASMFLAGS
8475 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
8476 EXTRALIBS_MPLAYER = $libs_mplayer
8477 EXTRALIBS_MENCODER = $libs_mencoder
8479 DEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.h,\$^) | sed "s,[0-9a-z._-]*: \(\$(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\\2&,"
8481 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 &,"
8482 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 &,"
8484 GETCH = $_getch
8485 HELP_FILE = $_mp_help
8486 TIMER = $_timer
8488 EXESUF = $_exesuf
8489 EXESUFS_ALL = .exe
8491 $_target_arch
8492 $_target_subarch
8493 $(echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/')
8495 MENCODER = $_mencoder
8496 MPLAYER = $_mplayer
8498 NEED_GETTIMEOFDAY = $_need_gettimeofday
8499 NEED_GLOB = $_need_glob
8500 NEED_MMAP = $_need_mmap
8501 NEED_SETENV = $_need_setenv
8502 NEED_SHMEM = $_need_shmem
8503 NEED_STRSEP = $_need_strsep
8504 NEED_SWAB = $_need_swab
8505 NEED_VSSCANF = $_need_vsscanf
8507 # features
8508 3DFX = $_3dfx
8509 AA = $_aa
8510 ALSA1X = $_alsa1x
8511 ALSA9 = $_alsa9
8512 ALSA5 = $_alsa5
8513 APPLE_IR = $_apple_ir
8514 APPLE_REMOTE = $_apple_remote
8515 ARTS = $_arts
8516 AUDIO_INPUT = $_audio_input
8517 BITMAP_FONT = $_bitmap_font
8518 BL = $_bl
8519 CACA = $_caca
8520 CDDA = $_cdda
8521 CDDB = $_cddb
8522 COREAUDIO = $_coreaudio
8523 COREVIDEO = $_corevideo
8524 DART = $_dart
8525 DFBMGA = $_dfbmga
8526 DGA = $_dga
8527 DIRECT3D = $_direct3d
8528 DIRECTFB = $_directfb
8529 DIRECTX = $_directx
8530 DVBIN = $_dvbin
8531 DVDNAV = $_dvdnav
8532 DVDNAV_INTERNAL = $dvdnav_internal
8533 DVDREAD = $_dvdread
8534 DVDREAD_INTERNAL = $_dvdread_internal
8535 DXR2 = $_dxr2
8536 DXR3 = $_dxr3
8537 ESD = $_esd
8538 FAAC=$_faac
8539 FAAD = $_faad
8540 FAAD_INTERNAL = $_faad_internal
8541 FASTMEMCPY = $_fastmemcpy
8542 $mak_hardcoded_tables
8543 $mak_libavcodec_mpegaudio_hp
8544 FBDEV = $_fbdev
8545 FREETYPE = $_freetype
8546 FTP = $_ftp
8547 GIF = $_gif
8548 GGI = $_ggi
8549 GL = $_gl
8550 GL_WIN32 = $_gl_win32
8551 GL_X11 = $_gl_x11
8552 MATRIXVIEW = $matrixview
8553 GUI = $_gui
8554 GUI_GTK = $_gui_gtk
8555 GUI_WIN32 = $_gui_win32
8556 HAVE_POSIX_SELECT = $_posix_select
8557 HAVE_SYS_MMAN_H = $_mman
8558 IVTV = $_ivtv
8559 JACK = $_jack
8560 JOYSTICK = $_joystick
8561 JPEG = $_jpeg
8562 KAI = $_kai
8563 KVA = $_kva
8564 LADSPA = $_ladspa
8565 LIBA52 = $_liba52
8566 LIBA52_INTERNAL = $_liba52_internal
8567 LIBASS = $_ass
8568 LIBASS_INTERNAL = $ass_internal
8569 LIBBS2B = $_libbs2b
8570 LIBDCA = $_libdca
8571 LIBDV = $_libdv
8572 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
8573 LIBLZO = $_liblzo
8574 LIBMAD = $_mad
8575 LIBMENU = $_menu
8576 LIBMENU_DVBIN = $_menu_dvbin
8577 LIBMPEG2 = $_libmpeg2
8578 LIBNEMESI = $_nemesi
8579 LIBNUT = $_libnut
8580 LIBSMBCLIENT = $_smb
8581 LIBTHEORA = $_theora
8582 LIRC = $_lirc
8583 LIVE555 = $_live
8584 MACOSX_BUNDLE = $_macosx_bundle
8585 MACOSX_FINDER = $_macosx_finder
8586 MD5SUM = $_md5sum
8587 MGA = $_mga
8588 MNG = $_mng
8589 MP3LAME = $_mp3lame
8590 MP3LIB = $_mp3lib
8591 MUSEPACK = $_musepack
8592 NAS = $_nas
8593 NATIVE_RTSP = $_native_rtsp
8594 NETWORK = $_network
8595 OPENAL = $_openal
8596 OSS = $_ossaudio
8597 PE_EXECUTABLE = $_pe_executable
8598 PNG = $_png
8599 PNM = $_pnm
8600 PRIORITY = $_priority
8601 PULSE = $_pulse
8602 PVR = $_pvr
8603 QTX_CODECS = $_qtx
8604 QTX_CODECS_WIN32 = $_qtx_codecs_win32
8605 QTX_EMULATION = $_qtx_emulation
8606 QUARTZ = $_quartz
8607 RADIO=$_radio
8608 RADIO_CAPTURE=$_radio_capture
8609 REAL_CODECS = $_real
8610 S3FB = $_s3fb
8611 SDL = $_sdl
8612 SPEEX = $_speex
8613 STREAM_CACHE = $_stream_cache
8614 SGIAUDIO = $_sgiaudio
8615 SUNAUDIO = $_sunaudio
8616 SVGA = $_svga
8617 TDFXFB = $_tdfxfb
8618 TDFXVID = $_tdfxvid
8619 TGA = $_tga
8620 TOOLAME=$_toolame
8621 TREMOR_INTERNAL = $_tremor_internal
8622 TV = $_tv
8623 TV_BSDBT848 = $_tv_bsdbt848
8624 TV_DSHOW = $_tv_dshow
8625 TV_V4L = $_tv_v4l
8626 TV_V4L1 = $_tv_v4l1
8627 TV_V4L2 = $_tv_v4l2
8628 TWOLAME=$_twolame
8629 UNRAR_EXEC = $_unrar_exec
8630 V4L2 = $_v4l2
8631 VCD = $_vcd
8632 VDPAU = $_vdpau
8633 VESA = $_vesa
8634 VIDIX = $_vidix
8635 VIDIX_PCIDB = $_vidix_pcidb_val
8636 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8637 VIDIX_IVTV=$_vidix_drv_ivtv
8638 VIDIX_MACH64=$_vidix_drv_mach64
8639 VIDIX_MGA=$_vidix_drv_mga
8640 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8641 VIDIX_NVIDIA=$_vidix_drv_nvidia
8642 VIDIX_PM2=$_vidix_drv_pm2
8643 VIDIX_PM3=$_vidix_drv_pm3
8644 VIDIX_RADEON=$_vidix_drv_radeon
8645 VIDIX_RAGE128=$_vidix_drv_rage128
8646 VIDIX_S3=$_vidix_drv_s3
8647 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8648 VIDIX_SIS=$_vidix_drv_sis
8649 VIDIX_UNICHROME=$_vidix_drv_unichrome
8650 VORBIS = $_vorbis
8651 VSTREAM = $_vstream
8652 WII = $_wii
8653 WIN32DLL = $_win32dll
8654 WIN32WAVEOUT = $_win32waveout
8655 WIN32_EMULATION = $_win32_emulation
8656 WINVIDIX = $winvidix
8657 X11 = $_x11
8658 X264 = $_x264
8659 XANIM_CODECS = $_xanim
8660 XMGA = $_xmga
8661 XMMS_PLUGINS = $_xmms
8662 XV = $_xv
8663 XVID4 = $_xvid
8664 XVIDIX = $xvidix
8665 XVMC = $_xvmc
8666 XVR100 = $_xvr100
8667 YUV4MPEG = $_yuv4mpeg
8668 ZR = $_zr
8670 # FFmpeg
8671 LIBAVUTIL = $_libavutil
8672 LIBAVUTIL_A = $_libavutil_a
8673 LIBAVUTIL_SO = $_libavutil_so
8674 LIBAVCODEC = $_libavcodec
8675 LIBAVCODEC_A = $_libavcodec_a
8676 LIBAVCODEC_SO = $_libavcodec_so
8677 LIBAVFORMAT = $_libavformat
8678 LIBAVFORMAT_A = $_libavformat_a
8679 LIBAVFORMAT_SO = $_libavformat_so
8680 LIBPOSTPROC = $_libpostproc
8681 LIBPOSTPROC_A = $_libpostproc_a
8682 LIBPOSTPROC_SO = $_libpostproc_so
8683 LIBSWSCALE = $_libswscale
8684 LIBSWSCALE_A = $_libswscale_a
8685 LIBSWSCALE_SO = $_libswscale_so
8687 HOSTCC=\$(HOST_CC)
8688 HOSTCFLAGS=-D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 -O3
8689 HOSTLIBS=-lm
8690 CC_O=-o \$@
8691 LD=gcc
8692 CONFIG_STATIC=yes
8693 SRC_PATH=..
8694 BUILD_ROOT=..
8695 LIBPREF=lib
8696 LIBSUF=.a
8697 LIBNAME=\$(LIBPREF)\$(NAME)\$(LIBSUF)
8698 FULLNAME=\$(NAME)\$(BUILDSUF)
8700 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8701 CONFIG_AANDCT=yes
8702 CONFIG_DCT=yes
8703 CONFIG_DWT=yes
8704 CONFIG_FFT=yes
8705 CONFIG_GOLOMB=yes
8706 CONFIG_H264DSP=yes
8707 CONFIG_LPC=yes
8708 CONFIG_LSP=yes
8709 CONFIG_MDCT=yes
8710 CONFIG_RDFT=yes
8712 CONFIG_BZLIB=$bzlib
8713 CONFIG_ENCODERS=yes
8714 CONFIG_GPL=yes
8715 CONFIG_LIBDIRAC_DECODER=$_libdirac_lavc
8716 CONFIG_LIBDIRAC_ENCODER=$_libdirac_lavc
8717 CONFIG_LIBFAAC_ENCODER=$_faac_lavc
8718 CONFIG_LIBMP3LAME_ENCODER=$_mp3lame_lavc
8719 CONFIG_LIBOPENCORE_AMRNB_DECODER=$_libopencore_amrnb
8720 CONFIG_LIBOPENCORE_AMRNB_ENCODER=$_libopencore_amrnb
8721 CONFIG_LIBOPENCORE_AMRWB_DECODER=$_libopencore_amrwb
8722 OCNFIG_LIBOPENJPEG_DECODER = $libopenjpeg
8723 OCNFIG_LIBOPENJPEG_ENCODER = $libopenjpeg
8724 CONFIG_LIBSCHROEDINGER_DECODER=$_libschroedinger_lavc
8725 CONFIG_LIBSCHROEDINGER_ENCODER=$_libschroedinger_lavc
8726 CONFIG_LIBVORBIS_ENCODER=$_libvorbis
8727 CONFIG_LIBX264_ENCODER=$_x264_lavc
8728 CONFIG_LIBXVID_ENCODER=$_xvid_lavc
8729 CONFIG_MLIB = $_mlib
8730 CONFIG_MUXERS=$_mencoder
8731 CONFIG_POSTPROC = yes
8732 # Prevent building libavcodec/imgresample.c with conflicting symbols
8733 CONFIG_SWSCALE=yes
8734 CONFIG_VDPAU=$_vdpau
8735 CONFIG_XVMC=$_xvmc
8736 CONFIG_ZLIB=$_zlib
8738 HAVE_PTHREADS = $_pthreads
8739 HAVE_SHM = $_shm
8740 HAVE_W32THREADS = $_w32threads
8741 HAVE_YASM = $have_yasm
8743 $(echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8744 $(echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8745 $(echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8746 $(echo $_libavdemuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8747 $(echo $_libavmuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8748 $(echo $_libavprotocols | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8749 $(echo $_libavbsfs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8750 $(echo $_libavhwaccels | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/')
8753 #############################################################################
8755 ff_config_enable () {
8756 _nprefix=$3;
8757 test -z "$_nprefix" && _nprefix='CONFIG'
8758 for part in $1; do
8759 if $(echo $2 | grep -q -E "(^| )$part($| )"); then
8760 echo "#define ${_nprefix}_$part 1"
8761 else
8762 echo "#define ${_nprefix}_$part 0"
8764 done
8767 echo "Creating config.h"
8768 cat > $TMPH << EOF
8769 /*----------------------------------------------------------------------------
8770 ** This file has been automatically generated by configure any changes in it
8771 ** will be lost when you run configure again.
8772 ** Instead of modifying definitions here, use the --enable/--disable options
8773 ** of the configure script! See ./configure --help for details.
8774 *---------------------------------------------------------------------------*/
8776 #ifndef MPLAYER_CONFIG_H
8777 #define MPLAYER_CONFIG_H
8779 /* Undefine this if you do not want to select mono audio (left or right)
8780 with a stereo MPEG layer 2/3 audio stream. The command line option
8781 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8782 right-only), with 0 being the default.
8784 #define CONFIG_FAKE_MONO 1
8786 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8787 #define MAX_OUTBURST 65536
8789 /* set up audio OUTBURST. Do not change this! */
8790 #define OUTBURST 512
8792 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8793 #undef FAST_OSD
8794 #undef FAST_OSD_TABLE
8796 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8797 #define MPEG12_POSTPROC 1
8798 #define ATTRIBUTE_ALIGNED_MAX 16
8802 #define CONFIGURATION "$_configuration"
8804 #define MPLAYER_DATADIR "$_datadir"
8805 #define MPLAYER_CONFDIR "$_confdir"
8806 #define MPLAYER_LIBDIR "$_libdir"
8808 /* definitions needed by included libraries */
8809 #define HAVE_INTTYPES_H 1
8810 /* libmpeg2 + FFmpeg */
8811 $def_fast_inttypes
8812 /* libdvdcss */
8813 #define HAVE_ERRNO_H 1
8814 /* libdvdcss + libdvdread */
8815 #define HAVE_LIMITS_H 1
8816 /* libdvdcss + libfaad2 */
8817 #define HAVE_UNISTD_H 1
8818 /* libfaad2 + libdvdread */
8819 #define STDC_HEADERS 1
8820 #define HAVE_MEMCPY 1
8821 /* libfaad2 */
8822 #define HAVE_STRING_H 1
8823 #define HAVE_STRINGS_H 1
8824 #define HAVE_SYS_STAT_H 1
8825 #define HAVE_SYS_TYPES_H 1
8826 /* libdvdnav */
8827 #define READ_CACHE_TRACE 0
8828 /* libdvdread */
8829 #define HAVE_DLFCN_H 1
8830 $def_dvdcss
8833 /* system headers */
8834 $def_alloca_h
8835 $def_alsa_asoundlib_h
8836 $def_altivec_h
8837 $def_malloc_h
8838 $def_mman_h
8839 $def_mman_has_map_failed
8840 $def_soundcard_h
8841 $def_sys_asoundlib_h
8842 $def_sys_soundcard_h
8843 $def_sys_sysinfo_h
8844 $def_termios_h
8845 $def_termios_sys_h
8846 $def_winsock2_h
8849 /* system functions */
8850 $def_gethostbyname2
8851 $def_gettimeofday
8852 $def_glob
8853 $def_langinfo
8854 $def_lrintf
8855 $def_map_memalign
8856 $def_memalign
8857 $def_nanosleep
8858 $def_posix_select
8859 $def_select
8860 $def_setenv
8861 $def_setmode
8862 $def_shm
8863 $def_strsep
8864 $def_swab
8865 $def_sysi86
8866 $def_sysi86_iv
8867 $def_termcap
8868 $def_termios
8869 $def_vsscanf
8872 /* system-specific features */
8873 $def_asmalign_pot
8874 $def_builtin_expect
8875 $def_dl
8876 $def_dos_paths
8877 $def_extern_asm
8878 $def_extern_prefix
8879 $def_iconv
8880 $def_kstat
8881 $def_macosx_bundle
8882 $def_macosx_finder
8883 $def_maemo
8884 $def_named_asm_args
8885 $def_priority
8886 $def_quicktime
8887 $def_restrict_keyword
8888 $def_rtc
8889 $def_unrar_exec
8892 /* configurable options */
8893 $def_charset
8894 $def_crash_debug
8895 $def_debug
8896 $def_dynamic_plugins
8897 $def_fastmemcpy
8898 $def_menu
8899 $def_runtime_cpudetection
8900 $def_sighandler
8901 $def_sortsub
8902 $def_stream_cache
8903 $def_pthread_cache
8906 /* CPU stuff */
8907 #define __CPU__ $iproc
8908 $def_words_endian
8909 $def_bigendian
8910 $(ff_config_enable "$_arch_all" "$_arch" "ARCH")
8911 $(ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE")
8914 /* DVD/VCD/CD */
8915 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8916 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8917 $def_bsdi_dvd
8918 $def_cddb
8919 $def_cdio
8920 $def_cdparanoia
8921 $def_cdrom
8922 $def_dvd
8923 $def_dvd_bsd
8924 $def_dvd_darwin
8925 $def_dvd_linux
8926 $def_dvd_openbsd
8927 $def_dvdio
8928 $def_dvdnav
8929 $def_dvdread
8930 $def_hpux_scsi_h
8931 $def_libcdio
8932 $def_sol_scsi_h
8933 $def_vcd
8936 /* codec libraries */
8937 $def_faac
8938 $def_faad
8939 $def_faad_internal
8940 $def_liba52
8941 $def_liba52_internal
8942 $def_libdca
8943 $def_libdv
8944 $def_liblzo
8945 $def_libmpeg2
8946 $def_mad
8947 $def_mp3lame
8948 $def_mp3lame_preset
8949 $def_mp3lame_preset_medium
8950 $def_mp3lib
8951 $def_musepack
8952 $def_speex
8953 $def_theora
8954 $def_toolame
8955 $def_tremor
8956 $def_twolame
8957 $def_vorbis
8958 $def_x264
8959 $def_xvid
8960 $def_zlib
8962 $def_libnut
8965 /* binary codecs */
8966 $def_qtx
8967 $def_qtx_win32
8968 $def_real
8969 $def_win32_loader
8970 $def_win32dll
8971 $def_xanim
8972 $def_xmms
8973 #define BINARY_CODECS_PATH "$_codecsdir"
8974 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8977 /* GUI */
8978 $def_gtk2
8979 $def_gui
8980 $def_xshape
8983 /* Audio output drivers */
8984 $def_alsa
8985 $def_alsa1x
8986 $def_alsa5
8987 $def_alsa9
8988 $def_arts
8989 $def_coreaudio
8990 $def_dart
8991 $def_esd
8992 $def_esd_latency
8993 $def_jack
8994 $def_kai
8995 $def_nas
8996 $def_openal
8997 $def_openal_h
8998 $def_ossaudio
8999 $def_ossaudio_devdsp
9000 $def_ossaudio_devmixer
9001 $def_pulse
9002 $def_sgiaudio
9003 $def_sunaudio
9004 $def_win32waveout
9006 $def_ladspa
9007 $def_libbs2b
9010 /* input */
9011 $def_apple_ir
9012 $def_apple_remote
9013 $def_ioctl_bt848_h_name
9014 $def_ioctl_meteor_h_name
9015 $def_joystick
9016 $def_lirc
9017 $def_lircc
9018 $def_pvr
9019 $def_radio
9020 $def_radio_bsdbt848
9021 $def_radio_capture
9022 $def_radio_v4l
9023 $def_radio_v4l2
9024 $def_tv
9025 $def_tv_bsdbt848
9026 $def_tv_dshow
9027 $def_tv_v4l
9028 $def_tv_v4l1
9029 $def_tv_v4l2
9032 /* font stuff */
9033 $def_ass
9034 $def_ass_internal
9035 $def_bitmap_font
9036 $def_enca
9037 $def_fontconfig
9038 $def_freetype
9039 $def_fribidi
9042 /* networking */
9043 $def_closesocket
9044 $def_ftp
9045 $def_inet6
9046 $def_inet_aton
9047 $def_inet_pton
9048 $def_live
9049 $def_nemesi
9050 $def_network
9051 $def_smb
9052 $def_socklen_t
9053 $def_struct_ipv6_mreq
9054 $def_struct_sockaddr_in6
9055 $def_struct_sockaddr_sa_len
9056 $def_vstream
9057 $def_addrinfo
9058 $def_getaddrinfo
9059 $def_sockaddr_storage
9062 /* libvo options */
9063 $def_3dfx
9064 $def_aa
9065 $def_bl
9066 $def_caca
9067 $def_corevideo
9068 $def_dfbmga
9069 $def_dga
9070 $def_dga1
9071 $def_dga2
9072 $def_direct3d
9073 $def_directfb
9074 $def_directfb_version
9075 $def_directx
9076 $def_dvb
9077 $def_dvbin
9078 $def_dxr2
9079 $def_dxr3
9080 $def_fbdev
9081 $def_ggi
9082 $def_ggiwmh
9083 $def_gif
9084 $def_gif_4
9085 $def_gif_tvt_hack
9086 $def_gl
9087 $def_gl_win32
9088 $def_gl_x11
9089 $def_matrixview
9090 $def_ivtv
9091 $def_jpeg
9092 $def_kva
9093 $def_md5sum
9094 $def_mga
9095 $def_mng
9096 $def_png
9097 $def_pnm
9098 $def_quartz
9099 $def_s3fb
9100 $def_sdl
9101 $def_sdl_sdl_h
9102 $def_sdlbuggy
9103 $def_svga
9104 $def_tdfxfb
9105 $def_tdfxvid
9106 $def_tga
9107 $def_v4l2
9108 $def_vdpau
9109 $def_vesa
9110 $def_vidix
9111 $def_vidix_drv_cyberblade
9112 $def_vidix_drv_ivtv
9113 $def_vidix_drv_mach64
9114 $def_vidix_drv_mga
9115 $def_vidix_drv_mga_crtc2
9116 $def_vidix_drv_nvidia
9117 $def_vidix_drv_pm3
9118 $def_vidix_drv_radeon
9119 $def_vidix_drv_rage128
9120 $def_vidix_drv_s3
9121 $def_vidix_drv_sh_veu
9122 $def_vidix_drv_sis
9123 $def_vidix_drv_unichrome
9124 $def_vidix_pfx
9125 $def_vm
9126 $def_wii
9127 $def_x11
9128 $def_xdpms
9129 $def_xf86keysym
9130 $def_xinerama
9131 $def_xmga
9132 $def_xss
9133 $def_xv
9134 $def_xvmc
9135 $def_xvr100
9136 $def_yuv4mpeg
9137 $def_zr
9140 /* FFmpeg */
9141 $def_libavcodec
9142 $def_libavcodec_a
9143 $def_libavcodec_so
9144 $def_libavformat
9145 $def_libavformat_a
9146 $def_libavformat_so
9147 $def_libavutil
9148 $def_libavutil_a
9149 $def_libavutil_so
9150 $def_libpostproc
9151 $def_libpostproc_a
9152 $def_libpostproc_so
9153 $def_libswscale
9154 $def_libswscale_a
9155 $def_libswscale_so
9157 #define CONFIG_DECODERS 1
9158 #define CONFIG_ENCODERS 1
9159 #define CONFIG_DEMUXERS 1
9160 $def_muxers
9162 $def_arpa_inet_h
9163 $def_bswap
9164 $def_bzlib
9165 $def_dcbzl
9166 $def_exp2
9167 $def_exp2f
9168 $def_fast_64bit
9169 $def_fast_unaligned
9170 $def_hardcoded_tables
9171 $def_libavcodec_mpegaudio_hp
9172 $def_llrint
9173 $def_local_aligned_8
9174 $def_local_aligned_16
9175 $def_log2
9176 $def_log2f
9177 $def_lrint
9178 $def_memalign_hack
9179 $def_mlib
9180 $def_mkstemp
9181 $def_posix_memalign
9182 $def_pthreads
9183 $def_round
9184 $def_roundf
9185 $def_ten_operands
9186 $def_threads
9187 $def_truncf
9188 $def_xform_asm
9189 $def_yasm
9191 #define CONFIG_FASTDIV 0
9192 #define CONFIG_FFSERVER 0
9193 #define CONFIG_GPL 1
9194 #define CONFIG_GRAY 0
9195 #define CONFIG_LIBVORBIS 0
9196 #define CONFIG_POWERPC_PERF 0
9197 #define CONFIG_SMALL 0
9198 #define CONFIG_SWSCALE 1
9199 #define CONFIG_SWSCALE_ALPHA 1
9201 #if defined(HAVE_AF_INET6) && (!defined(_WIN32) || defined(__CYGWIN__))
9202 #define CONFIG_IPV6 1
9203 #else
9204 #define CONFIG_IPV6 0
9205 #endif
9207 #define HAVE_ATTRIBUTE_MAY_ALIAS 1
9208 #define av_alias __attribute__((may_alias))
9209 #define HAVE_ATTRIBUTE_PACKED 1
9210 #define HAVE_GETHRTIME 0
9211 #define HAVE_INLINE_ASM 1
9212 #define HAVE_LDBRX 0
9213 #define HAVE_POLL_H 1
9214 #define HAVE_PPC4XX 0
9215 #define HAVE_SYS_SELECT_H 0
9216 #define HAVE_VFP_ARGS 1
9217 #define HAVE_VIRTUALALLOC 0
9219 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
9220 #define CONFIG_AANDCT 1
9221 #define CONFIG_DCT 1
9222 #define CONFIG_DWT 1
9223 #define CONFIG_FFT 1
9224 #define CONFIG_GOLOMB 1
9225 #define CONFIG_H264DSP 1
9226 #define CONFIG_LPC 1
9227 #define CONFIG_MDCT 1
9228 #define CONFIG_RDFT 1
9230 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
9231 $def_ebx_available
9232 #ifndef MP_DEBUG
9233 #define HAVE_EBP_AVAILABLE 1
9234 #else
9235 #define HAVE_EBP_AVAILABLE 0
9236 #endif
9238 #define FFMPEG_CONFIGURATION "--enable-gpl --enable-postproc"
9239 #define FFMPEG_LICENSE "GPL version 2 or later"
9241 /* External libraries used through libavcodec. */
9242 $def_faac_lavc
9243 $def_libdirac_lavc
9244 $def_libopencore_amrnb
9245 $def_libopencore_amrwb
9246 $def_libopenjpeg
9247 $def_libschroedinger_lavc
9248 $def_mp3lame_lavc
9249 $def_x264_lavc
9250 $def_xvid_lavc
9252 $(ff_config_enable "$_libavdecoders_all" "$_libavdecoders")
9253 $(ff_config_enable "$_libavencoders_all" "$_libavencoders")
9254 $(ff_config_enable "$_libavparsers_all" "$_libavparsers")
9255 $(ff_config_enable "$_libavdemuxers_all" "$_libavdemuxers")
9256 $(ff_config_enable "$_libavmuxers_all" "$_libavmuxers")
9257 $(ff_config_enable "$_libavprotocols_all" "$_libavprotocols")
9258 $(ff_config_enable "$_libavbsfs_all" "$_libavbsfs")
9259 $(ff_config_enable "$_libavhwaccels_all" "$_libavhwaccels")
9261 #endif /* MPLAYER_CONFIG_H */
9264 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
9265 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
9267 ############################################################################
9269 # Create avconfig.h for FFmpeg.
9270 cat > "$TMPH" << EOF
9271 /* Generated by mpconfigure */
9272 #ifndef AVUTIL_AVCONFIG_H
9273 #define AVUTIL_AVCONFIG_H
9274 $def_av_bigendian
9275 #endif /* AVUTIL_AVCONFIG_H */
9278 # Do not overwrite an unchanged avconfig.h to avoid superfluous rebuilds.
9279 cmp -s "$TMPH" libavutil/avconfig.h || mv -f "$TMPH" libavutil/avconfig.h
9281 #############################################################################
9283 cat << EOF
9285 Config files successfully generated by ./configure $_configuration !
9287 Install prefix: $_prefix
9288 Data directory: $_datadir
9289 Config direct.: $_confdir
9291 Byte order: $_byte_order
9292 Optimizing for: $_optimizing
9294 Languages:
9295 Messages/GUI: $language_msg
9296 Manual pages: $language_man
9297 Documentation: $language_doc
9299 Enabled optional drivers:
9300 Input: $_inputmodules
9301 Codecs: $_codecmodules
9302 Audio output: $_aomodules
9303 Video output: $_vomodules
9305 Disabled optional drivers:
9306 Input: $_noinputmodules
9307 Codecs: $_nocodecmodules
9308 Audio output: $_noaomodules
9309 Video output: $_novomodules
9311 'config.h' and 'config.mak' contain your configuration options.
9312 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
9313 compile *** DO NOT REPORT BUGS if you tweak these files ***
9315 'make' will now compile MPlayer and 'make install' will install it.
9316 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
9321 if test "$_mtrr" = yes ; then
9322 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
9323 echo
9326 if ! x86_32; then
9327 cat <<EOF
9328 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
9329 operating system ($system_name). You may encounter a few files that cannot
9330 be played due to missing open source video/audio codec support.
9336 cat <<EOF
9337 Check $TMPLOG if you wonder why an autodetection failed (make sure
9338 development headers/packages are installed).
9340 NOTE: The --enable-* parameters unconditionally force options on, completely
9341 skipping autodetection. This behavior is unlike what you may be used to from
9342 autoconf-based configure scripts that can decide to override you. This greater
9343 level of control comes at a price. You may have to provide the correct compiler
9344 and linker flags yourself.
9345 If you used one of these options (except --enable-menu and similar ones that
9346 turn on internal features) and experience a compilation or linking failure,
9347 make sure you have passed the necessary compiler/linker flags to configure.
9349 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
9353 if test "$_warn_CFLAGS" = yes; then
9354 cat <<EOF
9356 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
9357 but:
9359 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
9361 It is strongly recommended to let MPlayer choose the correct CFLAGS!
9362 To do so, execute 'CFLAGS= ./configure <options>'
9367 # Last move:
9368 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"